@cleocode/cleo 2026.2.9 → 2026.3.0

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 (62) hide show
  1. package/README.md +14 -13
  2. package/dist/cli/index.js +1920 -1180
  3. package/dist/cli/index.js.map +4 -4
  4. package/dist/mcp/index.js +1645 -793
  5. package/dist/mcp/index.js.map +4 -4
  6. package/drizzle/20260301053344_careless_changeling/migration.sql +27 -0
  7. package/drizzle/20260301053344_careless_changeling/snapshot.json +2598 -0
  8. package/package.json +2 -2
  9. package/packages/ct-skills/skills/ct-cleo/SKILL.md +49 -22
  10. package/templates/CLEO-INJECTION.md +32 -138
  11. package/templates/cleo-gitignore +66 -49
  12. package/templates/git-hooks/pre-commit +24 -6
  13. package/schemas/archive/agent-configs.schema.json +0 -120
  14. package/schemas/archive/agent-registry.schema.json +0 -132
  15. package/schemas/archive/archive.schema.json +0 -450
  16. package/schemas/archive/claudedocs-frontmatter.schema.json +0 -162
  17. package/schemas/archive/commands-index.schema.json +0 -158
  18. package/schemas/archive/contribution.schema.json +0 -722
  19. package/schemas/archive/critical-path.schema.json +0 -246
  20. package/schemas/archive/deps-cache.schema.json +0 -97
  21. package/schemas/archive/doctor-output.schema.json +0 -283
  22. package/schemas/archive/error.schema.json +0 -161
  23. package/schemas/archive/export-package.schema.json +0 -375
  24. package/schemas/archive/global-config.schema.json +0 -219
  25. package/schemas/archive/log.schema.json +0 -250
  26. package/schemas/archive/metrics.schema.json +0 -328
  27. package/schemas/archive/migrations.schema.json +0 -150
  28. package/schemas/archive/nexus-registry.schema.json +0 -90
  29. package/schemas/archive/output.schema.json +0 -164
  30. package/schemas/archive/rcsd-consensus-report.schema.json +0 -491
  31. package/schemas/archive/rcsd-hitl-resolution.schema.json +0 -216
  32. package/schemas/archive/rcsd-index.schema.json +0 -384
  33. package/schemas/archive/rcsd-manifest.schema.json +0 -264
  34. package/schemas/archive/rcsd-research-output.schema.json +0 -564
  35. package/schemas/archive/rcsd-spec-frontmatter.schema.json +0 -225
  36. package/schemas/archive/releases.schema.json +0 -267
  37. package/schemas/archive/skills-manifest.schema.json +0 -91
  38. package/schemas/archive/skillsmp.schema.json +0 -208
  39. package/schemas/archive/spec-index.schema.json +0 -196
  40. package/schemas/archive/todo.schema.json +0 -995
  41. package/schemas/claudedocs-frontmatter.schema.json +0 -162
  42. package/schemas/commands-index.schema.json +0 -158
  43. package/schemas/rcsd-consensus-report.schema.json +0 -494
  44. package/schemas/rcsd-hitl-resolution.schema.json +0 -219
  45. package/schemas/rcsd-index.schema.json +0 -387
  46. package/schemas/rcsd-manifest.schema.json +0 -267
  47. package/schemas/rcsd-research-output.schema.json +0 -567
  48. package/schemas/rcsd-spec-frontmatter.schema.json +0 -225
  49. package/schemas/todo.schema.json +0 -994
  50. package/skills/_shared/cleo-style-guide.md +0 -84
  51. package/skills/_shared/manifest-operations.md +0 -810
  52. package/skills/_shared/placeholders.json +0 -433
  53. package/skills/_shared/skill-chaining-patterns.md +0 -240
  54. package/skills/_shared/subagent-protocol-base.md +0 -221
  55. package/skills/_shared/task-system-integration.md +0 -232
  56. package/skills/_shared/testing-framework-config.md +0 -110
  57. package/skills/agentskills-integrate.md +0 -104
  58. package/skills/agentskills-specs.md +0 -255
  59. package/skills/agentskills-what-are-skills.md +0 -75
  60. package/skills/manifest.json +0 -510
  61. package/templates/AGENT-INJECTION.md +0 -166
  62. /package/schemas/{research-manifest.schema.json → archive/research-manifest.schema.json} +0 -0
package/README.md CHANGED
@@ -11,8 +11,8 @@
11
11
 
12
12
  <p align="center">
13
13
  <img src="https://img.shields.io/badge/License-BSL%201.1-blue" alt="License: Business Source License 1.1">
14
- <a href="CHANGELOG.md"><img src="https://img.shields.io/badge/version-2026.2.6-blue.svg" alt="Version"></a>
15
- <a href="docs/specs/LLM-AGENT-FIRST-SPEC.md"><img src="https://img.shields.io/badge/design-LLM--Agent--First-purple.svg" alt="LLM-Agent-First"></a>
14
+ <a href="CHANGELOG.md"><img src="https://img.shields.io/badge/version-2026.2.9-blue.svg" alt="Version"></a>
15
+ <a href="docs/mintlify/developer/specifications/LLM-AGENT-FIRST.mdx"><img src="https://img.shields.io/badge/design-LLM--Agent--First-purple.svg" alt="LLM-Agent-First"></a>
16
16
  <a href="tests/"><img src="https://img.shields.io/badge/tests-passing-brightgreen.svg" alt="Tests"></a>
17
17
  </p>
18
18
 
@@ -133,7 +133,8 @@ Or if installed globally (`npm install -g @cleocode/cleo`):
133
133
  {
134
134
  "mcpServers": {
135
135
  "cleo": {
136
- "command": "cleo-mcp"
136
+ "command": "cleo",
137
+ "args": ["mcp"]
137
138
  }
138
139
  }
139
140
  }
@@ -141,7 +142,7 @@ Or if installed globally (`npm install -g @cleocode/cleo`):
141
142
 
142
143
  Supports: Claude Code, Claude Desktop, Cursor, Gemini CLI, Kimi, Antigravity, Windsurf, Goose, OpenCode, VS Code, Zed, Codex
143
144
 
144
- - Canonical MCP contract: [`docs/specs/MCP-SERVER-SPECIFICATION.md`](docs/specs/MCP-SERVER-SPECIFICATION.md)
145
+ - Canonical MCP contract: [`docs/mintlify/specs/MCP-SERVER-SPECIFICATION.md`](docs/mintlify/specs/MCP-SERVER-SPECIFICATION.md)
145
146
  - MCP source: [`src/mcp/`](src/mcp/) (gateways, domains, engine)
146
147
  - Operation matrix: `src/mcp/gateways/query.ts` and `src/mcp/gateways/mutate.ts`
147
148
 
@@ -161,15 +162,15 @@ cleo_mutate domain=tasks operation=complete params={"taskId": "T1234", "notes"
161
162
  cleo_mutate domain=issues operation=add.bug params={"title": "...", "body": "...", "dryRun": true}
162
163
  ```
163
164
 
164
- 10 canonical domains, 164 operations (93 query + 71 mutate) across tasks, sessions, memory, check, pipeline, orchestration, tools, admin, nexus, and sharing. See the [MCP Usage Guide](docs/guides/mcp-usage-guide.mdx) for beginner-friendly walkthroughs.
165
+ 10 canonical domains, 177 operations (97 query + 80 mutate) across tasks, sessions, memory, check, pipeline, orchestration, tools, admin, nexus, and sharing. See the [MCP Usage Guide](docs/guides/mcp-usage-guide.mdx) for beginner-friendly walkthroughs.
165
166
 
166
167
  ### Source of Truth Hierarchy
167
168
 
168
169
  1. [`docs/concepts/vision.md`](docs/concepts/vision.md) - immutable product vision
169
- 2. [`docs/specs/PORTABLE-BRAIN-SPEC.md`](docs/specs/PORTABLE-BRAIN-SPEC.md) - canonical normative contract
170
+ 2. [`docs/mintlify/specs/PORTABLE-BRAIN-SPEC.md`](docs/mintlify/specs/PORTABLE-BRAIN-SPEC.md) - canonical normative contract
170
171
  3. [`README.md`](README.md) - operational public contract
171
- 4. [`docs/specs/CLEO-STRATEGIC-ROADMAP-SPEC.md`](docs/specs/CLEO-STRATEGIC-ROADMAP-SPEC.md) - phased execution plan
172
- 5. [`docs/specs/CLEO-BRAIN-SPECIFICATION.md`](docs/specs/CLEO-BRAIN-SPECIFICATION.md) - detailed capability model
172
+ 4. [`docs/mintlify/specs/CLEO-STRATEGIC-ROADMAP-SPEC.md`](docs/mintlify/specs/CLEO-STRATEGIC-ROADMAP-SPEC.md) - phased execution plan
173
+ 5. [`docs/mintlify/specs/CLEO-BRAIN-SPECIFICATION.md`](docs/mintlify/specs/CLEO-BRAIN-SPECIFICATION.md) - detailed capability model
173
174
 
174
175
  ---
175
176
 
@@ -249,9 +250,9 @@ IDs are **flat, sequential, and eternal**. No hierarchical IDs like `T001.2.3` t
249
250
 
250
251
  CLEO supports three runtime channels:
251
252
 
252
- - **Stable**: production users (`cleo`, `cleo-mcp`, optional `ct`)
253
- - **Beta**: prerelease validation (`cleo-beta`, `cleo-mcp-beta`, optional `ct-beta`)
254
- - **Dev**: contributor-isolated runtime (`cleo-dev`, `cleo-mcp-dev`, no `ct`)
253
+ - **Stable**: production users (`cleo`, optional `ct`; MCP via `cleo mcp`)
254
+ - **Beta**: prerelease validation (`cleo-beta`, optional `ct-beta`; MCP via `cleo-beta mcp`)
255
+ - **Dev**: contributor-isolated runtime (`cleo-dev`, no `ct`; MCP via `cleo-dev mcp`)
255
256
 
256
257
  The dev channel is designed to run in parallel with stable and should use isolated data (`~/.cleo-dev`).
257
258
 
@@ -1221,7 +1222,7 @@ Target metrics (optimized for 1000+ tasks):
1221
1222
  | **Installation** | [Installer Architecture](docs/guides/installer-architecture.md) · [Migration Guide](docs/guides/installer-migration.md) |
1222
1223
  | **Reference** | [Command Index](docs/commands/COMMANDS-INDEX.json) · [Quick Reference](docs/QUICK-REFERENCE.md) |
1223
1224
  | **Architecture** | [System Architecture](docs/architecture/ARCHITECTURE.md) · [Data Flows](docs/architecture/DATA-FLOWS.md) · [2-Tier Subagent](docs/architecture/CLEO-SUBAGENT.md) |
1224
- | **Specifications** | [LLM-Agent-First Spec](docs/specs/LLM-AGENT-FIRST-SPEC.md) · [Task ID System](docs/specs/LLM-TASK-ID-SYSTEM-DESIGN-SPEC.md) · [Hierarchy Spec](docs/specs/TASK-HIERARCHY-SPEC.md) |
1225
+ | **Specifications** | [LLM-Agent-First Spec](docs/mintlify/developer/specifications/LLM-AGENT-FIRST.mdx) · [Task ID System](docs/mintlify/developer/specifications/LLM-TASK-ID-SYSTEM-DESIGN.mdx) · [Hierarchy Spec](docs/mintlify/developer/specifications/TASK-HIERARCHY.mdx) |
1225
1226
  | **Integration** | [Claude Code Guide](docs/integration/CLAUDE-CODE.md) · [CI/CD Integration](docs/ci-cd-integration.md) · [Orchestrator Protocol](docs/guides/ORCHESTRATOR-PROTOCOL.md) |
1226
1227
 
1227
1228
  **Complete documentation**: [docs/INDEX.md](docs/INDEX.md)
@@ -1299,6 +1300,6 @@ See [LICENSING_FAQ.md](LICENSING_FAQ.md) for details.
1299
1300
  <p align="center">
1300
1301
  <a href="docs/INDEX.md">Documentation</a> ·
1301
1302
  <a href="docs/guides/design-philosophy.md">Design Philosophy</a> ·
1302
- <a href="docs/specs/LLM-AGENT-FIRST-SPEC.md">LLM-Agent-First Spec</a> ·
1303
+ <a href="docs/mintlify/developer/specifications/LLM-AGENT-FIRST.mdx">LLM-Agent-First Spec</a> ·
1303
1304
  <a href="CONTRIBUTING.md">Contributing</a>
1304
1305
  </p>