Quick Start Guide
Get DevTeam.ai agents running in your repository in under 5 minutes.
Prerequisites
- A GitHub repository
- GitHub Actions enabled
- DevTeam.ai API key (sign up at devteam.ai)
Step 1: Add Your API Key to GitHub Secrets
Navigate to your repository settings and add your DevTeam.ai API key:
- Go to Settings → Secrets and variables → Actions
- Click New repository secret
- Name:
DEVTEAM_API_KEY - Value: Your API key from devteam.ai
Step 2: Add the Review Agent Workflow
Create .github/workflows/devteam-review.yml:
yaml
name: DevTeam Review Agent
on: pull_request: types: [opened, synchronize]
jobs: review: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4
- name: Run DevTeam Review Agent uses: devteam-ai/review-agent@v1 with: api-key: ${{ secrets.DEVTEAM_API_KEY }} github-token: ${{ secrets.GITHUB_TOKEN }}Step 3: Add the Implementation Agent Workflow
Create .github/workflows/devteam-implement.yml:
yaml
name: DevTeam Implementation Agent
on: issues: types: [labeled]
jobs: implement: if: contains(github.event.label.name, 'ready-to-implement') runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4
- name: Run DevTeam Implementation Agent uses: devteam-ai/implementation-agent@v1 with: api-key: ${{ secrets.DEVTEAM_API_KEY }} github-token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }}Step 4: Test It Out
You're all set! Here's how to test your setup:
Test the Review Agent
- Create a new branch
- Make some code changes
- Open a pull request
- The Review Agent will automatically comment with code review feedback
Test the Implementation Agent
- Create a new issue describing a feature or bug fix
- Add the label "ready-to-implement"
- The Implementation Agent will create a PR with the implementation
What's Next?
- Learn more about the Review Agent
- Explore Implementation Agent features
- Add the Planning Agent for sprint planning
- Configure API authentication
Troubleshooting
Agent didn't run
Check that:
- Your API key is correctly set in GitHub secrets
- GitHub Actions is enabled for your repository
- The workflow file is in
.github/workflows/
API rate limits
Free tier includes 5 tasks/month. Upgrade to Starter ($9/mo) for 25 tasks or Pro ($29/mo) for 100 tasks.
Need help?
- Check our troubleshooting guide
- Join our Discord community
- Email support@devteam.ai