@cleocode/adapters 2026.4.110 → 2026.4.112
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/adapters",
|
|
3
|
-
"version": "2026.4.
|
|
3
|
+
"version": "2026.4.112",
|
|
4
4
|
"description": "Unified provider adapters for CLEO (Claude Code, OpenCode, Cursor)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"@ai-sdk/anthropic": "^3.0.69",
|
|
16
16
|
"@ai-sdk/openai": "^2.0.53",
|
|
17
17
|
"ai": "^6.0.168",
|
|
18
|
-
"@cleocode/
|
|
19
|
-
"@cleocode/
|
|
18
|
+
"@cleocode/caamp": "2026.4.112",
|
|
19
|
+
"@cleocode/contracts": "2026.4.112"
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"engines": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^22.19.15",
|
|
31
31
|
"vitest": "^4.1.4",
|
|
32
|
-
"@cleocode/playbooks": "2026.4.
|
|
32
|
+
"@cleocode/playbooks": "2026.4.112"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
@@ -114,7 +114,7 @@ Model assignment is an **optimization** — if a model tier is unavailable, use
|
|
|
114
114
|
| NEVER write code yourself | All code via Agent() spawns |
|
|
115
115
|
| NEVER read full source files | Only manifests, task outputs, and spawn results |
|
|
116
116
|
| NEVER use `run_in_background: false` for heavy work | Background workers protect your context |
|
|
117
|
-
| NEVER call TaskOutput on subagent results | Read
|
|
117
|
+
| NEVER call TaskOutput on subagent results | Read the manifest entry via `cleo manifest show <id>` or `cleo manifest list --task <T####>` |
|
|
118
118
|
| ALWAYS use `subagent_type: "cleo-subagent"` | Ensures protocol injection |
|
|
119
119
|
| ALWAYS include task ID in description | Traceability: "Worker: Auth module (T1586)" |
|
|
120
120
|
| ALWAYS check `cleo orchestrate ready` before spawning | Dependency order enforcement |
|