@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.
- package/README.md +14 -13
- package/dist/cli/index.js +22676 -26012
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +1651 -802
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260301053344_careless_changeling/migration.sql +27 -0
- package/drizzle/20260301053344_careless_changeling/snapshot.json +2598 -0
- package/package.json +3 -4
- package/packages/ct-skills/skills/ct-cleo/SKILL.md +49 -22
- package/templates/CLEO-INJECTION.md +32 -138
- package/templates/cleo-gitignore +66 -49
- package/templates/git-hooks/pre-commit +24 -6
- package/schemas/archive/agent-configs.schema.json +0 -120
- package/schemas/archive/agent-registry.schema.json +0 -132
- package/schemas/archive/archive.schema.json +0 -450
- package/schemas/archive/claudedocs-frontmatter.schema.json +0 -162
- package/schemas/archive/commands-index.schema.json +0 -158
- package/schemas/archive/contribution.schema.json +0 -722
- package/schemas/archive/critical-path.schema.json +0 -246
- package/schemas/archive/deps-cache.schema.json +0 -97
- package/schemas/archive/doctor-output.schema.json +0 -283
- package/schemas/archive/error.schema.json +0 -161
- package/schemas/archive/export-package.schema.json +0 -375
- package/schemas/archive/global-config.schema.json +0 -219
- package/schemas/archive/log.schema.json +0 -250
- package/schemas/archive/metrics.schema.json +0 -328
- package/schemas/archive/migrations.schema.json +0 -150
- package/schemas/archive/nexus-registry.schema.json +0 -90
- package/schemas/archive/output.schema.json +0 -164
- package/schemas/archive/rcsd-consensus-report.schema.json +0 -491
- package/schemas/archive/rcsd-hitl-resolution.schema.json +0 -216
- package/schemas/archive/rcsd-index.schema.json +0 -384
- package/schemas/archive/rcsd-manifest.schema.json +0 -264
- package/schemas/archive/rcsd-research-output.schema.json +0 -564
- package/schemas/archive/rcsd-spec-frontmatter.schema.json +0 -225
- package/schemas/archive/releases.schema.json +0 -267
- package/schemas/archive/skills-manifest.schema.json +0 -91
- package/schemas/archive/skillsmp.schema.json +0 -208
- package/schemas/archive/spec-index.schema.json +0 -196
- package/schemas/archive/todo.schema.json +0 -995
- package/schemas/claudedocs-frontmatter.schema.json +0 -162
- package/schemas/commands-index.schema.json +0 -158
- package/schemas/rcsd-consensus-report.schema.json +0 -494
- package/schemas/rcsd-hitl-resolution.schema.json +0 -219
- package/schemas/rcsd-index.schema.json +0 -387
- package/schemas/rcsd-manifest.schema.json +0 -267
- package/schemas/rcsd-research-output.schema.json +0 -567
- package/schemas/rcsd-spec-frontmatter.schema.json +0 -225
- package/schemas/todo.schema.json +0 -994
- package/skills/_shared/cleo-style-guide.md +0 -84
- package/skills/_shared/manifest-operations.md +0 -810
- package/skills/_shared/placeholders.json +0 -433
- package/skills/_shared/skill-chaining-patterns.md +0 -240
- package/skills/_shared/subagent-protocol-base.md +0 -221
- package/skills/_shared/task-system-integration.md +0 -232
- package/skills/_shared/testing-framework-config.md +0 -110
- package/skills/agentskills-integrate.md +0 -104
- package/skills/agentskills-specs.md +0 -255
- package/skills/agentskills-what-are-skills.md +0 -75
- package/skills/manifest.json +0 -510
- package/templates/AGENT-INJECTION.md +0 -166
- /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
|