@cleocode/cleo 2026.3.24 → 2026.3.26
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/dist/cli/index.js +22991 -26030
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +22051 -25126
- package/dist/mcp/index.js.map +4 -4
- package/package.json +1 -1
- package/packages/ct-skills/skills/_shared/manifest-operations.md +2 -2
- package/packages/ct-skills/skills/_shared/subagent-protocol-base.md +1 -1
- package/packages/ct-skills/skills/ct-cleo/SKILL.md +1 -1
- package/packages/ct-skills/skills/ct-contribution/SKILL.md +1 -1
- package/packages/ct-skills/skills/ct-grade-v2-1/references/domains-ssot.md +1 -1
- package/packages/ct-skills/skills/ct-orchestrator/SKILL.md +3 -3
- package/packages/ct-skills/skills/ct-orchestrator/references/lifecycle-gates.md +3 -3
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-patterns.md +2 -2
- package/packages/ct-skills/skills/ct-skill-validator/references/cleo-ecosystem-rules.md +1 -1
- package/server.json +6 -2
package/package.json
CHANGED
|
@@ -65,7 +65,7 @@ cleo research add \
|
|
|
65
65
|
| `--needs-followup` | `[]` | Comma-separated task IDs |
|
|
66
66
|
| `--agent-type` | `research` | See Agent Type Values below |
|
|
67
67
|
|
|
68
|
-
**Agent Type Values** (
|
|
68
|
+
**Agent Type Values** (RCASD-IVTR+C protocol + workflow types):
|
|
69
69
|
- **Protocol types**: `research`, `consensus`, `specification`, `decomposition`, `implementation`, `contribution`, `release`
|
|
70
70
|
- **Workflow types**: `validation`, `documentation`, `analysis`, `testing`, `cleanup`, `design`, `architecture`, `report`
|
|
71
71
|
- **Extended types**: `synthesis`, `orchestrator`, `handoff`, `verification`, `review`
|
|
@@ -807,4 +807,4 @@ cleo research link {{TASK_ID}} {{ENTRY_ID}}
|
|
|
807
807
|
- **Research Manifest Library**: `lib/research-manifest.sh`
|
|
808
808
|
- **Research CLI**: `scripts/research.sh`
|
|
809
809
|
- **Exit Codes**: `lib/exit-codes.sh` (EXIT_VALIDATION_ERROR = 6)
|
|
810
|
-
- **
|
|
810
|
+
- **RCASD-IVTR+C Protocol**: `docs/specs/PROJECT-LIFECYCLE-SPEC.md`
|
|
@@ -87,7 +87,7 @@ cleo research add \
|
|
|
87
87
|
See the reference above for:
|
|
88
88
|
- Complete CLI command syntax
|
|
89
89
|
- Field definitions and constraints
|
|
90
|
-
- Agent type values (
|
|
90
|
+
- Agent type values (RCASD-IVTR+C + workflow types)
|
|
91
91
|
- Manifest entry schema
|
|
92
92
|
- Anti-patterns to avoid
|
|
93
93
|
|
|
@@ -445,7 +445,7 @@ After EVERY command:
|
|
|
445
445
|
|
|
446
446
|
---
|
|
447
447
|
|
|
448
|
-
##
|
|
448
|
+
## RCASD-IVTR+C Lifecycle (LOOM)
|
|
449
449
|
|
|
450
450
|
**LOOM** (Logical Order of Operations Methodology) is the systematic framework for how CLEO processes project threads through the RCASD-IVTR+C pipeline. See `docs/concepts/CLEO-VISION.md` for the complete LOOM framework.
|
|
451
451
|
|
|
@@ -40,7 +40,7 @@ The Contribution Protocol enables:
|
|
|
40
40
|
|----------|---------------------------|-----------|
|
|
41
41
|
| Multi-agent research (2+ sessions) | **Yes** | Structured conflict detection |
|
|
42
42
|
| Consensus-building on architecture | **Yes** | Weighted voting, evidence tracking |
|
|
43
|
-
|
|
|
43
|
+
| RCASD-IVTR+C pipeline integration | **Yes** | JSON format enables automation |
|
|
44
44
|
| Single-agent research | No | Simpler research manifest sufficient |
|
|
45
45
|
| Quick decision with no alternatives | No | Protocol overhead not justified |
|
|
46
46
|
|
|
@@ -13,7 +13,7 @@ Source: `docs/specs/CLEO-OPERATION-CONSTITUTION.md` + `src/dispatch/registry.ts`
|
|
|
13
13
|
| `session` | query+mutate | status, list, show, history, decision.log, start, end, resume, gc | Session lifecycle |
|
|
14
14
|
| `memory` | query+mutate | (tier 1+) show, find, timeline, fetch, observe | Cognitive memory (brain.db) |
|
|
15
15
|
| `check` | query+mutate | schema, protocol, task, manifest, test.run | Validation and compliance |
|
|
16
|
-
| `pipeline` | query+mutate | stage.validate, stage.status, manifest.*, release.* |
|
|
16
|
+
| `pipeline` | query+mutate | stage.validate, stage.status, manifest.*, release.* | RCASD-IVTR+C lifecycle, releases |
|
|
17
17
|
| `orchestrate` | query+mutate | status, next, ready, waves, spawn, spawn.execute | Multi-agent coordination |
|
|
18
18
|
| `tools` | query+mutate | skill.list, skill.show, skill.find, provider.list, issue.add.bug | Skills, providers |
|
|
19
19
|
| `admin` | query+mutate | version, health, dash, help, stats, grade, grade.list | Config, diagnostics |
|
|
@@ -163,9 +163,9 @@ mutate({ domain: "session", operation: "start",
|
|
|
163
163
|
|
|
164
164
|
## Lifecycle Gate Enforcement
|
|
165
165
|
|
|
166
|
-
Before spawning implementation tasks, the system checks
|
|
166
|
+
Before spawning implementation tasks, the system checks RCASD-IVTR+C prerequisites. In **strict** mode (default), missing prerequisites block the spawn (exit 75). In **advisory** mode, it warns but proceeds. Set to **off** to disable.
|
|
167
167
|
|
|
168
|
-
Gate check: epic tasks must complete prior
|
|
168
|
+
Gate check: epic tasks must complete prior RCASD-IVTR+C stages before later stages can spawn. Non-epic tasks skip gate checks.
|
|
169
169
|
|
|
170
170
|
> Full decision tree, enforcement modes, gate failure handling, and emergency bypass: `references/lifecycle-gates.md`
|
|
171
171
|
|
|
@@ -374,7 +374,7 @@ All code changes MUST include provenance tags:
|
|
|
374
374
|
- [AUTONOMOUS-ORCHESTRATION-SPEC.md](../../docs/specs/AUTONOMOUS-ORCHESTRATION-SPEC.md) - Autonomous mode
|
|
375
375
|
- [PROJECT-LIFECYCLE-SPEC.md](../../docs/specs/PROJECT-LIFECYCLE-SPEC.md) - Full lifecycle
|
|
376
376
|
- [PROTOCOL-STACK-SPEC.md](../../docs/specs/PROTOCOL-STACK-SPEC.md) - 7 conditional protocols
|
|
377
|
-
- [RCSD-PIPELINE-SPEC.md](../../docs/specs/RCSD-PIPELINE-SPEC.md) -
|
|
377
|
+
- [RCSD-PIPELINE-SPEC.md](../../docs/specs/RCSD-PIPELINE-SPEC.md) - RCASD-IVTR+C pipeline
|
|
378
378
|
- [ORCHESTRATOR-VISION.md](../../docs/ORCHESTRATOR-VISION.md) - Core philosophy
|
|
379
379
|
- [ORCHESTRATOR-PROTOCOL.md](../../docs/guides/ORCHESTRATOR-PROTOCOL.md) - Practical workflows
|
|
380
380
|
- [orchestrator.md](../../docs/commands/orchestrator.md) - CLI command reference
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Lifecycle Gate Enforcement
|
|
2
2
|
|
|
3
3
|
> Referenced from: @skills/ct-orchestrator/SKILL.md
|
|
4
|
-
> Load when: Need details on
|
|
4
|
+
> Load when: Need details on RCASD-IVTR+C gate checks, enforcement modes, handling gate failures, or emergency bypass
|
|
5
5
|
|
|
6
6
|
## Overview
|
|
7
7
|
|
|
8
|
-
Before spawning ANY implementation task, the system automatically checks
|
|
8
|
+
Before spawning ANY implementation task, the system automatically checks RCASD-IVTR+C prerequisites. This ensures the Research → Consensus → Specification → Decomposition pipeline is followed.
|
|
9
9
|
|
|
10
10
|
## Decision Tree
|
|
11
11
|
|
|
@@ -21,7 +21,7 @@ Before spawn:
|
|
|
21
21
|
│ ├─ advisory → Check gates, warn on failure, proceed
|
|
22
22
|
│ └─ strict (default) → Check gates, BLOCK on failure
|
|
23
23
|
│
|
|
24
|
-
├─ Map protocol to
|
|
24
|
+
├─ Map protocol to RCASD-IVTR+C stage:
|
|
25
25
|
│ ├─ research → research stage
|
|
26
26
|
│ ├─ consensus → consensus stage
|
|
27
27
|
│ ├─ specification → specification stage
|
|
@@ -140,10 +140,10 @@ Always use `cleo release create` → `cleo release ship`.
|
|
|
140
140
|
|
|
141
141
|
See `src/protocols/release.md` for the full release protocol specification.
|
|
142
142
|
|
|
143
|
-
## Full
|
|
143
|
+
## Full RCASD-IVTR+C Lifecycle
|
|
144
144
|
|
|
145
145
|
```bash
|
|
146
|
-
#
|
|
146
|
+
# RCASD-IVTR+C PIPELINE (setup phase)
|
|
147
147
|
cleo orchestrator spawn T100 # research protocol
|
|
148
148
|
cleo orchestrator spawn T101 # consensus protocol
|
|
149
149
|
cleo orchestrator spawn T102 # specification protocol
|
|
@@ -15,7 +15,7 @@ The skill must serve or extend at least one of CLEO's **10 canonical domains**:
|
|
|
15
15
|
| `session` | Session lifecycle, decisions, assumptions, context |
|
|
16
16
|
| `memory` | Cognitive memory: observations, decisions, patterns, learnings (brain.db) |
|
|
17
17
|
| `check` | Schema validation, protocol compliance, test execution |
|
|
18
|
-
| `pipeline` |
|
|
18
|
+
| `pipeline` | RCASD-IVTR+C lifecycle stages, manifest ledger, release management |
|
|
19
19
|
| `orchestrate` | Multi-agent coordination, wave planning, parallel execution |
|
|
20
20
|
| `tools` | Skills, providers, issues, CAAMP catalog |
|
|
21
21
|
| `admin` | Configuration, backup, migration, diagnostics, ADRs |
|
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.kryptobaseddev/cleo-mcp-server",
|
|
4
4
|
"title": "CLEO MCP Server",
|
|
5
5
|
"description": "Task management for solo developers and AI coding agents — CQRS pattern, 200 operations across 10 domains",
|
|
6
|
-
"version": "2026.3.
|
|
6
|
+
"version": "2026.3.26",
|
|
7
7
|
"websiteUrl": "https://github.com/kryptobaseddev/cleo",
|
|
8
8
|
"repository": {
|
|
9
9
|
"url": "https://github.com/kryptobaseddev/cleo.git",
|
|
@@ -51,7 +51,11 @@
|
|
|
51
51
|
"Anti-hallucination validation on all task operations",
|
|
52
52
|
"Atomic file operations with backup and rollback"
|
|
53
53
|
],
|
|
54
|
-
"categories": [
|
|
54
|
+
"categories": [
|
|
55
|
+
"developer-tools",
|
|
56
|
+
"task-management",
|
|
57
|
+
"ai-agents"
|
|
58
|
+
]
|
|
55
59
|
}
|
|
56
60
|
}
|
|
57
61
|
}
|