@cleocode/cleo 2026.3.22 → 2026.3.24
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 +43319 -39976
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +33165 -30958
- package/dist/mcp/index.js.map +4 -4
- package/package.json +9 -2
- package/packages/ct-skills/skills/ct-skill-creator/.cleo/.context-state.json +13 -0
- package/packages/ct-skills/skills/ct-skill-creator/.cleo/tasks.db +0 -0
- package/server.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleocode/cleo",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.24",
|
|
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",
|
|
@@ -25,9 +25,15 @@
|
|
|
25
25
|
"dev:setup": "bash dev/setup-ts-dev.sh",
|
|
26
26
|
"dev:watch": "node build.mjs --watch",
|
|
27
27
|
"test": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run",
|
|
28
|
+
"test:unit": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run --project unit",
|
|
29
|
+
"test:integration": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run --project integration",
|
|
30
|
+
"test:e2e": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run --project e2e",
|
|
28
31
|
"test:watch": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest",
|
|
29
32
|
"test:coverage": "LOG_LEVEL=silent NODE_NO_WARNINGS=1 vitest run --coverage",
|
|
30
|
-
"lint": "
|
|
33
|
+
"lint": "biome check .",
|
|
34
|
+
"lint:fix": "biome check --write .",
|
|
35
|
+
"lint:types": "tsc --noEmit",
|
|
36
|
+
"format": "biome format --write .",
|
|
31
37
|
"prepare": "npm run build",
|
|
32
38
|
"prepack": "npm run build",
|
|
33
39
|
"postinstall": "node bin/postinstall.js",
|
|
@@ -96,6 +102,7 @@
|
|
|
96
102
|
"registry": "https://registry.npmjs.org/"
|
|
97
103
|
},
|
|
98
104
|
"devDependencies": {
|
|
105
|
+
"@biomejs/biome": "^2.4.6",
|
|
99
106
|
"@types/node": "^22.19.11",
|
|
100
107
|
"@types/proper-lockfile": "^4.1.4",
|
|
101
108
|
"@types/write-file-atomic": "^4.0.3",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"timestamp": "2026-03-08T03:31:32Z",
|
|
4
|
+
"staleAfterMs": 5000,
|
|
5
|
+
"contextWindow": {
|
|
6
|
+
"maxTokens": 1000000,
|
|
7
|
+
"currentTokens": 176633,
|
|
8
|
+
"percentage": 17
|
|
9
|
+
},
|
|
10
|
+
"status": "ok",
|
|
11
|
+
"sessionId": "",
|
|
12
|
+
"workspace": "/mnt/projects/claude-todo/packages/ct-skills/skills/ct-skill-creator"
|
|
13
|
+
}
|
|
Binary file
|
package/server.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.kryptobaseddev/cleo-mcp-server",
|
|
4
4
|
"title": "CLEO MCP Server",
|
|
5
|
-
"description": "Task management for solo developers and AI coding agents — CQRS pattern,
|
|
6
|
-
"version": "2026.3.
|
|
5
|
+
"description": "Task management for solo developers and AI coding agents — CQRS pattern, 200 operations across 10 domains",
|
|
6
|
+
"version": "2026.3.24",
|
|
7
7
|
"websiteUrl": "https://github.com/kryptobaseddev/cleo",
|
|
8
8
|
"repository": {
|
|
9
9
|
"url": "https://github.com/kryptobaseddev/cleo.git",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "@cleocode/cleo",
|
|
16
|
-
"version": "2026.3.
|
|
16
|
+
"version": "2026.3.24",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
],
|
|
48
48
|
"features": [
|
|
49
49
|
"CQRS 2-gateway pattern (94% token reduction vs traditional MCP tool approach)",
|
|
50
|
-
"
|
|
50
|
+
"200 operations across 10 canonical domains",
|
|
51
51
|
"Anti-hallucination validation on all task operations",
|
|
52
52
|
"Atomic file operations with backup and rollback"
|
|
53
53
|
],
|