@cleocode/cleo 2026.3.15 → 2026.3.17
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 +4037 -1776
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +3894 -1643
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260306193138_young_morbius/migration.sql +22 -0
- package/drizzle/20260306193138_young_morbius/snapshot.json +3162 -0
- package/drizzle/20260306194959_sticky_captain_flint/migration.sql +23 -0
- package/drizzle/20260306194959_sticky_captain_flint/snapshot.json +3388 -0
- package/package.json +3 -2
- package/schemas/config.schema.json +23 -0
- package/schemas/project-context.schema.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleocode/cleo",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.17",
|
|
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",
|
|
@@ -65,13 +65,14 @@
|
|
|
65
65
|
"bin"
|
|
66
66
|
],
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@cleocode/caamp": "^1.
|
|
68
|
+
"@cleocode/caamp": "^1.7.0",
|
|
69
69
|
"@cleocode/lafs-protocol": "^1.6.0",
|
|
70
70
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
71
71
|
"ajv": "^8.18.0",
|
|
72
72
|
"ajv-formats": "^3.0.1",
|
|
73
73
|
"commander": "^12.1.0",
|
|
74
74
|
"drizzle-orm": "1.0.0-beta.15-859cf75",
|
|
75
|
+
"env-paths": "^4.0.0",
|
|
75
76
|
"pino": "^10.3.1",
|
|
76
77
|
"pino-roll": "^4.0.0",
|
|
77
78
|
"proper-lockfile": "^4.1.2",
|
|
@@ -2458,6 +2458,29 @@
|
|
|
2458
2458
|
}
|
|
2459
2459
|
}
|
|
2460
2460
|
},
|
|
2461
|
+
"contributor": {
|
|
2462
|
+
"type": "object",
|
|
2463
|
+
"description": "Contributor/dev-mode settings. Auto-populated when CLEO detects it is running inside its own source repository (ADR-016 §2.3, ADR-029).",
|
|
2464
|
+
"additionalProperties": false,
|
|
2465
|
+
"properties": {
|
|
2466
|
+
"isContributorProject": {
|
|
2467
|
+
"type": "boolean",
|
|
2468
|
+
"default": false,
|
|
2469
|
+
"description": "True when this project IS the CLEO source repository. Detected automatically by fingerprinting src/mcp/, src/dispatch/, src/core/ and package.json#name. When true, agents MUST use cleo-dev CLI and local MCP server instead of production @cleocode/cleo@latest."
|
|
2470
|
+
},
|
|
2471
|
+
"devCli": {
|
|
2472
|
+
"type": "string",
|
|
2473
|
+
"default": "cleo-dev",
|
|
2474
|
+
"description": "The CLI command for the local dev build (ADR-016 §2.3). Injected into agent context when isContributorProject is true."
|
|
2475
|
+
},
|
|
2476
|
+
"verifiedAt": {
|
|
2477
|
+
"type": ["string", "null"],
|
|
2478
|
+
"format": "date-time",
|
|
2479
|
+
"default": null,
|
|
2480
|
+
"description": "ISO 8601 timestamp when contributor status was last auto-verified."
|
|
2481
|
+
}
|
|
2482
|
+
}
|
|
2483
|
+
},
|
|
2461
2484
|
"tools": {
|
|
2462
2485
|
"type": "object",
|
|
2463
2486
|
"description": "External tool dependencies and installation commands. Replaces hardcoded tool assumptions.",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"type": "array",
|
|
27
27
|
"items": {
|
|
28
28
|
"type": "string",
|
|
29
|
-
"enum": ["node", "python", "rust", "go", "ruby", "elixir", "java", "php", "deno", "bun", "unknown"]
|
|
29
|
+
"enum": ["node", "python", "rust", "go", "ruby", "elixir", "java", "php", "deno", "bun", "dotnet", "bash", "unknown"]
|
|
30
30
|
},
|
|
31
31
|
"minItems": 1,
|
|
32
32
|
"description": "All detected project types"
|
|
33
33
|
},
|
|
34
34
|
"primaryType": {
|
|
35
35
|
"type": "string",
|
|
36
|
-
"enum": ["node", "python", "rust", "go", "ruby", "elixir", "java", "php", "deno", "bun", "unknown"],
|
|
36
|
+
"enum": ["node", "python", "rust", "go", "ruby", "elixir", "java", "php", "deno", "bun", "dotnet", "bash", "unknown"],
|
|
37
37
|
"description": "Primary project type"
|
|
38
38
|
},
|
|
39
39
|
"monorepo": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"properties": {
|
|
49
49
|
"framework": {
|
|
50
50
|
"type": "string",
|
|
51
|
-
"enum": ["bats", "jest", "vitest", "playwright", "cypress", "mocha", "ava", "uvu", "tap", "node:test", "deno", "bun", "pytest", "go", "cargo", "custom"],
|
|
51
|
+
"enum": ["bats", "jest", "vitest", "playwright", "cypress", "mocha", "ava", "uvu", "tap", "node:test", "deno", "bun", "pytest", "go", "cargo", "rspec", "junit", "custom"],
|
|
52
52
|
"description": "Detected testing framework"
|
|
53
53
|
},
|
|
54
54
|
"command": {
|