@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.
- package/README.md +18 -15
- package/dist/cli/index.js +12711 -7411
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +11587 -3103
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260305011924_cheerful_mongu/migration.sql +2 -0
- package/drizzle/20260305011924_cheerful_mongu/snapshot.json +2662 -0
- package/drizzle/20260305203927_demonic_storm/migration.sql +28 -0
- package/drizzle/20260305203927_demonic_storm/snapshot.json +2924 -0
- package/drizzle/20260306001243_spooky_rage/migration.sql +25 -0
- package/drizzle/20260306001243_spooky_rage/snapshot.json +2939 -0
- package/drizzle-brain/20260301230215_workable_spitfire/migration.sql +68 -0
- package/drizzle-brain/20260301230215_workable_spitfire/snapshot.json +651 -0
- package/drizzle-brain/20260302050325_unknown_justin_hammer/migration.sql +23 -0
- package/drizzle-brain/20260302050325_unknown_justin_hammer/snapshot.json +884 -0
- package/drizzle-brain/20260302061755_unusual_jamie_braddock/migration.sql +2 -0
- package/drizzle-brain/20260302061755_unusual_jamie_braddock/snapshot.json +908 -0
- package/drizzle-brain/20260302193548_luxuriant_glorian/migration.sql +20 -0
- package/drizzle-brain/20260302193548_luxuriant_glorian/snapshot.json +1078 -0
- package/drizzle-brain/20260304045002_white_thunderbolt_ross/migration.sql +16 -0
- package/drizzle-brain/20260304045002_white_thunderbolt_ross/snapshot.json +1233 -0
- package/package.json +2 -2
- package/packages/ct-skills/skills/_shared/skill-chaining-patterns.md +1 -1
- package/packages/ct-skills/skills/_shared/subagent-protocol-base.md +1 -1
- package/packages/ct-skills/skills/ct-cleo/SKILL.md +16 -7
- package/packages/ct-skills/skills/ct-cleo/references/loom-lifecycle.md +1 -1
- package/packages/ct-skills/skills/ct-cleo/references/orchestrator-constraints.md +3 -3
- package/packages/ct-skills/skills/ct-cleo/references/session-protocol.md +5 -5
- package/packages/ct-skills/skills/ct-epic-architect/references/patterns.md +1 -1
- package/packages/ct-skills/skills/ct-grade/SKILL.md +9 -9
- package/packages/ct-skills/skills/ct-orchestrator/SKILL.md +43 -43
- package/packages/ct-skills/skills/ct-skill-creator/SKILL.md +1 -1
- package/packages/ct-skills/skills/ct-skill-creator/scripts/init_skill.py +16 -10
- package/packages/ct-skills/skills/ct-stickynote/README.md +14 -0
- package/packages/ct-skills/skills/ct-stickynote/SKILL.md +46 -0
- package/packages/ct-skills/skills.json +3 -3
- package/schemas/nexus-registry.schema.json +1 -1
- package/schemas/operation-constitution.schema.json +7 -7
- package/schemas/system-flow-atlas.schema.json +1 -1
- package/server.json +4 -4
- 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", "
|
|
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
|
|
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|
|
|
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|
|
|
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", "
|
|
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
|
-
"
|
|
394
|
+
"sticky": {
|
|
395
395
|
"type": "object",
|
|
396
396
|
"required": ["name", "purpose", "operations"],
|
|
397
397
|
"properties": {
|
|
398
|
-
"name": { "const": "
|
|
398
|
+
"name": { "const": "sticky" },
|
|
399
399
|
"purpose": { "type": "string" },
|
|
400
400
|
"primaryStore": { "type": "string" },
|
|
401
401
|
"operations": {
|
package/server.json
CHANGED
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"io.modelcontextprotocol.registry/publisher-provided": {
|
|
38
38
|
"tools": [
|
|
39
39
|
{
|
|
40
|
-
"name": "
|
|
41
|
-
"description": "Read-only operations across
|
|
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": "
|
|
45
|
-
"description": "Write operations across
|
|
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
|
-
- `
|
|
10
|
-
- `
|
|
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. `
|
|
16
|
-
2. `
|
|
17
|
-
3. `
|
|
18
|
-
4. `
|
|
19
|
-
5. `
|
|
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
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**: `
|
|
103
|
-
- **Orchestration**: `
|
|
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
|