@cleocode/cleo 2026.3.29 → 2026.3.31
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 +591 -332
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +576 -341
- package/dist/mcp/index.js.map +4 -4
- package/package.json +1 -1
- package/server.json +1 -1
- package/templates/CLEO-INJECTION.md +11 -0
package/package.json
CHANGED
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 AI coding agents — CQRS 2-gateway pattern, 200 ops across 10 domains",
|
|
6
|
-
"version": "2026.3.
|
|
6
|
+
"version": "2026.3.31",
|
|
7
7
|
"websiteUrl": "https://github.com/kryptobaseddev/cleo",
|
|
8
8
|
"repository": {
|
|
9
9
|
"url": "https://github.com/kryptobaseddev/cleo.git",
|
|
@@ -96,6 +96,17 @@ mutate memory brain.observe {text: "Found auth uses JWT", title: "Auth discovery
|
|
|
96
96
|
- Fetching all entries without searching first (expensive)
|
|
97
97
|
- Skipping brain.search and going straight to brain.fetch
|
|
98
98
|
|
|
99
|
+
## Memory Bridge
|
|
100
|
+
|
|
101
|
+
CLEO auto-generates `.cleo/memory-bridge.md` from brain.db content. This file is `@`-referenced
|
|
102
|
+
in AGENTS.md so providers automatically load project memory context at session start.
|
|
103
|
+
|
|
104
|
+
**Contents**: Last session handoff, key learnings, active patterns, recent decisions, recent observations.
|
|
105
|
+
|
|
106
|
+
**Refreshes on**: `session.end`, `tasks.complete`, `memory.observe` (decisions), `cleo refresh-memory`.
|
|
107
|
+
|
|
108
|
+
If the file is missing, run `cleo init` or `cleo refresh-memory` to regenerate it.
|
|
109
|
+
|
|
99
110
|
## Escalation
|
|
100
111
|
|
|
101
112
|
For deeper guidance beyond this minimal protocol:
|