-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-workflow.config.json
More file actions
106 lines (106 loc) · 2.17 KB
/
Copy pathagent-workflow.config.json
File metadata and controls
106 lines (106 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"ciCommands": [
"python scripts/cli.py audit",
"git status --short"
],
"routing": {
"defaultMode": "single-agent",
"agents": {
"claude": {
"availabilityCommand": "claude --version",
"defaultExecutionTarget": "claude-cli"
},
"codex": {
"availabilityCommand": "codex --version",
"defaultExecutionTarget": "codex-cli"
},
"pi": {
"availabilityCommand": "pi --version",
"defaultExecutionTarget": "pi-parent"
}
}
},
"branching": {
"trunk": "main",
"releaseCandidate": "staging",
"integration": "os",
"directEditDeniedBranches": [
"main",
"staging",
"os"
],
"defaultPrTarget": "os",
"promotionOrder": [
"os",
"staging",
"main"
],
"workBranchPrefixes": [
"setup/",
"feature/",
"fix/",
"hotfix/",
"spike/",
"work/"
],
"compatibilityBranchPrefixes": [
"issue/",
"wt/",
"claude/"
],
"requireBoundedWorkBranch": true
},
"integrationLifecycle": {
"integrationBranch": "os",
"trunkBranch": "main",
"referenceKeywords": [
"Implements",
"Closes"
],
"addLabels": [
"integrated:os",
"awaiting-release"
],
"closeIntegratedIssues": true
},
"releaseVersioning": {
"strategy": "main.minor.fix",
"segments": [
"main",
"minor",
"fix"
],
"tagFormat": "v${version}",
"packageVersionSource": "none",
"requireExplicitApproval": true,
"allowPrerelease": true
},
"capabilities": {
"plan-before-edit": {
"requiredFor": [
"architect",
"developer-planning",
"developer"
],
"fallback": "framework-emulated"
},
"workflow-orchestration": {
"preferred": "framework",
"allowNative": true
},
"bounded-loop": {
"allowedLoops": [
"review-loop",
"test-fix-loop"
],
"maxIterationsDefault": 3,
"requiresStopCondition": true
},
"delegated-subagents": {
"default": "optional",
"maxParallel": 3,
"readOnlyByDefault": true,
"singleWriterRule": true
}
}
}