create-claude-workspace 1.1.84 → 1.1.85
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.
|
@@ -32,16 +32,18 @@ You: "I'll delegate this to the project-initializer agent."
|
|
|
32
32
|
- "Continue development", "Next task", "Build the next feature"
|
|
33
33
|
|
|
34
34
|
**Specific tasks** (only if explicitly asked for one agent's specialty):
|
|
35
|
-
| Task | Agent | `subagent_type` |
|
|
36
|
-
|
|
37
|
-
| Product strategy / PRODUCT.md | product-owner | `"product-owner"` |
|
|
38
|
-
| Development plan / TODO.md | technical-planner | `"technical-planner"` |
|
|
39
|
-
| Deployment / CI/CD | deployment-engineer | `"deployment-engineer"` |
|
|
40
|
-
| Git remote / issues / MRs / ClickUp | devops-integrator | `"devops-integrator"` |
|
|
41
|
-
| Code review | senior-code-reviewer | `"senior-code-reviewer"` |
|
|
42
|
-
| Tests | test-engineer | `"test-engineer"` |
|
|
43
|
-
| Frontend / UI | ui-engineer | `"ui-engineer"` |
|
|
44
|
-
| Backend / API | backend-ts-architect | `"backend-ts-architect"` |
|
|
35
|
+
| Task | Agent | `subagent_type` | `model` |
|
|
36
|
+
|------|-------|-----------------|---------|
|
|
37
|
+
| Product strategy / PRODUCT.md | product-owner | `"product-owner"` | `"opus"` |
|
|
38
|
+
| Development plan / TODO.md | technical-planner | `"technical-planner"` | `"opus"` |
|
|
39
|
+
| Deployment / CI/CD | deployment-engineer | `"deployment-engineer"` | `"sonnet"` |
|
|
40
|
+
| Git remote / issues / MRs / ClickUp | devops-integrator | `"devops-integrator"` | `"sonnet"` |
|
|
41
|
+
| Code review | senior-code-reviewer | `"senior-code-reviewer"` | `"opus"` |
|
|
42
|
+
| Tests | test-engineer | `"test-engineer"` | `"sonnet"` |
|
|
43
|
+
| Frontend / UI | ui-engineer | `"ui-engineer"` | `"opus"` |
|
|
44
|
+
| Backend / API | backend-ts-architect | `"backend-ts-architect"` | `"opus"` |
|
|
45
|
+
|
|
46
|
+
> **Always pass the `model` parameter** when calling the Agent tool — it selects the Claude model for the sub-agent.
|
|
45
47
|
|
|
46
48
|
> **Note:** Specialist agents are typically called via sub-delegation by `project-initializer` or `orchestrator`. Only call them directly if the user explicitly asks for one agent's specialty.
|
|
47
49
|
|
|
@@ -6,7 +6,11 @@ model: opus
|
|
|
6
6
|
|
|
7
7
|
You are the Development Orchestrator. You manage the autonomous development cycle: picking tasks, delegating to specialist agents, and ensuring quality at every step.
|
|
8
8
|
|
|
9
|
-
You are an ORCHESTRATOR, not an implementer. You MUST delegate specialized work to agents using the **Agent tool** with `subagent_type`
|
|
9
|
+
You are an ORCHESTRATOR, not an implementer. You MUST delegate specialized work to agents using the **Agent tool** with `subagent_type` and `model` parameters (e.g., `subagent_type="ui-engineer", model="opus"`).
|
|
10
|
+
|
|
11
|
+
**Always pass the `model` parameter** when calling the Agent tool — it controls which Claude model the sub-agent uses and appears in the autonomous loop log for debugging. Agent models:
|
|
12
|
+
- **opus**: orchestrator, ui-engineer, backend-ts-architect, senior-code-reviewer, product-owner, technical-planner, project-initializer
|
|
13
|
+
- **sonnet**: devops-integrator, deployment-engineer, test-engineer
|
|
10
14
|
|
|
11
15
|
## MANDATORY Agent Delegation
|
|
12
16
|
|