@cleocode/cleo 2026.3.13-beta.1 → 2026.3.14

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.
Files changed (41) hide show
  1. package/README.md +18 -15
  2. package/dist/cli/index.js +12711 -7411
  3. package/dist/cli/index.js.map +4 -4
  4. package/dist/mcp/index.js +11587 -3103
  5. package/dist/mcp/index.js.map +4 -4
  6. package/drizzle/20260305011924_cheerful_mongu/migration.sql +2 -0
  7. package/drizzle/20260305011924_cheerful_mongu/snapshot.json +2662 -0
  8. package/drizzle/20260305203927_demonic_storm/migration.sql +28 -0
  9. package/drizzle/20260305203927_demonic_storm/snapshot.json +2924 -0
  10. package/drizzle/20260306001243_spooky_rage/migration.sql +25 -0
  11. package/drizzle/20260306001243_spooky_rage/snapshot.json +2939 -0
  12. package/drizzle-brain/20260301230215_workable_spitfire/migration.sql +68 -0
  13. package/drizzle-brain/20260301230215_workable_spitfire/snapshot.json +651 -0
  14. package/drizzle-brain/20260302050325_unknown_justin_hammer/migration.sql +23 -0
  15. package/drizzle-brain/20260302050325_unknown_justin_hammer/snapshot.json +884 -0
  16. package/drizzle-brain/20260302061755_unusual_jamie_braddock/migration.sql +2 -0
  17. package/drizzle-brain/20260302061755_unusual_jamie_braddock/snapshot.json +908 -0
  18. package/drizzle-brain/20260302193548_luxuriant_glorian/migration.sql +20 -0
  19. package/drizzle-brain/20260302193548_luxuriant_glorian/snapshot.json +1078 -0
  20. package/drizzle-brain/20260304045002_white_thunderbolt_ross/migration.sql +16 -0
  21. package/drizzle-brain/20260304045002_white_thunderbolt_ross/snapshot.json +1233 -0
  22. package/package.json +2 -2
  23. package/packages/ct-skills/skills/_shared/skill-chaining-patterns.md +1 -1
  24. package/packages/ct-skills/skills/_shared/subagent-protocol-base.md +1 -1
  25. package/packages/ct-skills/skills/ct-cleo/SKILL.md +16 -7
  26. package/packages/ct-skills/skills/ct-cleo/references/loom-lifecycle.md +1 -1
  27. package/packages/ct-skills/skills/ct-cleo/references/orchestrator-constraints.md +3 -3
  28. package/packages/ct-skills/skills/ct-cleo/references/session-protocol.md +5 -5
  29. package/packages/ct-skills/skills/ct-epic-architect/references/patterns.md +1 -1
  30. package/packages/ct-skills/skills/ct-grade/SKILL.md +9 -9
  31. package/packages/ct-skills/skills/ct-orchestrator/SKILL.md +43 -43
  32. package/packages/ct-skills/skills/ct-skill-creator/SKILL.md +1 -1
  33. package/packages/ct-skills/skills/ct-skill-creator/scripts/init_skill.py +16 -10
  34. package/packages/ct-skills/skills/ct-stickynote/README.md +14 -0
  35. package/packages/ct-skills/skills/ct-stickynote/SKILL.md +46 -0
  36. package/packages/ct-skills/skills.json +3 -3
  37. package/schemas/nexus-registry.schema.json +1 -1
  38. package/schemas/operation-constitution.schema.json +7 -7
  39. package/schemas/system-flow-atlas.schema.json +1 -1
  40. package/server.json +4 -4
  41. package/templates/CLEO-INJECTION.md +12 -12
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "CanonicalDomain": {
15
15
  "type": "string",
16
- "enum": ["tasks", "session", "memory", "check", "pipeline", "orchestrate", "tools", "admin", "nexus", "sharing"],
16
+ "enum": ["tasks", "session", "memory", "check", "pipeline", "orchestrate", "tools", "admin", "nexus", "sticky"],
17
17
  "description": "One of 10 canonical CLEO domains"
18
18
  },
19
19
  "Tier": {
@@ -205,7 +205,7 @@
205
205
  "type": "array",
206
206
  "items": { "$ref": "#/definitions/OperationDef" },
207
207
  "minItems": 1,
208
- "description": "All 201 operations in the registry"
208
+ "description": "All 207 operations in the registry"
209
209
  }
210
210
  }
211
211
  },
@@ -223,7 +223,7 @@
223
223
  "type": "object",
224
224
  "description": "Query gateway matrix: domain -> operations[]",
225
225
  "patternProperties": {
226
- "^(tasks|session|memory|check|pipeline|orchestrate|tools|admin|nexus|sharing)$": {
226
+ "^(tasks|session|memory|check|pipeline|orchestrate|tools|admin|nexus|sticky)$": {
227
227
  "type": "array",
228
228
  "items": {
229
229
  "type": "string",
@@ -249,7 +249,7 @@
249
249
  "type": "object",
250
250
  "description": "Mutate gateway matrix: domain -> operations[]",
251
251
  "patternProperties": {
252
- "^(tasks|session|memory|check|pipeline|orchestrate|tools|admin|nexus|sharing)$": {
252
+ "^(tasks|session|memory|check|pipeline|orchestrate|tools|admin|nexus|sticky)$": {
253
253
  "type": "array",
254
254
  "items": {
255
255
  "type": "string",
@@ -271,7 +271,7 @@
271
271
  "domains": {
272
272
  "type": "object",
273
273
  "description": "Domain tables: operations grouped by domain",
274
- "required": ["tasks", "session", "memory", "check", "pipeline", "orchestrate", "tools", "admin", "nexus", "sharing"],
274
+ "required": ["tasks", "session", "memory", "check", "pipeline", "orchestrate", "tools", "admin", "nexus", "sticky"],
275
275
  "additionalProperties": false,
276
276
  "properties": {
277
277
  "tasks": {
@@ -391,11 +391,11 @@
391
391
  }
392
392
  }
393
393
  },
394
- "sharing": {
394
+ "sticky": {
395
395
  "type": "object",
396
396
  "required": ["name", "purpose", "operations"],
397
397
  "properties": {
398
- "name": { "const": "sharing" },
398
+ "name": { "const": "sticky" },
399
399
  "purpose": { "type": "string" },
400
400
  "primaryStore": { "type": "string" },
401
401
  "operations": {
@@ -101,7 +101,7 @@
101
101
  "tools",
102
102
  "admin",
103
103
  "nexus",
104
- "sharing"
104
+ "sticky"
105
105
  ]
106
106
  },
107
107
  "minItems": 10,
package/server.json CHANGED
@@ -37,12 +37,12 @@
37
37
  "io.modelcontextprotocol.registry/publisher-provided": {
38
38
  "tools": [
39
39
  {
40
- "name": "cleo_query",
41
- "description": "Read-only operations across 11 domains: tasks, session, orchestrate, research, lifecycle, validate, release, system, issues, skills, providers"
40
+ "name": "query",
41
+ "description": "Read-only operations across 10 domains: tasks, session, orchestrate, memory, pipeline, check, admin, tools, nexus, sticky"
42
42
  },
43
43
  {
44
- "name": "cleo_mutate",
45
- "description": "Write operations across 11 domains: tasks, session, orchestrate, research, lifecycle, validate, release, system, issues, skills, providers"
44
+ "name": "mutate",
45
+ "description": "Write operations across 10 domains: tasks, session, orchestrate, memory, pipeline, check, admin, tools, nexus, sticky"
46
46
  }
47
47
  ],
48
48
  "features": [
@@ -6,17 +6,17 @@ Status: ACTIVE
6
6
  ## CLEO Identity
7
7
 
8
8
  You are a CLEO protocol agent. Use MCP-first operations:
9
- - `cleo_query` for reads
10
- - `cleo_mutate` for writes
9
+ - `query` for reads
10
+ - `mutate` for writes
11
11
 
12
12
  ## Mandatory Efficiency Sequence
13
13
 
14
14
  Run cheapest-first at session start:
15
- 1. `cleo_query session status` — resume existing? (~200 tokens)
16
- 2. `cleo_query admin dash` — project overview (~500 tokens)
17
- 3. `cleo_query tasks current` — active task? (~100 tokens)
18
- 4. `cleo_query tasks next` — what to work on (~300 tokens)
19
- 5. `cleo_query tasks show` — full details for chosen task (~400 tokens)
15
+ 1. `query session status` — resume existing? (~200 tokens)
16
+ 2. `query admin dash` — project overview (~500 tokens)
17
+ 3. `query tasks current` — active task? (~100 tokens)
18
+ 4. `query tasks next` — what to work on (~300 tokens)
19
+ 5. `query tasks show` — full details for chosen task (~400 tokens)
20
20
 
21
21
  ## Agent Work Loop
22
22
 
@@ -87,9 +87,9 @@ CLEO includes a native BRAIN memory system. Use the 3-layer retrieval pattern fo
87
87
 
88
88
  **Example**:
89
89
  ```
90
- cleo_query memory brain.search {query: "authentication"}
91
- cleo_query memory brain.fetch {ids: ["O-abc123"]}
92
- cleo_mutate memory brain.observe {text: "Found auth uses JWT", title: "Auth discovery"}
90
+ query memory brain.search {query: "authentication"}
91
+ query memory brain.fetch {ids: ["O-abc123"]}
92
+ mutate memory brain.observe {text: "Found auth uses JWT", title: "Auth discovery"}
93
93
  ```
94
94
 
95
95
  **Anti-patterns:**
@@ -99,8 +99,8 @@ cleo_mutate memory brain.observe {text: "Found auth uses JWT", title: "Auth disc
99
99
  ## Escalation
100
100
 
101
101
  For deeper guidance beyond this minimal protocol:
102
- - **Session & lifecycle**: `cleo_query admin help` or load `ct-cleo` skill
103
- - **Orchestration**: `cleo_query admin help --tier 2` or load `ct-orchestrator` skill
102
+ - **Session & lifecycle**: `query admin help` or load `ct-cleo` skill
103
+ - **Orchestration**: `query admin help --tier 2` or load `ct-orchestrator` skill
104
104
  - **Operations reference**: `docs/specs/CLEO-OPERATIONS-REFERENCE.md`
105
105
 
106
106
  ## References