@cleocode/cleo 2026.3.0 → 2026.3.2-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 +1 -3
- package/dist/cli/index.js +5169 -3062
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +11935 -9729
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260301175940_futuristic_eternity/migration.sql +5 -0
- package/drizzle/20260301175940_futuristic_eternity/snapshot.json +2608 -0
- package/drizzle/20260301180528_update-task-relations-check-constraint/migration.sql +21 -0
- package/drizzle/20260301180528_update-task-relations-check-constraint/snapshot.json +2608 -0
- package/package.json +4 -4
- package/templates/README.md +4 -4
- package/templates/cleo-gitignore +3 -11
- package/templates/git-hooks/pre-commit +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleocode/cleo",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.2-beta.1",
|
|
4
4
|
"description": "CLEO V2 - TypeScript task management CLI for AI coding agents",
|
|
5
5
|
"mcpName": "io.github.kryptobaseddev/cleo-mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"dev": "tsc --noEmit --watch",
|
|
25
25
|
"dev:setup": "bash dev/setup-ts-dev.sh",
|
|
26
26
|
"dev:watch": "node build.mjs --watch",
|
|
27
|
-
"test": "vitest run",
|
|
28
|
-
"test:watch": "vitest",
|
|
29
|
-
"test:coverage": "vitest run --coverage",
|
|
27
|
+
"test": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run",
|
|
28
|
+
"test:watch": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest",
|
|
29
|
+
"test:coverage": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run --coverage",
|
|
30
30
|
"lint": "tsc --noEmit",
|
|
31
31
|
"prepare": "npm run build",
|
|
32
32
|
"prepack": "npm run build",
|
package/templates/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Template files used by `init.sh` to initialize new projects with the CLEO task m
|
|
|
10
10
|
| `archive.template.json` | `.cleo/todo-archive.json` | Completed tasks archive (immutable after archival) |
|
|
11
11
|
| `log.template.json` | `.cleo/todo-log.json` | Append-only change log for audit trail |
|
|
12
12
|
| `config.template.json` | `.cleo/config.json` | Project configuration (archive, validation, display settings) |
|
|
13
|
-
| `
|
|
13
|
+
| `CLEO-INJECTION.md` | AGENTS.md (via `@~/.cleo/templates/CLEO-INJECTION.md`) | Global injection template for task management protocol |
|
|
14
14
|
|
|
15
15
|
## Placeholder Contract
|
|
16
16
|
|
|
@@ -70,10 +70,10 @@ ajv validate -s "$TODO_DIR/schemas/todo.schema.json" -d "$TODO_DIR/todo.json"
|
|
|
70
70
|
- Placeholders: NONE
|
|
71
71
|
- Schema: `../schemas/config.schema.json`
|
|
72
72
|
|
|
73
|
-
###
|
|
74
|
-
- Contains:
|
|
73
|
+
### CLEO-INJECTION.md
|
|
74
|
+
- Contains: CLEO protocol instructions with MCP-first operations and session protocol
|
|
75
75
|
- Placeholders: NONE
|
|
76
|
-
- Usage:
|
|
76
|
+
- Usage: Global injection template referenced from AGENTS.md via `@~/.cleo/templates/CLEO-INJECTION.md`
|
|
77
77
|
|
|
78
78
|
## Schema Path Rewriting
|
|
79
79
|
|
package/templates/cleo-gitignore
CHANGED
|
@@ -26,24 +26,16 @@
|
|
|
26
26
|
!setup-otel.sh
|
|
27
27
|
!DATA-SAFETY-IMPLEMENTATION-SUMMARY.md
|
|
28
28
|
|
|
29
|
-
# Step 4: Allow
|
|
30
|
-
!schemas/
|
|
31
|
-
!schemas/**
|
|
32
|
-
|
|
33
|
-
# Step 5: Allow templates directory
|
|
34
|
-
!templates/
|
|
35
|
-
!templates/**
|
|
36
|
-
|
|
37
|
-
# Step 6: Allow ADRs directory (architecture decisions — project-level, not CLEO-specific)
|
|
29
|
+
# Step 4: Allow ADRs directory (architecture decisions — project-level, not CLEO-specific)
|
|
38
30
|
!adrs/
|
|
39
31
|
!adrs/**
|
|
40
32
|
|
|
41
|
-
# Step
|
|
33
|
+
# Step 5: Allow RCASD lifecycle provenance directory
|
|
42
34
|
# Structure: rcasd/{epic#}/research/, consensus/, architecture/, specs/, contributions/
|
|
43
35
|
!rcasd/
|
|
44
36
|
!rcasd/**
|
|
45
37
|
|
|
46
|
-
# Step
|
|
38
|
+
# Step 6: Allow agent-outputs directory
|
|
47
39
|
!agent-outputs/
|
|
48
40
|
!agent-outputs/**
|
|
49
41
|
|
|
@@ -20,7 +20,7 @@ if [ -n "$BAD_FILES" ]; then
|
|
|
20
20
|
fi
|
|
21
21
|
|
|
22
22
|
# ── 2. Core file gitignore protection ─────────────────────────────────
|
|
23
|
-
PROTECTED_FILES=".cleo/
|
|
23
|
+
PROTECTED_FILES=".cleo/config.json .cleo/.gitignore .cleo/project-info.json .cleo/project-context.json"
|
|
24
24
|
IGNORED_CORE=""
|
|
25
25
|
|
|
26
26
|
for f in $PROTECTED_FILES; do
|