cc-codeconductor 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/dist/core/verification/verification-runner.d.ts +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1413 -309
- package/dist/library.js +29 -1
- package/dist/validation/schemas.d.ts +97 -26
- package/package.json +1 -1
- package/presets/agy/AGENTS.md +10 -9
- package/presets/agy/hooks.json +2 -2
- package/presets/agy/scripts/invoke-hook.cjs +115 -0
- package/presets/agy/skills/backlog/SKILL.md +40 -70
- package/presets/agy/skills/cc-spec-mutation/SKILL.md +165 -0
- package/presets/agy/skills/cc-tdd-cycle/SKILL.md +3 -0
- package/presets/agy/skills/evaluation/SKILL.md +61 -2
- package/presets/agy/skills/openspec/SKILL.md +49 -19
- package/presets/agy/skills/testing-tdd/SKILL.md +53 -0
- package/presets/agy/skills/using-cc-skills/SKILL.md +48 -0
- package/presets/agy/workflows/cc-api-contract.md +14 -0
- package/presets/agy/workflows/cc-db-migration.md +14 -0
- package/presets/agy/workflows/cc-feature.md +18 -0
- package/presets/agy/workflows/cc-fix.md +14 -0
- package/presets/agy/workflows/cc-iterative.md +14 -0
- package/presets/agy/workflows/cc-openspec.md +14 -0
- package/presets/agy/workflows/cc-scorecard.md +2 -0
- package/presets/agy/workflows/cc-spec-mutation.md +191 -0
- package/presets/agy/workflows/cc-tdd-cycle.md +14 -0
- package/presets/claude/commands/cc/api-contract.md +14 -0
- package/presets/claude/commands/cc/db-migration.md +14 -0
- package/presets/claude/commands/cc/feature.md +18 -0
- package/presets/claude/commands/cc/fix.md +17 -0
- package/presets/claude/commands/cc/iterative.md +14 -0
- package/presets/claude/commands/cc/openspec.md +14 -0
- package/presets/claude/commands/cc/review.md +3 -0
- package/presets/claude/commands/cc/scorecard.md +2 -0
- package/presets/claude/commands/cc/spec-mutation.md +190 -0
- package/presets/claude/commands/cc/tdd-cycle.md +17 -0
- package/presets/claude/settings.json +13 -11
- package/presets/claude/skills/backlog/SKILL.md +40 -70
- package/presets/claude/skills/evaluation/SKILL.md +47 -24
- package/presets/claude/skills/openspec/SKILL.md +46 -38
- package/presets/claude/skills/testing-tdd/SKILL.md +53 -0
- package/presets/claude/skills/using-cc-skills/SKILL.md +48 -0
- package/presets/codex/AGENTS.md +16 -12
- package/presets/codex/skills/backlog/SKILL.md +61 -0
- package/presets/codex/skills/cc-api-contract/SKILL.md +87 -0
- package/presets/codex/skills/cc-backlog/SKILL.md +108 -0
- package/presets/codex/skills/cc-clarify/SKILL.md +36 -0
- package/presets/codex/skills/cc-council/SKILL.md +92 -0
- package/presets/codex/skills/cc-db-migration/SKILL.md +88 -0
- package/presets/codex/skills/cc-explore/SKILL.md +40 -0
- package/presets/codex/skills/cc-feature/SKILL.md +154 -0
- package/presets/codex/skills/cc-fix/SKILL.md +165 -0
- package/presets/codex/skills/cc-handoff/SKILL.md +45 -0
- package/presets/codex/skills/cc-iterative/SKILL.md +150 -0
- package/presets/codex/skills/cc-openspec/SKILL.md +191 -0
- package/presets/codex/skills/cc-pagespeed/SKILL.md +124 -0
- package/presets/codex/skills/cc-prototype/SKILL.md +42 -0
- package/presets/codex/skills/cc-refactor/SKILL.md +163 -0
- package/presets/codex/skills/cc-review/SKILL.md +152 -0
- package/presets/codex/skills/cc-scorecard/SKILL.md +82 -0
- package/presets/codex/skills/cc-security/SKILL.md +182 -0
- package/presets/codex/skills/cc-spec-mutation/SKILL.md +192 -0
- package/presets/codex/skills/cc-tdd-cycle/SKILL.md +266 -0
- package/presets/codex/skills/cc-test-plan/SKILL.md +153 -0
- package/presets/codex/skills/cc-triage/SKILL.md +38 -0
- package/presets/codex/skills/evaluation/SKILL.md +65 -0
- package/presets/codex/skills/openspec/SKILL.md +66 -0
- package/presets/codex/skills/testing-tdd/SKILL.md +53 -0
- package/presets/codex/skills/using-cc-skills/SKILL.md +48 -0
- package/presets/cursor/commands/cc/api-contract.md +14 -0
- package/presets/cursor/commands/cc/db-migration.md +14 -0
- package/presets/cursor/commands/cc/feature.md +18 -0
- package/presets/cursor/commands/cc/fix.md +17 -0
- package/presets/cursor/commands/cc/iterative.md +14 -0
- package/presets/cursor/commands/cc/openspec.md +14 -0
- package/presets/cursor/commands/cc/scorecard.md +2 -0
- package/presets/cursor/commands/cc/spec-mutation.md +190 -0
- package/presets/cursor/commands/cc/tdd-cycle.md +14 -0
- package/presets/cursor/skills/backlog/SKILL.md +40 -70
- package/presets/cursor/skills/evaluation/SKILL.md +61 -4
- package/presets/cursor/skills/openspec/SKILL.md +46 -36
- package/presets/cursor/skills/testing-tdd/SKILL.md +35 -574
- package/presets/cursor/skills/using-cc-skills/SKILL.md +48 -0
- package/presets/gemini/commands/cc/api-contract.toml +82 -0
- package/presets/gemini/commands/cc/ask.toml +54 -0
- package/presets/gemini/commands/cc/backlog.toml +103 -0
- package/presets/gemini/commands/cc/clarify.toml +31 -0
- package/presets/gemini/commands/cc/council.toml +87 -0
- package/presets/gemini/commands/cc/db-migration.toml +83 -0
- package/presets/gemini/commands/cc/explore.toml +35 -0
- package/presets/gemini/commands/cc/feature.toml +153 -0
- package/presets/gemini/commands/cc/fix.toml +163 -0
- package/presets/gemini/commands/cc/handoff.toml +40 -0
- package/presets/gemini/commands/cc/iterative.toml +145 -0
- package/presets/gemini/commands/cc/openspec.toml +186 -0
- package/presets/gemini/commands/cc/pagespeed.toml +119 -0
- package/presets/gemini/commands/cc/prototype.toml +37 -0
- package/presets/gemini/commands/cc/refactor.toml +158 -0
- package/presets/gemini/commands/cc/review.toml +150 -0
- package/presets/gemini/commands/cc/scorecard.toml +77 -0
- package/presets/gemini/commands/cc/security.toml +177 -0
- package/presets/gemini/commands/cc/spec-mutation.toml +187 -0
- package/presets/gemini/commands/cc/tdd-cycle.toml +264 -0
- package/presets/gemini/commands/cc/test-plan.toml +148 -0
- package/presets/gemini/commands/cc/triage.toml +33 -0
- package/presets/opencode/README.md +24 -21
- package/presets/opencode/agents/architect.md +6 -0
- package/presets/opencode/agents/implementer.md +7 -0
- package/presets/opencode/agents/reviewer.md +6 -0
- package/presets/opencode/agents/tester.md +6 -0
- package/presets/opencode/commands/cc-api-contract.md +14 -0
- package/presets/opencode/commands/cc-db-migration.md +14 -0
- package/presets/opencode/commands/cc-feature.md +18 -0
- package/presets/opencode/commands/cc-fix.md +17 -0
- package/presets/opencode/commands/cc-iterative.md +14 -0
- package/presets/opencode/commands/cc-openspec.md +14 -0
- package/presets/opencode/commands/cc-scorecard.md +2 -0
- package/presets/opencode/commands/cc-spec-mutation.md +190 -0
- package/presets/opencode/commands/cc-tdd-cycle.md +14 -0
- package/presets/opencode/opencode.jsonc +1 -1
- package/presets/opencode/prompts/v1.0.0/architect.md +6 -0
- package/presets/opencode/prompts/v1.0.0/implementer.md +7 -0
- package/presets/opencode/prompts/v1.0.0/reviewer.md +6 -0
- package/presets/opencode/prompts/v1.0.0/tester.md +6 -0
- package/presets/opencode/skills/backlog/SKILL.md +40 -70
- package/presets/opencode/skills/evaluation/SKILL.md +61 -2
- package/presets/opencode/skills/openspec/SKILL.md +46 -34
- package/presets/opencode/skills/testing-tdd/SKILL.md +35 -574
- package/presets/opencode/skills/using-cc-skills/SKILL.md +48 -0
- package/presets/shared/__pycache__/mutation_runner.cpython-314.pyc +0 -0
- package/presets/shared/invoke-hook.cjs +115 -0
- package/presets/shared/mutation_runner.py +273 -0
- package/src/presets/manifests/agy.yml +2 -0
- package/src/presets/manifests/claude.yml +3 -0
- package/src/presets/manifests/gemini.yml +15 -0
- package/src/presets/models/agy.yml +24 -24
- package/src/presets/models/claude.yml +10 -10
- package/src/presets/models/codex.yml +10 -10
- package/src/presets/models/cursor.yml +10 -10
- package/src/presets/models/gemini.yml +10 -10
- package/src/presets/models/opencode.yml +10 -10
- package/presets/agy/scripts/post-tool.sh +0 -25
- package/presets/agy/scripts/pre-tool.sh +0 -56
|
@@ -12,7 +12,7 @@ agents:
|
|
|
12
12
|
grok: cursor-grok-4.6-high-fast
|
|
13
13
|
implementer:
|
|
14
14
|
claude: claude-sonnet-5
|
|
15
|
-
opencode: opencode-go/mimo-v2.5
|
|
15
|
+
opencode: opencode-go/mimo-v2.5
|
|
16
16
|
codex: gpt-5.6-terra
|
|
17
17
|
gemini: gemini-3.7-flash
|
|
18
18
|
cursor: composer-2.5-fast
|
|
@@ -33,28 +33,28 @@ agents:
|
|
|
33
33
|
grok: cursor-grok-4.6-high-fast
|
|
34
34
|
reviewer:
|
|
35
35
|
claude: claude-opus-5
|
|
36
|
-
opencode: opencode-go/qwen3.
|
|
36
|
+
opencode: opencode-go/qwen3.8-max
|
|
37
37
|
codex: gpt-5.6-sol
|
|
38
38
|
gemini: gemini-3.1-pro-preview
|
|
39
39
|
cursor: claude-sonnet-5-thinking-high
|
|
40
40
|
grok: cursor-grok-4.6-high-fast
|
|
41
41
|
docs:
|
|
42
42
|
claude: claude-haiku-4-5-20251001
|
|
43
|
-
opencode: opencode-go/
|
|
43
|
+
opencode: opencode-go/hy3
|
|
44
44
|
codex: gpt-5.6-luna
|
|
45
45
|
gemini: gemini-3.7-flash
|
|
46
46
|
cursor: claude-4.5-haiku-thinking
|
|
47
47
|
grok: cursor-grok-4.6-high-fast
|
|
48
48
|
task-coach:
|
|
49
49
|
claude: claude-haiku-4-5-20251001
|
|
50
|
-
opencode: opencode-go/
|
|
50
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
51
51
|
codex: gpt-5.6-luna
|
|
52
52
|
gemini: gemini-3.7-flash
|
|
53
53
|
cursor: claude-4.5-haiku-thinking
|
|
54
54
|
grok: cursor-grok-4.6-high-fast
|
|
55
55
|
repo-explorer:
|
|
56
56
|
claude: claude-haiku-4-5-20251001
|
|
57
|
-
opencode: opencode-go/
|
|
57
|
+
opencode: opencode-go/longcat-2.0
|
|
58
58
|
codex: gpt-5.6-luna
|
|
59
59
|
gemini: gemini-3.7-flash
|
|
60
60
|
cursor: composer-2.5-fast
|
|
@@ -68,35 +68,35 @@ agents:
|
|
|
68
68
|
grok: cursor-grok-4.6-high-fast
|
|
69
69
|
complexity-auditor:
|
|
70
70
|
claude: claude-sonnet-5
|
|
71
|
-
opencode: opencode-go/
|
|
71
|
+
opencode: opencode-go/glm-5.3
|
|
72
72
|
codex: gpt-5.6-terra
|
|
73
73
|
gemini: gemini-3.7-flash
|
|
74
74
|
cursor: claude-sonnet-5-thinking-high
|
|
75
75
|
grok: cursor-grok-4.6-high-fast
|
|
76
76
|
security-reviewer:
|
|
77
77
|
claude: claude-opus-5
|
|
78
|
-
opencode: opencode-go/
|
|
78
|
+
opencode: opencode-go/kimi-k3
|
|
79
79
|
codex: gpt-5.6-sol
|
|
80
80
|
gemini: gemini-3.1-pro-preview
|
|
81
81
|
cursor: claude-opus-5-thinking-high
|
|
82
82
|
grok: cursor-grok-4.6-high-fast
|
|
83
83
|
contract-builder:
|
|
84
84
|
claude: claude-opus-5
|
|
85
|
-
opencode: opencode-go/qwen3.
|
|
85
|
+
opencode: opencode-go/qwen3.8-max
|
|
86
86
|
codex: gpt-5.6-sol
|
|
87
87
|
gemini: gemini-3.1-pro-preview
|
|
88
88
|
cursor: claude-sonnet-5-thinking-high
|
|
89
89
|
grok: cursor-grok-4.6-high-fast
|
|
90
90
|
planner:
|
|
91
91
|
claude: claude-haiku-4-5-20251001
|
|
92
|
-
opencode: opencode-go/
|
|
92
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
93
93
|
codex: gpt-5.6-luna
|
|
94
94
|
gemini: gemini-3.7-flash
|
|
95
95
|
cursor: claude-4.5-haiku-thinking
|
|
96
96
|
grok: cursor-grok-4.6-high-fast
|
|
97
97
|
devil:
|
|
98
98
|
claude: claude-opus-5
|
|
99
|
-
opencode: opencode-go/
|
|
99
|
+
opencode: opencode-go/glm-5.3
|
|
100
100
|
codex: gpt-5.6-sol
|
|
101
101
|
gemini: gemini-3.1-pro-preview
|
|
102
102
|
cursor: claude-opus-5-thinking-high
|
|
@@ -12,7 +12,7 @@ agents:
|
|
|
12
12
|
grok: cursor-grok-4.6-high-fast
|
|
13
13
|
implementer:
|
|
14
14
|
claude: claude-sonnet-5
|
|
15
|
-
opencode: opencode-go/mimo-v2.5
|
|
15
|
+
opencode: opencode-go/mimo-v2.5
|
|
16
16
|
codex: gpt-5.6-terra
|
|
17
17
|
gemini: gemini-3.7-flash
|
|
18
18
|
cursor: composer-2.5-fast
|
|
@@ -33,28 +33,28 @@ agents:
|
|
|
33
33
|
grok: cursor-grok-4.6-high-fast
|
|
34
34
|
reviewer:
|
|
35
35
|
claude: claude-opus-5
|
|
36
|
-
opencode: opencode-go/qwen3.
|
|
36
|
+
opencode: opencode-go/qwen3.8-max
|
|
37
37
|
codex: gpt-5.6-sol
|
|
38
38
|
gemini: gemini-3.1-pro-preview
|
|
39
39
|
cursor: claude-sonnet-5-thinking-high
|
|
40
40
|
grok: cursor-grok-4.6-high-fast
|
|
41
41
|
docs:
|
|
42
42
|
claude: claude-haiku-4-5-20251001
|
|
43
|
-
opencode: opencode-go/
|
|
43
|
+
opencode: opencode-go/hy3
|
|
44
44
|
codex: gpt-5.6-luna
|
|
45
45
|
gemini: gemini-3.7-flash
|
|
46
46
|
cursor: claude-4.5-haiku-thinking
|
|
47
47
|
grok: cursor-grok-4.6-high-fast
|
|
48
48
|
task-coach:
|
|
49
49
|
claude: claude-haiku-4-5-20251001
|
|
50
|
-
opencode: opencode-go/
|
|
50
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
51
51
|
codex: gpt-5.6-luna
|
|
52
52
|
gemini: gemini-3.7-flash
|
|
53
53
|
cursor: claude-4.5-haiku-thinking
|
|
54
54
|
grok: cursor-grok-4.6-high-fast
|
|
55
55
|
repo-explorer:
|
|
56
56
|
claude: claude-haiku-4-5-20251001
|
|
57
|
-
opencode: opencode-go/
|
|
57
|
+
opencode: opencode-go/longcat-2.0
|
|
58
58
|
codex: gpt-5.6-luna
|
|
59
59
|
gemini: gemini-3.7-flash
|
|
60
60
|
cursor: composer-2.5-fast
|
|
@@ -68,35 +68,35 @@ agents:
|
|
|
68
68
|
grok: cursor-grok-4.6-high-fast
|
|
69
69
|
complexity-auditor:
|
|
70
70
|
claude: claude-sonnet-5
|
|
71
|
-
opencode: opencode-go/
|
|
71
|
+
opencode: opencode-go/glm-5.3
|
|
72
72
|
codex: gpt-5.6-terra
|
|
73
73
|
gemini: gemini-3.7-flash
|
|
74
74
|
cursor: claude-sonnet-5-thinking-high
|
|
75
75
|
grok: cursor-grok-4.6-high-fast
|
|
76
76
|
security-reviewer:
|
|
77
77
|
claude: claude-opus-5
|
|
78
|
-
opencode: opencode-go/
|
|
78
|
+
opencode: opencode-go/kimi-k3
|
|
79
79
|
codex: gpt-5.6-sol
|
|
80
80
|
gemini: gemini-3.1-pro-preview
|
|
81
81
|
cursor: claude-opus-5-thinking-high
|
|
82
82
|
grok: cursor-grok-4.6-high-fast
|
|
83
83
|
contract-builder:
|
|
84
84
|
claude: claude-opus-5
|
|
85
|
-
opencode: opencode-go/qwen3.
|
|
85
|
+
opencode: opencode-go/qwen3.8-max
|
|
86
86
|
codex: gpt-5.6-sol
|
|
87
87
|
gemini: gemini-3.1-pro-preview
|
|
88
88
|
cursor: claude-sonnet-5-thinking-high
|
|
89
89
|
grok: cursor-grok-4.6-high-fast
|
|
90
90
|
planner:
|
|
91
91
|
claude: claude-haiku-4-5-20251001
|
|
92
|
-
opencode: opencode-go/
|
|
92
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
93
93
|
codex: gpt-5.6-luna
|
|
94
94
|
gemini: gemini-3.7-flash
|
|
95
95
|
cursor: claude-4.5-haiku-thinking
|
|
96
96
|
grok: cursor-grok-4.6-high-fast
|
|
97
97
|
devil:
|
|
98
98
|
claude: claude-opus-5
|
|
99
|
-
opencode: opencode-go/
|
|
99
|
+
opencode: opencode-go/glm-5.3
|
|
100
100
|
codex: gpt-5.6-sol
|
|
101
101
|
gemini: gemini-3.1-pro-preview
|
|
102
102
|
cursor: claude-opus-5-thinking-high
|
|
@@ -12,7 +12,7 @@ agents:
|
|
|
12
12
|
grok: cursor-grok-4.6-high-fast
|
|
13
13
|
implementer:
|
|
14
14
|
claude: claude-sonnet-5
|
|
15
|
-
opencode: opencode-go/mimo-v2.5
|
|
15
|
+
opencode: opencode-go/mimo-v2.5
|
|
16
16
|
codex: gpt-5.6-terra
|
|
17
17
|
gemini: gemini-3.7-flash
|
|
18
18
|
cursor: composer-2.5-fast
|
|
@@ -33,28 +33,28 @@ agents:
|
|
|
33
33
|
grok: cursor-grok-4.6-high-fast
|
|
34
34
|
reviewer:
|
|
35
35
|
claude: claude-opus-5
|
|
36
|
-
opencode: opencode-go/qwen3.
|
|
36
|
+
opencode: opencode-go/qwen3.8-max
|
|
37
37
|
codex: gpt-5.6-sol
|
|
38
38
|
gemini: gemini-3.1-pro-preview
|
|
39
39
|
cursor: claude-sonnet-5-thinking-high
|
|
40
40
|
grok: cursor-grok-4.6-high-fast
|
|
41
41
|
docs:
|
|
42
42
|
claude: claude-haiku-4-5-20251001
|
|
43
|
-
opencode: opencode-go/
|
|
43
|
+
opencode: opencode-go/hy3
|
|
44
44
|
codex: gpt-5.6-luna
|
|
45
45
|
gemini: gemini-3.7-flash
|
|
46
46
|
cursor: claude-4.5-haiku-thinking
|
|
47
47
|
grok: cursor-grok-4.6-high-fast
|
|
48
48
|
task-coach:
|
|
49
49
|
claude: claude-haiku-4-5-20251001
|
|
50
|
-
opencode: opencode-go/
|
|
50
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
51
51
|
codex: gpt-5.6-luna
|
|
52
52
|
gemini: gemini-3.7-flash
|
|
53
53
|
cursor: claude-4.5-haiku-thinking
|
|
54
54
|
grok: cursor-grok-4.6-high-fast
|
|
55
55
|
repo-explorer:
|
|
56
56
|
claude: claude-haiku-4-5-20251001
|
|
57
|
-
opencode: opencode-go/
|
|
57
|
+
opencode: opencode-go/longcat-2.0
|
|
58
58
|
codex: gpt-5.6-luna
|
|
59
59
|
gemini: gemini-3.7-flash
|
|
60
60
|
cursor: composer-2.5-fast
|
|
@@ -68,35 +68,35 @@ agents:
|
|
|
68
68
|
grok: cursor-grok-4.6-high-fast
|
|
69
69
|
complexity-auditor:
|
|
70
70
|
claude: claude-sonnet-5
|
|
71
|
-
opencode: opencode-go/
|
|
71
|
+
opencode: opencode-go/glm-5.3
|
|
72
72
|
codex: gpt-5.6-terra
|
|
73
73
|
gemini: gemini-3.7-flash
|
|
74
74
|
cursor: claude-sonnet-5-thinking-high
|
|
75
75
|
grok: cursor-grok-4.6-high-fast
|
|
76
76
|
security-reviewer:
|
|
77
77
|
claude: claude-opus-5
|
|
78
|
-
opencode: opencode-go/
|
|
78
|
+
opencode: opencode-go/kimi-k3
|
|
79
79
|
codex: gpt-5.6-sol
|
|
80
80
|
gemini: gemini-3.1-pro-preview
|
|
81
81
|
cursor: claude-opus-5-thinking-high
|
|
82
82
|
grok: cursor-grok-4.6-high-fast
|
|
83
83
|
contract-builder:
|
|
84
84
|
claude: claude-opus-5
|
|
85
|
-
opencode: opencode-go/qwen3.
|
|
85
|
+
opencode: opencode-go/qwen3.8-max
|
|
86
86
|
codex: gpt-5.6-sol
|
|
87
87
|
gemini: gemini-3.1-pro-preview
|
|
88
88
|
cursor: claude-sonnet-5-thinking-high
|
|
89
89
|
grok: cursor-grok-4.6-high-fast
|
|
90
90
|
planner:
|
|
91
91
|
claude: claude-haiku-4-5-20251001
|
|
92
|
-
opencode: opencode-go/
|
|
92
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
93
93
|
codex: gpt-5.6-luna
|
|
94
94
|
gemini: gemini-3.7-flash
|
|
95
95
|
cursor: claude-4.5-haiku-thinking
|
|
96
96
|
grok: cursor-grok-4.6-high-fast
|
|
97
97
|
devil:
|
|
98
98
|
claude: claude-opus-5
|
|
99
|
-
opencode: opencode-go/
|
|
99
|
+
opencode: opencode-go/glm-5.3
|
|
100
100
|
codex: gpt-5.6-sol
|
|
101
101
|
gemini: gemini-3.1-pro-preview
|
|
102
102
|
cursor: claude-opus-5-thinking-high
|
|
@@ -12,7 +12,7 @@ agents:
|
|
|
12
12
|
grok: cursor-grok-4.6-high-fast
|
|
13
13
|
implementer:
|
|
14
14
|
claude: claude-sonnet-5
|
|
15
|
-
opencode: opencode-go/mimo-v2.5
|
|
15
|
+
opencode: opencode-go/mimo-v2.5
|
|
16
16
|
codex: gpt-5.6-terra
|
|
17
17
|
gemini: gemini-3.7-flash
|
|
18
18
|
cursor: composer-2.5-fast
|
|
@@ -33,28 +33,28 @@ agents:
|
|
|
33
33
|
grok: cursor-grok-4.6-high-fast
|
|
34
34
|
reviewer:
|
|
35
35
|
claude: claude-opus-5
|
|
36
|
-
opencode: opencode-go/qwen3.
|
|
36
|
+
opencode: opencode-go/qwen3.8-max
|
|
37
37
|
codex: gpt-5.6-sol
|
|
38
38
|
gemini: gemini-3.1-pro-preview
|
|
39
39
|
cursor: claude-sonnet-5-thinking-high
|
|
40
40
|
grok: cursor-grok-4.6-high-fast
|
|
41
41
|
docs:
|
|
42
42
|
claude: claude-haiku-4-5-20251001
|
|
43
|
-
opencode: opencode-go/
|
|
43
|
+
opencode: opencode-go/hy3
|
|
44
44
|
codex: gpt-5.6-luna
|
|
45
45
|
gemini: gemini-3.7-flash
|
|
46
46
|
cursor: claude-4.5-haiku-thinking
|
|
47
47
|
grok: cursor-grok-4.6-high-fast
|
|
48
48
|
task-coach:
|
|
49
49
|
claude: claude-haiku-4-5-20251001
|
|
50
|
-
opencode: opencode-go/
|
|
50
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
51
51
|
codex: gpt-5.6-luna
|
|
52
52
|
gemini: gemini-3.7-flash
|
|
53
53
|
cursor: claude-4.5-haiku-thinking
|
|
54
54
|
grok: cursor-grok-4.6-high-fast
|
|
55
55
|
repo-explorer:
|
|
56
56
|
claude: claude-haiku-4-5-20251001
|
|
57
|
-
opencode: opencode-go/
|
|
57
|
+
opencode: opencode-go/longcat-2.0
|
|
58
58
|
codex: gpt-5.6-luna
|
|
59
59
|
gemini: gemini-3.7-flash
|
|
60
60
|
cursor: composer-2.5-fast
|
|
@@ -68,35 +68,35 @@ agents:
|
|
|
68
68
|
grok: cursor-grok-4.6-high-fast
|
|
69
69
|
complexity-auditor:
|
|
70
70
|
claude: claude-sonnet-5
|
|
71
|
-
opencode: opencode-go/
|
|
71
|
+
opencode: opencode-go/glm-5.3
|
|
72
72
|
codex: gpt-5.6-terra
|
|
73
73
|
gemini: gemini-3.7-flash
|
|
74
74
|
cursor: claude-sonnet-5-thinking-high
|
|
75
75
|
grok: cursor-grok-4.6-high-fast
|
|
76
76
|
security-reviewer:
|
|
77
77
|
claude: claude-opus-5
|
|
78
|
-
opencode: opencode-go/
|
|
78
|
+
opencode: opencode-go/kimi-k3
|
|
79
79
|
codex: gpt-5.6-sol
|
|
80
80
|
gemini: gemini-3.1-pro-preview
|
|
81
81
|
cursor: claude-opus-5-thinking-high
|
|
82
82
|
grok: cursor-grok-4.6-high-fast
|
|
83
83
|
contract-builder:
|
|
84
84
|
claude: claude-opus-5
|
|
85
|
-
opencode: opencode-go/qwen3.
|
|
85
|
+
opencode: opencode-go/qwen3.8-max
|
|
86
86
|
codex: gpt-5.6-sol
|
|
87
87
|
gemini: gemini-3.1-pro-preview
|
|
88
88
|
cursor: claude-sonnet-5-thinking-high
|
|
89
89
|
grok: cursor-grok-4.6-high-fast
|
|
90
90
|
planner:
|
|
91
91
|
claude: claude-haiku-4-5-20251001
|
|
92
|
-
opencode: opencode-go/
|
|
92
|
+
opencode: opencode-go/gpt-5.6-luna
|
|
93
93
|
codex: gpt-5.6-luna
|
|
94
94
|
gemini: gemini-3.7-flash
|
|
95
95
|
cursor: claude-4.5-haiku-thinking
|
|
96
96
|
grok: cursor-grok-4.6-high-fast
|
|
97
97
|
devil:
|
|
98
98
|
claude: claude-opus-5
|
|
99
|
-
opencode: opencode-go/
|
|
99
|
+
opencode: opencode-go/glm-5.3
|
|
100
100
|
codex: gpt-5.6-sol
|
|
101
101
|
gemini: gemini-3.1-pro-preview
|
|
102
102
|
cursor: claude-opus-5-thinking-high
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# Read stdin JSON payload
|
|
3
|
-
JSON_INPUT=$(cat)
|
|
4
|
-
TOOL_NAME=$(echo "$JSON_INPUT" | jq -r '.toolName')
|
|
5
|
-
|
|
6
|
-
if [[ "$TOOL_NAME" == "write_to_file" || "$TOOL_NAME" == "replace_file_content" || "$TOOL_NAME" == "multi_replace_file_content" ]]; then
|
|
7
|
-
FILE_PATH=$(echo "$JSON_INPUT" | jq -r '.arguments.TargetFile')
|
|
8
|
-
if [ -f "$FILE_PATH" ]; then
|
|
9
|
-
# Run Prettier
|
|
10
|
-
if echo "$FILE_PATH" | grep -qE '\.(ts|tsx|js|jsx|mjs|cjs|json|jsonc|md|mdx|css|scss|html|astro|yaml|yml)$'; then
|
|
11
|
-
npx --no-install prettier --write "$FILE_PATH" 2>/dev/null || true
|
|
12
|
-
fi
|
|
13
|
-
# Run ESLint
|
|
14
|
-
if echo "$FILE_PATH" | grep -qE '\.(ts|tsx|js|jsx|mjs|cjs)$'; then
|
|
15
|
-
npx --no-install eslint --fix "$FILE_PATH" 2>/dev/null || true
|
|
16
|
-
fi
|
|
17
|
-
# Run Ruff (Python)
|
|
18
|
-
if echo "$FILE_PATH" | grep -qE '\.py$'; then
|
|
19
|
-
ruff format "$FILE_PATH" 2>/dev/null && ruff check --fix "$FILE_PATH" 2>/dev/null || true
|
|
20
|
-
fi
|
|
21
|
-
fi
|
|
22
|
-
fi
|
|
23
|
-
|
|
24
|
-
# Return an empty JSON object to stdout
|
|
25
|
-
echo "{}"
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# Read stdin JSON payload
|
|
3
|
-
JSON_INPUT=$(cat)
|
|
4
|
-
TOOL_NAME=$(echo "$JSON_INPUT" | jq -r '.toolName')
|
|
5
|
-
|
|
6
|
-
# Check paths for write/edit/read operations
|
|
7
|
-
TARGET_PATH=""
|
|
8
|
-
if [[ "$TOOL_NAME" == "write_to_file" || "$TOOL_NAME" == "replace_file_content" || "$TOOL_NAME" == "multi_replace_file_content" ]]; then
|
|
9
|
-
TARGET_PATH=$(echo "$JSON_INPUT" | jq -r '.arguments.TargetFile')
|
|
10
|
-
elif [[ "$TOOL_NAME" == "view_file" ]]; then
|
|
11
|
-
TARGET_PATH=$(echo "$JSON_INPUT" | jq -r '.arguments.AbsolutePath')
|
|
12
|
-
fi
|
|
13
|
-
|
|
14
|
-
if [[ ! -z "$TARGET_PATH" ]]; then
|
|
15
|
-
if echo "$TARGET_PATH" | grep -qE '(\.env|secrets/|/\.ssh/|/\.aws/|/\.kube/)'; then
|
|
16
|
-
echo '{"action": "deny", "error": "Blocked: Attempt to access sensitive path"}'
|
|
17
|
-
exit 0
|
|
18
|
-
fi
|
|
19
|
-
fi
|
|
20
|
-
|
|
21
|
-
if [[ "$TOOL_NAME" == "run_command" ]]; then
|
|
22
|
-
COMMAND_LINE=$(echo "$JSON_INPUT" | jq -r '.arguments.CommandLine')
|
|
23
|
-
|
|
24
|
-
# 1. Deny patterns
|
|
25
|
-
if echo "$COMMAND_LINE" | grep -qE '(\.env|secrets/|id_rsa|\\.pem|\\.key)\\b' && echo "$COMMAND_LINE" | grep -qE '(cat|less|more|head|tail|cp |mv |scp )'; then
|
|
26
|
-
echo '{"action": "deny", "error": "Blocked: Attempt to read sensitive files"}'
|
|
27
|
-
exit 0
|
|
28
|
-
fi
|
|
29
|
-
|
|
30
|
-
if echo "$COMMAND_LINE" | grep -qE '^rm\s+-rf\s+\*' || \
|
|
31
|
-
echo "$COMMAND_LINE" | grep -qE '^sudo\s+' || \
|
|
32
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+push\s+.*--force' || \
|
|
33
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+push\s+.*-f' || \
|
|
34
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+rebase\s+' || \
|
|
35
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+reset\s+--hard\s+' || \
|
|
36
|
-
echo "$COMMAND_LINE" | grep -qE 'curl\s+.*\s*\|\s*(sh|bash)' || \
|
|
37
|
-
echo "$COMMAND_LINE" | grep -qE 'wget\s+.*\s*\|\s*(sh|bash)' || \
|
|
38
|
-
echo "$COMMAND_LINE" | grep -qE '^chmod\s+777\s+' || \
|
|
39
|
-
echo "$COMMAND_LINE" | grep -qE '^dd\s+' || \
|
|
40
|
-
echo "$COMMAND_LINE" | grep -qE '^mkfs\s+'; then
|
|
41
|
-
echo '{"action": "deny", "error": "Blocked: Command violated security policy"}'
|
|
42
|
-
exit 0
|
|
43
|
-
fi
|
|
44
|
-
|
|
45
|
-
# 2. Ask patterns
|
|
46
|
-
if echo "$COMMAND_LINE" | grep -qE '^git\s+commit\s*' || \
|
|
47
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+checkout\s*' || \
|
|
48
|
-
echo "$COMMAND_LINE" | grep -qE '^git\s+switch\s*' || \
|
|
49
|
-
echo "$COMMAND_LINE" | grep -qE '^docker\s+compose\s*'; then
|
|
50
|
-
echo '{"action": "ask"}'
|
|
51
|
-
exit 0
|
|
52
|
-
fi
|
|
53
|
-
fi
|
|
54
|
-
|
|
55
|
-
# Default: allow
|
|
56
|
-
echo '{"action": "allow"}'
|