-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.ai-agent.example.json
More file actions
45 lines (44 loc) · 1.53 KB
/
Copy path.ai-agent.example.json
File metadata and controls
45 lines (44 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"repos": [
{
"name": "console",
"repoPath": "../my-console",
"githubRepo": "your-org/my-console",
"skillPath": ".claude/skills/implement-approved-issues/SKILL.md",
"revisionSkillPath": ".claude/skills/revise-pr-feedback/SKILL.md"
},
{
"name": "api",
"repoPath": "../my-api",
"githubRepo": "your-org/my-api",
"skillPath": ".claude/skills/implement-approved-issues/SKILL.md",
"revisionSkillPath": ".claude/skills/revise-pr-feedback/SKILL.md",
"model": "claude-sonnet-4-6"
},
{
"name": "big-feature-repo",
"repoPath": "../my-monolith",
"githubRepo": "your-org/my-monolith",
"skillPath": ".claude/skills/implement-approved-issues/SKILL.md",
"revisionSkillPath": ".claude/skills/revise-pr-feedback/SKILL.md",
"maxTurns": 60,
"maxDurationMs": 3000000
}
],
"triggerLabel": "approved",
"baseBranch": "develop",
"featureBranch": "features",
"pollIntervalMs": 300000,
"maxTurns": 30,
"maxDurationMs": 1800000,
"logFormat": "text",
"logLevel": "info",
"_review_phase": "Optional. Enable the Review phase to auto-review feature PRs. Disabled by default. Requires EM_GITHUB_TOKEN in the environment. Per-repo override: add reviewEnabled to a repos[] entry.",
"reviewEnabled": false,
"emRepoPath": "../my-review-repo",
"reviewSkillPath": ".claude/skills/review-all-prs/SKILL.md",
"reviewModel": "claude-opus-4-8",
"reviewMaxTurns": 200,
"reviewMaxDurationMs": 3600000,
"reviewerLogin": "your-reviewer-bot-login"
}