cc-dev-template 0.1.26 → 0.1.27
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: decomposition-agent
|
|
3
|
-
description: Breaks approved plans into executable tasks with dependencies, or reviews a decomposition for quality and completeness.
|
|
3
|
+
description: Breaks approved plans into executable tasks with dependencies, or reviews a decomposition for quality and completeness. ORCHESTRATION ONLY - spawned by orchestrator during decomposition workflow. Requires plan context; do not use for general coding.
|
|
4
4
|
tools: Read, Glob, Grep, Write, Edit
|
|
5
5
|
model: opus
|
|
6
6
|
color: cyan
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: execution-agent
|
|
3
|
-
description: Implements a single task from a plan, or reviews an implementation for correctness and ADR compliance.
|
|
3
|
+
description: Implements a single task from a plan, or reviews an implementation for correctness and ADR compliance. ORCHESTRATION ONLY - spawned by orchestrator during execution workflow. Requires plan/task context; do not use for general coding.
|
|
4
4
|
tools: Read, Glob, Grep, Write, Edit, Bash
|
|
5
5
|
model: opus
|
|
6
6
|
color: yellow
|
package/src/agents/rca-agent.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: rca-agent
|
|
3
|
-
description: Investigates bugs to form testable hypotheses. Reads debug context, explores code, and returns a hypothesis specific enough to verify with a test.
|
|
3
|
+
description: Investigates bugs to form testable hypotheses. Reads debug context, explores code, and returns a hypothesis specific enough to verify with a test. ORCHESTRATION ONLY - spawned by orchestrator during debugging workflow. Requires debug.yaml context; do not use for general coding.
|
|
4
4
|
tools: Read, Glob, Grep, Edit, Bash
|
|
5
5
|
model: opus
|
|
6
6
|
color: orange
|
package/src/agents/tdd-agent.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tdd-agent
|
|
3
|
-
description: Writes failing tests to verify bug hypotheses, or fixes code to make tests pass.
|
|
3
|
+
description: Writes failing tests to verify bug hypotheses, or fixes code to make tests pass. ORCHESTRATION ONLY - spawned by orchestrator during debugging workflow. Requires debug.yaml and task context; do not use for general coding.
|
|
4
4
|
tools: Read, Glob, Grep, Write, Edit, Bash
|
|
5
5
|
model: opus
|
|
6
6
|
color: red
|