Before You Start
Check if the integration already exists by looking inpackages/integration-platform/src/manifests/.
Good integration candidates:
- Service has a public API
- Service provides compliance/security data
- Maps to existing compliance tasks
- Widely used in B2B/enterprise
- Service requires paid enterprise plan for API access
- No security/compliance data available via API
- Consumer-focused service with no business use case
Contribution Checklist
Your PR should include:1. Integration Manifest
Required:- Manifest file (
manifests/your-service/index.ts) - Valid integration ID (kebab-case, unique)
- Clear name and description
- Working logo URL
- Documentation URL
- Correct category
- Proper auth configuration
2. At Least One Check
Required:- Check file(s) in
checks/folder - Descriptive check IDs
- Clear error messages
- Proper error handling
- Task mapping (if applicable)
- Evidence includes useful data
3. Types
Required:- TypeScript types file (
types.ts) - Types for API responses
- Types for credentials
- No
anytypes
4. Testing
Required:- Tested with real credentials
- OAuth flow works (if OAuth)
- Checks run successfully
- Error cases handled gracefully
- Variables work (if using variables)
- Screenshot of successful connection
- Screenshot of check results
- Test account details (if applicable)
5. Documentation
Required:- Setup instructions in manifest (for OAuth)
- Clear credential field labels and help text
- Variable help text explains what they do
- Remediation steps are actionable
- MDX doc in
packages/docs/integrations/your-service.mdx - Examples in PR description
6. Code Quality
Required:- TypeScript with no errors
- ESLint passes
- Follows existing code patterns
- No hardcoded values
- Proper error handling
PR Template
Review Criteria
Reviewers will check for:Functionality
- Integration connects successfully
- Checks run and produce expected results
- OAuth flow works (if OAuth)
- Error states are handled
Code Quality
- TypeScript types are correct
- No
anytypes - Follows existing patterns
- Proper error handling
- Code is readable and maintainable
User Experience
- Clear, friendly error messages
- Helpful remediation steps
- Good variable labels and help text
- Reasonable defaults
Security
- Credentials handled securely
- API calls use HTTPS
- No secrets in code
- Proper scope requests (OAuth)
Common Review Feedback
”Add error handling for X”
Before:“Make error messages user-friendly”
Before:“Add task mapping”
Before:Getting Your PR Merged
- Create a draft PR early - Get feedback before spending too much time
- Test thoroughly - Include test results in PR
- Follow the template - Makes review faster
- Respond to feedback - Reviewers are trying to help
- Keep it focused - One integration per PR
After Your PR is Merged
For OAuth integrations:- Platform admins need to configure OAuth credentials
- Your integration will show “Coming Soon” until configured
- Update documentation with OAuth setup steps
- Integration appears in the integrations page
- Users can connect and start using it
- Checks run automatically or on-demand
Questions?
- Check existing integrations for patterns
- Ask in discussions/issues
- Tag maintainers for help

