@cleocode/cleo 2026.2.8 → 2026.3.0

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 (62) hide show
  1. package/README.md +14 -13
  2. package/dist/cli/index.js +22676 -26012
  3. package/dist/cli/index.js.map +4 -4
  4. package/dist/mcp/index.js +1651 -802
  5. package/dist/mcp/index.js.map +4 -4
  6. package/drizzle/20260301053344_careless_changeling/migration.sql +27 -0
  7. package/drizzle/20260301053344_careless_changeling/snapshot.json +2598 -0
  8. package/package.json +3 -4
  9. package/packages/ct-skills/skills/ct-cleo/SKILL.md +49 -22
  10. package/templates/CLEO-INJECTION.md +32 -138
  11. package/templates/cleo-gitignore +66 -49
  12. package/templates/git-hooks/pre-commit +24 -6
  13. package/schemas/archive/agent-configs.schema.json +0 -120
  14. package/schemas/archive/agent-registry.schema.json +0 -132
  15. package/schemas/archive/archive.schema.json +0 -450
  16. package/schemas/archive/claudedocs-frontmatter.schema.json +0 -162
  17. package/schemas/archive/commands-index.schema.json +0 -158
  18. package/schemas/archive/contribution.schema.json +0 -722
  19. package/schemas/archive/critical-path.schema.json +0 -246
  20. package/schemas/archive/deps-cache.schema.json +0 -97
  21. package/schemas/archive/doctor-output.schema.json +0 -283
  22. package/schemas/archive/error.schema.json +0 -161
  23. package/schemas/archive/export-package.schema.json +0 -375
  24. package/schemas/archive/global-config.schema.json +0 -219
  25. package/schemas/archive/log.schema.json +0 -250
  26. package/schemas/archive/metrics.schema.json +0 -328
  27. package/schemas/archive/migrations.schema.json +0 -150
  28. package/schemas/archive/nexus-registry.schema.json +0 -90
  29. package/schemas/archive/output.schema.json +0 -164
  30. package/schemas/archive/rcsd-consensus-report.schema.json +0 -491
  31. package/schemas/archive/rcsd-hitl-resolution.schema.json +0 -216
  32. package/schemas/archive/rcsd-index.schema.json +0 -384
  33. package/schemas/archive/rcsd-manifest.schema.json +0 -264
  34. package/schemas/archive/rcsd-research-output.schema.json +0 -564
  35. package/schemas/archive/rcsd-spec-frontmatter.schema.json +0 -225
  36. package/schemas/archive/releases.schema.json +0 -267
  37. package/schemas/archive/skills-manifest.schema.json +0 -91
  38. package/schemas/archive/skillsmp.schema.json +0 -208
  39. package/schemas/archive/spec-index.schema.json +0 -196
  40. package/schemas/archive/todo.schema.json +0 -995
  41. package/schemas/claudedocs-frontmatter.schema.json +0 -162
  42. package/schemas/commands-index.schema.json +0 -158
  43. package/schemas/rcsd-consensus-report.schema.json +0 -494
  44. package/schemas/rcsd-hitl-resolution.schema.json +0 -219
  45. package/schemas/rcsd-index.schema.json +0 -387
  46. package/schemas/rcsd-manifest.schema.json +0 -267
  47. package/schemas/rcsd-research-output.schema.json +0 -567
  48. package/schemas/rcsd-spec-frontmatter.schema.json +0 -225
  49. package/schemas/todo.schema.json +0 -994
  50. package/skills/_shared/cleo-style-guide.md +0 -84
  51. package/skills/_shared/manifest-operations.md +0 -810
  52. package/skills/_shared/placeholders.json +0 -433
  53. package/skills/_shared/skill-chaining-patterns.md +0 -240
  54. package/skills/_shared/subagent-protocol-base.md +0 -221
  55. package/skills/_shared/task-system-integration.md +0 -232
  56. package/skills/_shared/testing-framework-config.md +0 -110
  57. package/skills/agentskills-integrate.md +0 -104
  58. package/skills/agentskills-specs.md +0 -255
  59. package/skills/agentskills-what-are-skills.md +0 -75
  60. package/skills/manifest.json +0 -510
  61. package/templates/AGENT-INJECTION.md +0 -166
  62. /package/schemas/{research-manifest.schema.json → archive/research-manifest.schema.json} +0 -0
@@ -1,510 +0,0 @@
1
- {
2
- "$schema": "https://cleo-dev.com/schemas/v1/skills-manifest.schema.json",
3
- "_meta": {
4
- "schemaVersion": "2.1.0",
5
- "lastUpdated": "2026-01-27",
6
- "totalSkills": 15,
7
- "architectureNote": "Universal Subagent Architecture: All spawns use single agent type 'cleo-subagent' with skill/protocol injection. Skill names like 'ct-research-agent' are identifiers for context injection protocols, NOT separate agent types.",
8
- "deprecatedFields": {
9
- "compatible_subagent_types": "DEPRECATED v0.70.0: Historical reference only. In 2-tier architecture, all spawns use 'cleo-subagent'. This field retained for backwards compatibility documentation."
10
- }
11
- },
12
- "dispatch_matrix": {
13
- "_comment": "Maps task types/keywords to skill NAMES (protocol identifiers). These are NOT agent types - all spawns use 'cleo-subagent' with the selected skill as context injection.",
14
- "by_task_type": {
15
- "research": "ct-research-agent",
16
- "planning": "ct-epic-architect",
17
- "implementation": "ct-task-executor",
18
- "testing": "ct-test-writer-bats",
19
- "documentation": "ct-documentor",
20
- "specification": "ct-spec-writer",
21
- "validation": "ct-validator",
22
- "bash-library": "ct-library-implementer-bash",
23
- "release": "ct-dev-workflow",
24
- "consensus": "ct-validator",
25
- "contribution": "ct-task-executor"
26
- },
27
- "by_keyword": {
28
- "research|investigate|explore|discover": "ct-research-agent",
29
- "epic|plan|decompose|architect": "ct-epic-architect",
30
- "implement|build|execute|create": "ct-task-executor",
31
- "test|bats|coverage|integration": "ct-test-writer-bats",
32
- "doc|document|readme|guide": "ct-documentor",
33
- "spec|rfc|protocol|contract": "ct-spec-writer",
34
- "validate|verify|audit|compliance|consensus|vote": "ct-validator",
35
- "lib/|bash|shell|function": "ct-library-implementer-bash",
36
- "release|version|publish|deploy|ship|changelog": "ct-dev-workflow"
37
- },
38
- "by_protocol": {
39
- "_comment": "Maps protocol files to skills for protocol-based dispatch",
40
- "research": "ct-research-agent",
41
- "consensus": "ct-validator",
42
- "specification": "ct-spec-writer",
43
- "decomposition": "ct-epic-architect",
44
- "implementation": "ct-task-executor",
45
- "contribution": "ct-task-executor",
46
- "release": "ct-dev-workflow"
47
- }
48
- },
49
- "skills": [
50
- {
51
- "name": "ct-orchestrator",
52
- "version": "2.0.0",
53
- "description": "Orchestrator protocol for coordinating complex workflows by delegating work to subagents while protecting the main context window. Enforces ORC-001 through ORC-008 constraints.",
54
- "path": "skills/ct-orchestrator",
55
- "tags": ["workflow", "multi-agent", "coordination"],
56
- "status": "active",
57
- "tier": 0,
58
- "token_budget": 8000,
59
- "references": [
60
- "skills/ct-orchestrator/SKILL.md",
61
- "skills/ct-orchestrator/references/orchestrator-spawning.md",
62
- "skills/ct-orchestrator/references/orchestrator-compliance.md",
63
- "skills/ct-orchestrator/references/orchestrator-tokens.md",
64
- "skills/ct-orchestrator/references/orchestrator-recovery.md",
65
- "docs/guides/ORCHESTRATOR-PROTOCOL.md"
66
- ],
67
- "capabilities": {
68
- "inputs": ["TASK_ID", "SESSION_ID", "EPIC_ID"],
69
- "outputs": ["workflow-coordination", "subagent-spawns"],
70
- "dependencies": ["ct-epic-architect", "ct-research-agent", "ct-task-executor", "ct-test-writer-bats", "ct-spec-writer", "ct-library-implementer-bash", "ct-validator"],
71
- "dispatch_triggers": ["orchestrate", "orchestrator mode", "run as orchestrator", "delegate to subagents", "coordinate agents", "spawn subagents", "multi-agent workflow", "context-protected workflow", "agent farm", "HITL orchestration"],
72
- "compatible_subagent_types": ["orchestrator"],
73
- "chains_to": ["ct-epic-architect", "ct-research-agent", "ct-task-executor", "ct-test-writer-bats", "ct-spec-writer", "ct-library-implementer-bash", "ct-validator", "ct-documentor"],
74
- "dispatch_keywords": {
75
- "primary": ["orchestrate", "coordinate", "delegate", "multi-agent"],
76
- "secondary": ["spawn", "farm", "HITL", "workflow"]
77
- }
78
- },
79
- "constraints": {
80
- "max_context_tokens": 150000,
81
- "requires_session": true,
82
- "requires_epic": true
83
- }
84
- },
85
- {
86
- "name": "ct-epic-architect",
87
- "version": "2.3.0",
88
- "description": "Epic architecture agent for creating comprehensive epics with full task decomposition, file attachments, and research linking. Use for epic planning, task breakdown, dependency analysis, wave planning.",
89
- "path": "skills/ct-epic-architect",
90
- "model": "sonnet",
91
- "tags": ["planning", "architecture", "task-management"],
92
- "status": "active",
93
- "tier": 1,
94
- "token_budget": 8000,
95
- "references": [
96
- "skills/ct-epic-architect/SKILL.md",
97
- "skills/ct-epic-architect/references/commands.md",
98
- "skills/ct-epic-architect/references/patterns.md",
99
- "skills/ct-epic-architect/references/shell-escaping.md"
100
- ],
101
- "capabilities": {
102
- "inputs": ["TASK_ID", "FEATURE_NAME", "FEATURE_SLUG", "DATE", "EPIC_ID", "SESSION_ID"],
103
- "outputs": ["epic", "tasks", "manifest-entry", "session"],
104
- "dependencies": [],
105
- "dispatch_triggers": ["create epic", "plan epic", "decompose into tasks", "architect the work", "break down this project", "epic planning", "task breakdown", "dependency analysis", "wave planning", "sprint planning"],
106
- "compatible_subagent_types": ["general-purpose", "planning"],
107
- "chains_to": ["ct-task-executor", "ct-research-agent", "ct-spec-writer"],
108
- "dispatch_keywords": {
109
- "primary": ["epic", "plan", "decompose", "architect"],
110
- "secondary": ["breakdown", "wave", "sprint", "dependency"]
111
- }
112
- },
113
- "constraints": {
114
- "max_context_tokens": 100000,
115
- "requires_session": true,
116
- "requires_epic": false
117
- }
118
- },
119
- {
120
- "name": "ct-task-executor",
121
- "version": "1.0.0",
122
- "description": "Generic task execution agent for completing implementation work. Use for executing assigned CLEO tasks and producing concrete outputs.",
123
- "path": "skills/ct-task-executor",
124
- "tags": ["execution", "implementation", "task-management"],
125
- "status": "active",
126
- "tier": 2,
127
- "token_budget": 8000,
128
- "references": [
129
- "skills/ct-task-executor/SKILL.md"
130
- ],
131
- "capabilities": {
132
- "inputs": ["TASK_ID", "TASK_NAME", "TASK_INSTRUCTIONS", "DELIVERABLES_LIST", "ACCEPTANCE_CRITERIA", "TOPIC_SLUG", "DATE", "EPIC_ID", "SESSION_ID", "DEPENDS_LIST", "MANIFEST_SUMMARIES", "TOPICS_JSON"],
133
- "outputs": ["deliverables", "manifest-entry"],
134
- "dependencies": [],
135
- "dispatch_triggers": ["execute task", "implement", "do the work", "complete this task", "carry out", "perform task", "run task", "work on", "implement feature", "build component", "create implementation", "execute plan", "do implementation", "complete implementation", "finish task", "execute instructions"],
136
- "compatible_subagent_types": ["general-purpose", "Code"],
137
- "chains_to": ["ct-test-writer-bats", "ct-documentor"],
138
- "dispatch_keywords": {
139
- "primary": ["implement", "build", "execute", "create"],
140
- "secondary": ["complete", "finish", "work on", "carry out"]
141
- }
142
- },
143
- "constraints": {
144
- "max_context_tokens": 80000,
145
- "requires_session": true,
146
- "requires_epic": false
147
- }
148
- },
149
- {
150
- "name": "ct-research-agent",
151
- "version": "1.0.0",
152
- "description": "Research and investigation agent for gathering information from multiple sources. Use for background research, fact-finding, exploring options, due diligence.",
153
- "path": "skills/ct-research-agent",
154
- "tags": ["research", "investigation", "discovery"],
155
- "status": "active",
156
- "tier": 2,
157
- "token_budget": 8000,
158
- "references": [
159
- "skills/ct-research-agent/SKILL.md"
160
- ],
161
- "capabilities": {
162
- "inputs": ["TASK_ID", "TOPIC", "TOPIC_SLUG", "RESEARCH_QUESTIONS", "RESEARCH_TITLE", "DATE", "EPIC_ID", "SESSION_ID", "TOPICS_JSON"],
163
- "outputs": ["research-file", "manifest-entry"],
164
- "dependencies": [],
165
- "dispatch_triggers": ["research", "investigate", "gather information", "look up", "find out about", "analyze topic", "explore options", "survey alternatives", "collect data on", "background research", "discovery", "fact-finding", "information gathering", "due diligence", "explore requirements"],
166
- "compatible_subagent_types": ["general-purpose", "Explore"],
167
- "chains_to": ["ct-spec-writer", "ct-epic-architect"],
168
- "dispatch_keywords": {
169
- "primary": ["research", "investigate", "explore", "discover"],
170
- "secondary": ["gather", "survey", "analyze", "fact-finding"]
171
- }
172
- },
173
- "constraints": {
174
- "max_context_tokens": 80000,
175
- "requires_session": false,
176
- "requires_epic": false
177
- }
178
- },
179
- {
180
- "name": "ct-spec-writer",
181
- "version": "1.0.0",
182
- "description": "Specification writing agent for creating technical specifications and protocol documents using RFC 2119 language.",
183
- "path": "skills/ct-spec-writer",
184
- "tags": ["specification", "documentation", "rfc"],
185
- "status": "active",
186
- "tier": 2,
187
- "token_budget": 8000,
188
- "references": [
189
- "skills/ct-spec-writer/SKILL.md"
190
- ],
191
- "capabilities": {
192
- "inputs": ["TASK_ID", "SPEC_NAME", "spec_topic", "requirements_list", "DATE", "TOPIC_SLUG"],
193
- "outputs": ["specification-file", "manifest-entry"],
194
- "dependencies": [],
195
- "dispatch_triggers": ["write a spec", "create specification", "define protocol", "document requirements", "RFC-style document", "technical specification", "write requirements", "define constraints", "create protocol spec", "architecture specification", "API specification", "interface contract"],
196
- "compatible_subagent_types": ["general-purpose", "Code"],
197
- "chains_to": ["ct-task-executor", "ct-documentor"],
198
- "dispatch_keywords": {
199
- "primary": ["spec", "rfc", "protocol", "contract"],
200
- "secondary": ["specification", "requirements", "interface", "architecture"]
201
- }
202
- },
203
- "constraints": {
204
- "max_context_tokens": 80000,
205
- "requires_session": false,
206
- "requires_epic": false
207
- }
208
- },
209
- {
210
- "name": "ct-test-writer-bats",
211
- "version": "1.0.0",
212
- "description": "Integration test writing agent using BATS framework. Use for creating bash script tests, shell function tests, integration tests.",
213
- "path": "skills/ct-test-writer-bats",
214
- "tags": ["testing", "bats", "integration"],
215
- "status": "active",
216
- "tier": 2,
217
- "token_budget": 8000,
218
- "references": [
219
- "skills/ct-test-writer-bats/SKILL.md"
220
- ],
221
- "capabilities": {
222
- "inputs": ["TASK_ID", "test_target", "test_scenarios", "DATE", "TOPIC_SLUG"],
223
- "outputs": ["test-file", "manifest-entry"],
224
- "dependencies": [],
225
- "dispatch_triggers": ["write tests", "create BATS tests", "add integration tests", "bash tests", "test coverage", "write test cases", "shell script tests", "create unit tests", "BATS framework", "testing bash scripts"],
226
- "compatible_subagent_types": ["general-purpose", "Code"],
227
- "chains_to": [],
228
- "dispatch_keywords": {
229
- "primary": ["test", "bats", "coverage", "integration"],
230
- "secondary": ["unit tests", "test cases", "shell tests", "bash tests"]
231
- }
232
- },
233
- "constraints": {
234
- "max_context_tokens": 80000,
235
- "requires_session": false,
236
- "requires_epic": false
237
- }
238
- },
239
- {
240
- "name": "ct-library-implementer-bash",
241
- "version": "1.0.0",
242
- "description": "Bash library implementation skill for creating shared shell functions. Use for creating utilities in lib/*.sh with shell best practices.",
243
- "path": "skills/ct-library-implementer-bash",
244
- "tags": ["implementation", "bash", "library"],
245
- "status": "active",
246
- "tier": 2,
247
- "token_budget": 8000,
248
- "references": [
249
- "skills/ct-library-implementer-bash/SKILL.md"
250
- ],
251
- "capabilities": {
252
- "inputs": ["TASK_ID", "MODULE_NAME", "function_signatures", "DATE", "TOPIC_SLUG"],
253
- "outputs": ["library-file", "manifest-entry"],
254
- "dependencies": [],
255
- "dispatch_triggers": ["create library", "implement functions", "add to lib/", "shared utilities", "bash library", "helper functions", "lib/*.sh", "shell functions", "bash module", "utility functions"],
256
- "compatible_subagent_types": ["general-purpose", "Code"],
257
- "chains_to": ["ct-test-writer-bats"],
258
- "dispatch_keywords": {
259
- "primary": ["lib/", "bash", "shell", "function"],
260
- "secondary": ["library", "utilities", "helper", "module"]
261
- }
262
- },
263
- "constraints": {
264
- "max_context_tokens": 80000,
265
- "requires_session": false,
266
- "requires_epic": false
267
- }
268
- },
269
- {
270
- "name": "ct-validator",
271
- "version": "1.0.0",
272
- "description": "Compliance validation agent for verifying system, document, and code compliance against requirements, schemas, or standards.",
273
- "path": "skills/ct-validator",
274
- "tags": ["validation", "compliance", "audit"],
275
- "status": "active",
276
- "tier": 2,
277
- "token_budget": 6000,
278
- "references": [
279
- "skills/ct-validator/SKILL.md"
280
- ],
281
- "capabilities": {
282
- "inputs": ["TASK_ID", "VALIDATION_TARGET", "TARGET_FILES_OR_SYSTEMS", "VALIDATION_CRITERIA", "VALIDATION_COMMANDS", "TOPIC_SLUG", "DATE"],
283
- "outputs": ["validation-report", "manifest-entry"],
284
- "dependencies": [],
285
- "dispatch_triggers": ["validate", "verify", "check compliance", "audit", "compliance check", "verify conformance", "check requirements", "run validation", "validate schema", "check standards", "audit compliance", "verify rules", "validation report", "compliance audit", "check constraints"],
286
- "compatible_subagent_types": ["general-purpose", "Explore"],
287
- "chains_to": [],
288
- "dispatch_keywords": {
289
- "primary": ["validate", "verify", "audit", "compliance"],
290
- "secondary": ["check", "conformance", "standards", "requirements"]
291
- }
292
- },
293
- "constraints": {
294
- "max_context_tokens": 60000,
295
- "requires_session": false,
296
- "requires_epic": false
297
- }
298
- },
299
- {
300
- "name": "ct-dev-workflow",
301
- "version": "2.0.0",
302
- "description": "Task-driven development workflow for atomic commits with CLEO task traceability. Enforces WF-001 (task required), smart test scoping, and GitHub Actions release automation.",
303
- "path": "skills/ct-dev-workflow",
304
- "tags": ["workflow", "git", "commits", "release", "task-tracking"],
305
- "status": "active",
306
- "tier": 2,
307
- "token_budget": 6000,
308
- "references": [
309
- "skills/ct-dev-workflow/SKILL.md"
310
- ],
311
- "capabilities": {
312
- "inputs": ["TASK_ID", "CHANGE_TYPE", "SCOPE", "DESCRIPTION"],
313
- "outputs": ["commit", "tag", "push"],
314
- "dependencies": [],
315
- "dispatch_triggers": ["commit", "release", "run the workflow", "prepare release", "atomic commit", "conventional commit", "version bump", "create release", "commit and push", "finalize changes", "ship it", "cut a release", "push changes"],
316
- "compatible_subagent_types": ["general-purpose", "Code"],
317
- "chains_to": [],
318
- "dispatch_keywords": {
319
- "primary": ["commit", "release", "push", "version"],
320
- "secondary": ["atomic", "conventional", "ship", "finalize"]
321
- }
322
- },
323
- "constraints": {
324
- "max_context_tokens": 60000,
325
- "requires_session": false,
326
- "requires_epic": false
327
- }
328
- },
329
- {
330
- "name": "ct-documentor",
331
- "version": "2.3.0",
332
- "description": "Documentation specialist orchestrating ct-docs-lookup, ct-docs-write, and ct-docs-review skills. Use for end-to-end documentation workflows with anti-duplication enforcement.",
333
- "path": "skills/ct-documentor",
334
- "tags": ["documentation", "orchestration", "workflow"],
335
- "status": "active",
336
- "tier": 3,
337
- "token_budget": 8000,
338
- "references": [
339
- "skills/ct-documentor/SKILL.md"
340
- ],
341
- "capabilities": {
342
- "inputs": ["TASK_ID", "documentation_topic", "target_audience"],
343
- "outputs": ["documentation-file", "manifest-entry", "review-report"],
344
- "dependencies": ["ct-docs-lookup", "ct-docs-write", "ct-docs-review"],
345
- "dispatch_triggers": ["write documentation", "create docs", "review docs", "update documentation", "document this feature", "fix the docs", "sync docs with code", "documentation is outdated", "full docs workflow", "end-to-end documentation"],
346
- "compatible_subagent_types": ["general-purpose", "documentation", "Code"],
347
- "chains_to": ["ct-docs-lookup", "ct-docs-write", "ct-docs-review"],
348
- "dispatch_keywords": {
349
- "primary": ["doc", "document", "readme", "guide"],
350
- "secondary": ["documentation", "docs", "markdown", "mdx"]
351
- }
352
- },
353
- "constraints": {
354
- "max_context_tokens": 80000,
355
- "requires_session": false,
356
- "requires_epic": false
357
- }
358
- },
359
- {
360
- "name": "ct-docs-lookup",
361
- "version": "1.0.0",
362
- "description": "Library documentation lookup via Context7. Use for framework setup, API references, version-specific docs for React, Vue, Next.js, Prisma, Supabase, etc.",
363
- "path": "skills/ct-docs-lookup",
364
- "tags": ["documentation", "libraries", "context7"],
365
- "status": "active",
366
- "tier": 3,
367
- "token_budget": 6000,
368
- "references": [
369
- "skills/ct-docs-lookup/SKILL.md"
370
- ],
371
- "capabilities": {
372
- "inputs": ["library_name", "query", "version"],
373
- "outputs": ["documentation-content", "code-examples"],
374
- "dependencies": [],
375
- "dispatch_triggers": ["how do I configure", "write code using", "what are the methods", "show me examples", "library docs", "framework setup", "API reference", "version-specific docs"],
376
- "compatible_subagent_types": ["general-purpose", "documentation", "Explore"],
377
- "chains_to": [],
378
- "dispatch_keywords": {
379
- "primary": ["library", "framework", "api", "reference"],
380
- "secondary": ["configure", "methods", "examples", "docs"]
381
- }
382
- },
383
- "constraints": {
384
- "max_context_tokens": 60000,
385
- "requires_session": false,
386
- "requires_epic": false
387
- }
388
- },
389
- {
390
- "name": "ct-docs-write",
391
- "version": "1.0.0",
392
- "description": "Documentation writing skill applying CLEO's conversational, clear, and user-focused writing style. Use for creating or editing markdown, MDX, README, guides.",
393
- "path": "skills/ct-docs-write",
394
- "tags": ["documentation", "writing", "style-guide"],
395
- "status": "active",
396
- "tier": 3,
397
- "token_budget": 6000,
398
- "references": [
399
- "skills/ct-docs-write/SKILL.md"
400
- ],
401
- "capabilities": {
402
- "inputs": ["file_path", "content_topic", "audience"],
403
- "outputs": ["documentation-file", "markdown-content"],
404
- "dependencies": [],
405
- "dispatch_triggers": ["write docs", "create documentation", "edit the README", "improve doc clarity", "make docs more readable", "follow the style guide", "write user-facing content"],
406
- "compatible_subagent_types": ["general-purpose", "documentation", "Code"],
407
- "chains_to": [],
408
- "dispatch_keywords": {
409
- "primary": ["write", "create", "edit", "style"],
410
- "secondary": ["clarity", "readable", "user-facing", "content"]
411
- }
412
- },
413
- "constraints": {
414
- "max_context_tokens": 60000,
415
- "requires_session": false,
416
- "requires_epic": false
417
- }
418
- },
419
- {
420
- "name": "ct-docs-review",
421
- "version": "1.0.0",
422
- "description": "Documentation review skill for checking docs against CLEO writing style guide. Supports local file review and GitHub PR review modes.",
423
- "path": "skills/ct-docs-review",
424
- "tags": ["documentation", "review", "style-guide"],
425
- "status": "active",
426
- "tier": 3,
427
- "token_budget": 6000,
428
- "references": [
429
- "skills/ct-docs-review/SKILL.md"
430
- ],
431
- "capabilities": {
432
- "inputs": ["file_path", "pr_url", "diff_content"],
433
- "outputs": ["review-comments", "style-violations", "improvement-suggestions"],
434
- "dependencies": [],
435
- "dispatch_triggers": ["review documentation", "check docs style", "review this markdown file", "check style guide compliance", "review PR documentation"],
436
- "compatible_subagent_types": ["general-purpose", "documentation", "Explore"],
437
- "chains_to": [],
438
- "dispatch_keywords": {
439
- "primary": ["review", "check", "style", "compliance"],
440
- "secondary": ["violations", "improvements", "pr review", "markdown"]
441
- }
442
- },
443
- "constraints": {
444
- "max_context_tokens": 60000,
445
- "requires_session": false,
446
- "requires_epic": false
447
- }
448
- },
449
- {
450
- "name": "ct-skill-creator",
451
- "version": "1.0.0",
452
- "description": "Guide for creating effective skills that extend Claude's capabilities with specialized knowledge, workflows, or tool integrations.",
453
- "path": "skills/ct-skill-creator",
454
- "tags": ["skills", "creation", "meta"],
455
- "status": "active",
456
- "tier": 3,
457
- "token_budget": 8000,
458
- "references": [
459
- "skills/ct-skill-creator/SKILL.md"
460
- ],
461
- "capabilities": {
462
- "inputs": ["skill_name", "skill_purpose", "concrete_examples"],
463
- "outputs": ["skill-directory", "SKILL.md", "skill-resources"],
464
- "dependencies": [],
465
- "dispatch_triggers": ["create a new skill", "update an existing skill", "skill creation", "extend Claude capabilities", "build a skill"],
466
- "compatible_subagent_types": ["general-purpose", "Code"],
467
- "chains_to": [],
468
- "dispatch_keywords": {
469
- "primary": ["skill", "create", "build", "extend"],
470
- "secondary": ["capabilities", "workflow", "integration", "new skill"]
471
- }
472
- },
473
- "constraints": {
474
- "max_context_tokens": 80000,
475
- "requires_session": false,
476
- "requires_epic": false
477
- }
478
- },
479
- {
480
- "name": "ct-skill-lookup",
481
- "version": "1.0.0",
482
- "description": "Find and retrieve Agent Skills from prompts.chat. Use for searching skills, extending Claude capabilities, or installing reusable AI agent components.",
483
- "path": "skills/ct-skill-lookup",
484
- "tags": ["skills", "discovery", "prompts-chat"],
485
- "status": "active",
486
- "tier": 3,
487
- "token_budget": 6000,
488
- "references": [
489
- "skills/ct-skill-lookup/SKILL.md"
490
- ],
491
- "capabilities": {
492
- "inputs": ["search_query", "skill_id", "category", "tag"],
493
- "outputs": ["skill-list", "skill-content", "skill-files"],
494
- "dependencies": [],
495
- "dispatch_triggers": ["find me a skill", "search for skills", "what skills are available", "get skill", "install a skill", "extend Claude capabilities with skills"],
496
- "compatible_subagent_types": ["general-purpose", "Explore"],
497
- "chains_to": ["ct-skill-creator"],
498
- "dispatch_keywords": {
499
- "primary": ["find", "search", "skill", "lookup"],
500
- "secondary": ["available", "install", "get", "discover"]
501
- }
502
- },
503
- "constraints": {
504
- "max_context_tokens": 60000,
505
- "requires_session": false,
506
- "requires_epic": false
507
- }
508
- }
509
- ]
510
- }