@cleocode/skills 2026.4.59 → 2026.4.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/skills",
3
- "version": "2026.4.59",
3
+ "version": "2026.4.62",
4
4
  "description": "CLEO skill definitions - bundled with CLEO monorepo",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -13,9 +13,9 @@ This reference defines all CLI operations for managing the agent outputs manifes
13
13
  The manifest system provides O(1) append operations and race-condition-free concurrent writes through JSONL format. Each line is a complete JSON object representing one research/output entry.
14
14
 
15
15
  **Default Paths**:
16
- - Output directory: `claudedocs/agent-outputs/` (configurable via `agentOutputs.directory`)
16
+ - Output directory: `.cleo/agent-outputs/` (configurable via `agentOutputs.directory`)
17
17
  - Manifest file: `MANIFEST.jsonl` (configurable via `agentOutputs.manifestFile`)
18
- - Full path: `{{OUTPUT_DIR}}/MANIFEST.jsonl` (i.e., `claudedocs/agent-outputs/MANIFEST.jsonl`)
18
+ - Full path: `{{OUTPUT_DIR}}/MANIFEST.jsonl` (i.e., `.cleo/agent-outputs/MANIFEST.jsonl`)
19
19
 
20
20
  **Design Principles**:
21
21
  - Append-only writes preserve audit trail
@@ -72,7 +72,7 @@ cleo research add \
72
72
  {
73
73
  "success": true,
74
74
  "entryId": "jwt-authentication-2026-02-07",
75
- "manifestPath": "claudedocs/agent-outputs/MANIFEST.jsonl"
75
+ "manifestPath": ".cleo/agent-outputs/MANIFEST.jsonl"
76
76
  }
77
77
  ```
78
78
 
@@ -454,7 +454,7 @@ When present, the `audit` field provides operational metadata:
454
454
  | `{{EPIC_ID}}` | Parent epic identifier | `T3147` |
455
455
  | `{{DATE}}` | Current date | `2026-02-07` |
456
456
  | `{{TOPIC_SLUG}}` | URL-safe topic name | `jwt-authentication` |
457
- | `{{OUTPUT_DIR}}` | Output directory | `claudedocs/agent-outputs` |
457
+ | `{{OUTPUT_DIR}}` | Output directory | `.cleo/agent-outputs` |
458
458
  | `{{MANIFEST_PATH}}` | Manifest filename | `MANIFEST.jsonl` |
459
459
 
460
460
  ### Command Tokens (CLEO Defaults)
@@ -538,7 +538,7 @@ jq -nc '{id: "test", title: "Test"}' >> MANIFEST.jsonl
538
538
 
539
539
  ```bash
540
540
  # WRONG - Bypasses validation
541
- echo "$json" >> claudedocs/agent-outputs/MANIFEST.jsonl
541
+ echo "$json" >> .cleo/agent-outputs/MANIFEST.jsonl
542
542
  ```
543
543
 
544
544
  **Problem**: No validation, no atomic operation, no audit trail
@@ -64,16 +64,16 @@
64
64
  {
65
65
  "token": "OUTPUT_DIR",
66
66
  "type": "path",
67
- "example": "claudedocs/agent-outputs",
67
+ "example": ".cleo/agent-outputs",
68
68
  "description": "Output directory path for agent artifacts",
69
- "default": "claudedocs/agent-outputs"
69
+ "default": ".cleo/agent-outputs"
70
70
  },
71
71
  {
72
72
  "token": "MANIFEST_PATH",
73
73
  "type": "path",
74
- "example": "claudedocs/agent-outputs/MANIFEST.jsonl",
74
+ "example": ".cleo/agent-outputs/MANIFEST.jsonl",
75
75
  "description": "Path to MANIFEST.jsonl file",
76
- "default": "claudedocs/agent-outputs/MANIFEST.jsonl"
76
+ "default": ".cleo/agent-outputs/MANIFEST.jsonl"
77
77
  }
78
78
  ],
79
79
  "taskCommands": {
@@ -177,7 +177,7 @@ Before returning, verify:
177
177
  |-------|---------|-------------|
178
178
  | `{{EPIC_ID}}` | `""` | Parent epic ID |
179
179
  | `{{SESSION_ID}}` | `""` | Session identifier |
180
- | `{{OUTPUT_DIR}}` | `claudedocs/agent-outputs` | Output directory |
180
+ | `{{OUTPUT_DIR}}` | `.cleo/agent-outputs` | Output directory |
181
181
  | `{{MANIFEST_PATH}}` | `{{OUTPUT_DIR}}/MANIFEST.jsonl` | Manifest location |
182
182
 
183
183
  ### Task System Tokens (CLEO defaults)
@@ -168,7 +168,7 @@ When tokens are not explicitly configured, assume CLEO defaults:
168
168
  | `{{TASK_LIST_CMD}}` | `cleo list` |
169
169
  | `{{TASK_FIND_CMD}}` | `cleo find` |
170
170
  | `{{TASK_ADD_CMD}}` | `cleo add` |
171
- | `{{OUTPUT_DIR}}` | `claudedocs/agent-outputs` |
171
+ | `{{OUTPUT_DIR}}` | `.cleo/agent-outputs` |
172
172
  | `{{MANIFEST_PATH}}` | `{{OUTPUT_DIR}}/MANIFEST.jsonl` |
173
173
 
174
174
  ---
@@ -126,7 +126,7 @@ Validate the matrix through `cleo check protocol`:
126
126
  ```bash
127
127
  cleo check protocol \
128
128
  --protocolType consensus \
129
- --votingMatrixFile ./.cleo/consensus/CONS-0042.json \
129
+ --votingMatrixFile ./.cleo/rcasd/T4797/consensus/T4797-consensus.json \
130
130
  --taskId T4797
131
131
  ```
132
132
 
@@ -383,7 +383,7 @@ Get injection block for subagent prompts.
383
383
 
384
384
  ```bash
385
385
  source lib/contribution-protocol.sh
386
- injection=$(contribution_get_injection "T2204" "claudedocs/protocol.md")
386
+ injection=$(contribution_get_injection "T2204" ".cleo/agent-outputs/protocol.md")
387
387
  ```
388
388
 
389
389
  ### contribution_create_manifest_entry()
@@ -197,5 +197,5 @@ cleo list --tree --parent {{EPIC_ID}} # Show epic subtree
197
197
 
198
198
  | Token | Default |
199
199
  |-------|---------|
200
- | `{{OUTPUT_DIR}}` | `claudedocs/agent-outputs` |
200
+ | `{{OUTPUT_DIR}}` | `.cleo/agent-outputs` |
201
201
  | `{{MANIFEST_PATH}}` | `{{OUTPUT_DIR}}/MANIFEST.jsonl` |
@@ -57,5 +57,5 @@ skills/
57
57
  ## Dependencies
58
58
 
59
59
  - CLEO task management (`cleo` CLI)
60
- - Agent manifest system (`claudedocs/agent-outputs/MANIFEST.jsonl`)
60
+ - Agent manifest system (`.cleo/agent-outputs/MANIFEST.jsonl`)
61
61
  - Task tool for subagent spawning
@@ -65,7 +65,7 @@ cleo research show A-research-id
65
65
 
66
66
  # 3. Orchestrator spawns Agent B with context:
67
67
  # "Previous research found: OAuth2 recommended, JWT for sessions, 30-day token expiry.
68
- # If you need details, read: claudedocs/agent-outputs/2026-01-31_A-research.md
68
+ # If you need details, read: .cleo/agent-outputs/2026-01-31_A-research.md
69
69
  # Your task: Implement the authentication module based on these findings."
70
70
  ```
71
71
 
@@ -70,8 +70,8 @@ template=$(ti_load_template "skills/ct-research-agent/SKILL.md")
70
70
 
71
71
  | Token | Default Value |
72
72
  |-------|---------------|
73
- | `{{OUTPUT_DIR}}` | `claudedocs/agent-outputs` |
74
- | `{{MANIFEST_PATH}}` | `claudedocs/agent-outputs/MANIFEST.jsonl` |
73
+ | `{{OUTPUT_DIR}}` | `.cleo/agent-outputs` |
74
+ | `{{MANIFEST_PATH}}` | `.cleo/agent-outputs/MANIFEST.jsonl` |
75
75
 
76
76
  ### Task Context Tokens (populated from CLEO task data)
77
77
 
@@ -155,8 +155,8 @@ echo "$template" | grep -c '{{' && echo "WARNING: Uninjected tokens remain"
155
155
  ## Subagent Protocol Tokens
156
156
 
157
157
  Token defaults (from `skills/_shared/placeholders.json`):
158
- - `{{OUTPUT_DIR}}` -> `claudedocs/agent-outputs`
159
- - `{{MANIFEST_PATH}}` -> `claudedocs/agent-outputs/MANIFEST.jsonl`
158
+ - `{{OUTPUT_DIR}}` -> `.cleo/agent-outputs`
159
+ - `{{MANIFEST_PATH}}` -> `.cleo/agent-outputs/MANIFEST.jsonl`
160
160
 
161
161
  ### Inline Protocol Block (when CLI unavailable)
162
162