@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,84 +0,0 @@
1
- # CLEO Writing Style Guide
2
-
3
- ## Core Principles
4
-
5
- Write like you're talking to a colleague. Be conversational, not formal. Get people what they need quickly. Know your audience and match the complexity.
6
-
7
- ## Tone and Voice
8
-
9
- **Do:**
10
-
11
- - Use contractions ("can't" not "cannot")
12
- - Say "people" or "companies" instead of "users"
13
- - Be friendly but not peppy
14
- - Acknowledge limitations honestly ("that's on us, not them")
15
- - Jokes and Easter eggs are okay (permit them, don't suggest them)
16
-
17
- **Don't:**
18
-
19
- - Use exclamation points excessively
20
- - Rely on tired tropes about nerdiness
21
- - Use corporate jargon ("utilize", "offerings", "actionable insights")
22
- - Tell people something is cool (show them instead)
23
-
24
- ## Structure and Clarity
25
-
26
- **Lead with the important stuff:**
27
-
28
- - Most important information first
29
- - Lead with the ask, then provide context
30
- - Cut text that adds little value (when in doubt, cut it)
31
- - Each paragraph should have one clear purpose
32
-
33
- **Make headings do the work:**
34
-
35
- - Convey your actual point, not just the topic
36
- - "Use headings to highlight key points" not "How to write a good heading"
37
- - Use sentence case, no punctuation except question marks
38
- - No links in headings unless entire heading is a link
39
-
40
- ## Instructions and Examples
41
-
42
- **Tell people what to do:**
43
-
44
- - Give the action before explaining why
45
- - Put commands in execution order
46
- - Provide context, steps, and reasoning
47
- - Don't describe tasks as "easy" or "simple"
48
-
49
- **Answer unasked questions:**
50
-
51
- - Include answers to "dumb" questions you had when learning
52
- - Don't literally include the question, just give the answer
53
-
54
- ## Formatting
55
-
56
- **Code vs. UI elements:**
57
-
58
- - Backticks for code, variable names, parameters only
59
- - **Bold** for UI elements and labels (e.g., "Click the **Save** button")
60
- - Don't use backticks or quotes for UI elements
61
-
62
- ## Writing Mechanics
63
-
64
- - Limit pronouns when introducing new terms (repeat the term to reinforce it)
65
- - Ampersands only in proper nouns, never as substitute for "and"
66
-
67
- ## Terminology Preferences
68
-
69
- Use familiar terms from tools people already know:
70
-
71
- - "Summarize" (like Excel) instead of "aggregate"
72
- - "Take a look at" instead of "reference"
73
- - "Filter" instead of technical database terms when appropriate
74
-
75
- ## Red Flags
76
-
77
- Avoid these patterns:
78
-
79
- - Multiple exclamation points
80
- - Linking "here"
81
- - Bullet lists to explain (use prose)
82
- - Numbers that will change (guard against change)
83
- - Describing things as "easy" or "simple"
84
- - Stock photography-worthy content