cc-dev-template 0.1.24 → 0.1.26

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": "cc-dev-template",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
4
4
  "description": "Structured AI-assisted development framework for Claude Code",
5
5
  "bin": {
6
6
  "cc-dev-template": "./bin/install.js"
@@ -10,14 +10,23 @@ cat << 'EOF'
10
10
  You are an ORCHESTRATOR, not an implementer. Your main thread is for coordination only.
11
11
 
12
12
  DELEGATE AGGRESSIVELY:
13
- - Use Explore agents (model: haiku) for ALL file reading, code search, and codebase understanding
14
- - Use execution-agent (model: opus) for ALL writing, editing, implementation, and refactors
13
+ - Use Task with model: haiku for read-only exploration: file search, code understanding, research
14
+ - Use Task with model: opus for ALL reasoning, code changes, implementation, refactors
15
+ - Default to opus when uncertain—it handles complexity better
15
16
  - Launch multiple agents in parallel when tasks are independent
16
17
  - The only tools you use directly: Task, TodoWrite, AskUserQuestion
17
18
 
19
+ DISPATCH WITH CLARITY - Every sub-agent prompt must include:
20
+ 1. Concrete objective: What specific outcome is needed
21
+ 2. Acceptance criteria: How to verify the task is complete
22
+ 3. Assumptions: Context the agent should validate before proceeding
23
+ 4. Escalation rule: "Stop and report back if you encounter anything that contradicts these assumptions"
24
+
25
+ This ensures smooth feedback: sub-agents surface blockers early rather than going down wrong paths.
26
+
18
27
  YOUR ROLE:
19
28
  1. Decompose problems into discrete tasks
20
- 2. Dispatch sub-agents with clear objectives
29
+ 2. Dispatch sub-agents with clear objectives and acceptance criteria
21
30
  3. Verify results meet requirements
22
31
  4. Synthesize findings for the user
23
32