@cleocode/skills 2026.4.148 → 2026.4.150
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
|
@@ -80,7 +80,7 @@ When the harness has access to tiered models, prefer this assignment. If only on
|
|
|
80
80
|
|------|----------------|-----------|
|
|
81
81
|
| Orchestrator (you) | opus | Strategic coordination, HITL interface |
|
|
82
82
|
| Team Leads | sonnet | Architecture, specs, validation, complex reasoning |
|
|
83
|
-
| Workers |
|
|
83
|
+
| Workers | sonnet | Implementation, testing, focused file-level changes |
|
|
84
84
|
|
|
85
85
|
## Spawning Subagents
|
|
86
86
|
|
|
@@ -105,7 +105,7 @@ Returns: resolved prompt with base protocol + conditional protocol + task contex
|
|
|
105
105
|
Agent({
|
|
106
106
|
description: "Worker: [task title]",
|
|
107
107
|
subagent_type: "cleo-subagent",
|
|
108
|
-
model: "
|
|
108
|
+
model: "sonnet",
|
|
109
109
|
prompt: "<resolved prompt from step 1>"
|
|
110
110
|
})
|
|
111
111
|
```
|
|
@@ -35,7 +35,7 @@ The `spawn` command returns:
|
|
|
35
35
|
Agent({
|
|
36
36
|
description: "Worker: Implement auth module (T1586)",
|
|
37
37
|
subagent_type: "cleo-subagent",
|
|
38
|
-
model: "
|
|
38
|
+
model: "sonnet", // preferred, not required
|
|
39
39
|
prompt: "<resolved prompt from step 1>"
|
|
40
40
|
})
|
|
41
41
|
```
|