@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 +1 -1
- package/skills/_shared/manifest-operations.md +5 -5
- package/skills/_shared/placeholders.json +4 -4
- package/skills/_shared/subagent-protocol-base.md +1 -1
- package/skills/_shared/task-system-integration.md +1 -1
- package/skills/ct-consensus-voter/SKILL.md +1 -1
- package/skills/ct-contribution/SKILL.md +1 -1
- package/skills/ct-epic-architect/references/commands.md +1 -1
- package/skills/ct-orchestrator/INSTALL.md +1 -1
- package/skills/ct-orchestrator/references/orchestrator-handoffs.md +1 -1
- package/skills/ct-orchestrator/references/orchestrator-tokens.md +4 -4
package/package.json
CHANGED
|
@@ -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:
|
|
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.,
|
|
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": "
|
|
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 |
|
|
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" >>
|
|
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": "
|
|
67
|
+
"example": ".cleo/agent-outputs",
|
|
68
68
|
"description": "Output directory path for agent artifacts",
|
|
69
|
-
"default": "
|
|
69
|
+
"default": ".cleo/agent-outputs"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"token": "MANIFEST_PATH",
|
|
73
73
|
"type": "path",
|
|
74
|
-
"example": "
|
|
74
|
+
"example": ".cleo/agent-outputs/MANIFEST.jsonl",
|
|
75
75
|
"description": "Path to MANIFEST.jsonl file",
|
|
76
|
-
"default": "
|
|
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}}` |
|
|
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}}` |
|
|
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/
|
|
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" "
|
|
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}}` |
|
|
200
|
+
| `{{OUTPUT_DIR}}` | `.cleo/agent-outputs` |
|
|
201
201
|
| `{{MANIFEST_PATH}}` | `{{OUTPUT_DIR}}/MANIFEST.jsonl` |
|
|
@@ -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:
|
|
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}}` |
|
|
74
|
-
| `{{MANIFEST_PATH}}` |
|
|
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}}` ->
|
|
159
|
-
- `{{MANIFEST_PATH}}` ->
|
|
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
|
|