@cleocode/skills 2026.4.148 → 2026.4.151

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": "@cleocode/skills",
3
- "version": "2026.4.148",
3
+ "version": "2026.4.151",
4
4
  "description": "CLEO skill definitions - bundled with CLEO monorepo",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -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 | haiku | Implementation, testing, focused file-level changes |
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: "haiku",
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: "haiku", // preferred, not required
38
+ model: "sonnet", // preferred, not required
39
39
  prompt: "<resolved prompt from step 1>"
40
40
  })
41
41
  ```