@cleocode/cleo 2026.3.11 → 2026.3.13-beta.1
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 +3 -3
- package/dist/cli/index.js +4819 -2945
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +4542 -3106
- package/dist/mcp/index.js.map +4 -4
- package/package.json +2 -2
- package/schemas/operation-constitution.schema.json +438 -0
- package/schemas/system-flow-atlas.schema.json +125 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<p alis|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2026.3.11-|g|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2026.3.10-|g|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2025.3.10-|gn="center">
|
|
1
|
+
<p alis|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2026.3.12-|g|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2026.3.11-|g|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2026.3.10-|g|version-[0-9]\+\.[0-9]\+\.[0-9]\+-|version-2025.3.10-|gn="center">
|
|
2
2
|
<img src="docs/images/banner.png" alt="CLEO banner" width="900">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
@@ -98,7 +98,7 @@ CLEO is composed of four interdependent systems:
|
|
|
98
98
|
|
|
99
99
|
| State | What It Means |
|
|
100
100
|
|------|----------------|
|
|
101
|
-
| **Shipped** | TypeScript CLI + MCP server, SQLite storage (`tasks.db` + `brain.db`), atomic operations, four-layer anti-hallucination, RCASD-IVTR+C lifecycle gates, session management, 3-layer BRAIN retrieval (`
|
|
101
|
+
| **Shipped** | TypeScript CLI + MCP server, SQLite storage (`tasks.db` + `brain.db`), atomic operations, four-layer anti-hallucination, RCASD-IVTR+C lifecycle gates, session management, 3-layer BRAIN retrieval (`memory find/timeline/fetch`), BRAIN observe writes, NEXUS dispatch domain wiring (12 operations), LAFS envelopes |
|
|
102
102
|
| **In Progress / Planned** | Embedding generation + vector similarity pipeline (`T5158`/`T5159`), PageIndex traversal/query API (`T5161`), reasoning/session integration (`T5153`), `nexus.db` migration from JSON registry, full claude-mem automation retirement hooks (`T5145`) |
|
|
103
103
|
|
|
104
104
|
### MCP Server
|
|
@@ -162,7 +162,7 @@ cleo_mutate domain=tasks operation=complete params={"taskId": "T1234", "notes"
|
|
|
162
162
|
cleo_mutate domain=issues operation=add.bug params={"title": "...", "body": "...", "dryRun": true}
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
-
10 canonical domains,
|
|
165
|
+
10 canonical domains, 201 operations (112 query + 89 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.
|
|
166
166
|
|
|
167
167
|
### Source of Truth Hierarchy
|
|
168
168
|
|