@cleocode/mcp-server 0.98.2 → 0.98.4

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.
Files changed (36) hide show
  1. package/dist/domains/issues.d.ts +28 -3
  2. package/dist/domains/issues.d.ts.map +1 -1
  3. package/dist/domains/issues.js +108 -6
  4. package/dist/domains/issues.js.map +1 -1
  5. package/dist/engine/capability-matrix.d.ts.map +1 -1
  6. package/dist/engine/capability-matrix.js +63 -47
  7. package/dist/engine/capability-matrix.js.map +1 -1
  8. package/dist/engine/index.d.ts +1 -0
  9. package/dist/engine/index.d.ts.map +1 -1
  10. package/dist/engine/index.js +2 -0
  11. package/dist/engine/index.js.map +1 -1
  12. package/dist/engine/template-parser.d.ts +83 -0
  13. package/dist/engine/template-parser.d.ts.map +1 -0
  14. package/dist/engine/template-parser.js +255 -0
  15. package/dist/engine/template-parser.js.map +1 -0
  16. package/dist/gateways/mutate.d.ts +2 -2
  17. package/dist/gateways/mutate.js +2 -2
  18. package/dist/gateways/query.d.ts +2 -2
  19. package/dist/gateways/query.js +2 -2
  20. package/dist/lib/router.d.ts +10 -0
  21. package/dist/lib/router.d.ts.map +1 -1
  22. package/dist/lib/router.js +17 -1
  23. package/dist/lib/router.js.map +1 -1
  24. package/dist/types/gateway.d.ts +1 -1
  25. package/dist/types/gateway.d.ts.map +1 -1
  26. package/dist/types/index.d.ts +2 -1
  27. package/dist/types/index.d.ts.map +1 -1
  28. package/dist/types/index.js +1 -1
  29. package/dist/types/operations/issues.d.ts +75 -0
  30. package/dist/types/operations/issues.d.ts.map +1 -0
  31. package/dist/types/operations/issues.js +10 -0
  32. package/dist/types/operations/issues.js.map +1 -0
  33. package/package.json +3 -2
  34. package/schemas/IMPLEMENTATION-SUMMARY.md +8 -6
  35. package/schemas/README.md +38 -17
  36. package/server.json +3 -3
@@ -13,25 +13,27 @@
13
13
 
14
14
  | Category | Count | Location |
15
15
  |----------|-------|----------|
16
- | **Request Schemas** | 93 | `schemas/requests/{domain}/` |
17
- | **Response Schemas** | 95 | `schemas/responses/{domain}/` |
16
+ | **Request Schemas** | 123 | `schemas/requests/{domain}/` |
17
+ | **Response Schemas** | 123 | `schemas/responses/{domain}/` |
18
18
  | **Common Schemas** | 3 | `schemas/common/` |
19
19
  | **Registry Index** | 1 | `schemas/index.json` |
20
- | **Total** | **191** | All 96 operations covered |
20
+ | **Total** | **250** | All 123 operations covered |
21
21
 
22
22
  ### 2. Domain Coverage
23
23
 
24
24
  | Domain | Queries | Mutations | Total | Request Files | Response Files |
25
25
  |--------|---------|-----------|-------|---------------|----------------|
26
- | tasks | 9 | 10 | 19 | 19 | 19 |
26
+ | tasks | 10 | 11 | 21 | 21 | 21 |
27
27
  | session | 5 | 7 | 12 | 12 | 12 |
28
28
  | orchestrate | 7 | 5 | 12 | 12 | 12 |
29
29
  | research | 6 | 4 | 10 | 10 | 10 |
30
30
  | lifecycle | 5 | 5 | 10 | 10 | 10 |
31
31
  | validate | 9 | 2 | 11 | 11 | 11 |
32
32
  | release | 0 | 7 | 7 | 7 | 7 |
33
- | system | 5 | 7 | 12 | 12 | 12 |
34
- | **Total** | **45** | **53** | **98** | **93** | **93** |
33
+ | system | 14 | 10 | 24 | 24 | 24 |
34
+ | issues | 1 | 3 | 4 | 4 | 4 |
35
+ | skills | 6 | 6 | 12 | 12 | 12 |
36
+ | **Total** | **63** | **60** | **123** | **123** | **123** |
35
37
 
36
38
  ### 3. Common Schemas
37
39
 
package/schemas/README.md CHANGED
@@ -33,16 +33,18 @@ schemas/
33
33
  │ ├── meta.schema.json # _meta envelope
34
34
  │ ├── error.schema.json # Error structure
35
35
  │ └── pagination.schema.json # Pagination
36
- ├── requests/ # Request schemas (93)
37
- │ ├── tasks/ # 19 operations
36
+ ├── requests/ # Request schemas (123)
37
+ │ ├── tasks/ # 21 operations
38
38
  │ ├── session/ # 12 operations
39
39
  │ ├── orchestrate/ # 12 operations
40
40
  │ ├── research/ # 10 operations
41
41
  │ ├── lifecycle/ # 10 operations
42
42
  │ ├── validate/ # 11 operations
43
43
  │ ├── release/ # 7 operations
44
- └── system/ # 12 operations
45
- └── responses/ # Response schemas (95)
44
+ ├── system/ # 24 operations
45
+ │ ├── issues/ # 4 operations
46
+ │ └── skills/ # 12 operations
47
+ └── responses/ # Response schemas (123)
46
48
  ├── common-success.schema.json # Base success
47
49
  ├── common-error.schema.json # Base error
48
50
  └── {domain}/ # Domain-specific responses
@@ -52,22 +54,22 @@ schemas/
52
54
 
53
55
  | Gateway | Domains | Operations | Purpose |
54
56
  |---------|---------|------------|---------|
55
- | `cleo_query` | 7 | 48 | Read-only operations (46 spec + 2 job ops) |
56
- | `cleo_mutate` | 8 | 48 | State-modifying operations (47 spec + 1 job op) |
57
+ | `cleo_query` | 9 | 63 | Read-only operations |
58
+ | `cleo_mutate` | 10 | 60 | State-modifying operations |
57
59
 
58
60
  ---
59
61
 
60
62
  ## Domain Breakdown
61
63
 
62
- ### tasks (19 operations)
64
+ ### tasks (21 operations)
63
65
 
64
- **Queries (9)**:
66
+ **Queries (10)**:
65
67
  - get, list, find, exists, tree
66
- - blockers, deps, analyze, next
68
+ - blockers, deps, analyze, next, relates
67
69
 
68
- **Mutations (10)**:
70
+ **Mutations (11)**:
69
71
  - create, update, complete, delete, archive
70
- - unarchive, reparent, promote, reorder, reopen
72
+ - unarchive, reparent, promote, reorder, reopen, relates.add
71
73
 
72
74
  ### session (12 operations)
73
75
 
@@ -124,15 +126,34 @@ schemas/
124
126
  - prepare, changelog, commit
125
127
  - tag, push, gates.run, rollback
126
128
 
127
- ### system (12 operations)
129
+ ### system (24 operations)
128
130
 
129
- **Queries (5)**:
130
- - version, doctor, config.get
131
- - stats, context
131
+ **Queries (14)**:
132
+ - version, doctor, config.get, stats, context
133
+ - job.status, job.list, dash, roadmap, labels
134
+ - compliance, log, archive-stats, sequence
132
135
 
133
- **Mutations (7)**:
136
+ **Mutations (10)**:
134
137
  - init, config.set, backup, restore
135
- - migrate, sync, cleanup
138
+ - migrate, sync, cleanup, job.cancel, safestop, uncancel
139
+
140
+ ### issues (4 operations)
141
+
142
+ **Queries (1)**:
143
+ - diagnostics
144
+
145
+ **Mutations (3)**:
146
+ - create_bug, create_feature, create_help
147
+
148
+ ### skills (12 operations)
149
+
150
+ **Queries (6)**:
151
+ - list, show, search
152
+ - dispatch, verify, dependencies
153
+
154
+ **Mutations (6)**:
155
+ - install, uninstall, enable
156
+ - disable, configure, refresh
136
157
 
137
158
  ---
138
159
 
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 protocol for solo developers and AI coding agents with 2-gateway CQRS pattern",
6
- "version": "0.98.2",
6
+ "version": "0.98.4",
7
7
  "websiteUrl": "https://github.com/kryptobaseddev/cleo",
8
8
  "repository": {
9
9
  "url": "https://github.com/kryptobaseddev/cleo.git",
@@ -14,7 +14,7 @@
14
14
  {
15
15
  "registryType": "npm",
16
16
  "identifier": "@cleocode/mcp-server",
17
- "version": "0.98.2",
17
+ "version": "0.98.4",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },
@@ -43,7 +43,7 @@
43
43
  "CQRS 2-gateway pattern (94% token reduction vs traditional MCP tool approach)",
44
44
  "RCSD-IVTR lifecycle protocol enforcement",
45
45
  "4-layer validation (schema, semantic, referential, protocol)",
46
- "96 operations across 8 domains",
46
+ "123 operations across 10 domains",
47
47
  "Anti-hallucination validation on all task operations",
48
48
  "Atomic file operations with backup and rollback"
49
49
  ],