@cleocode/agents 2026.4.111 → 2026.4.113

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.
@@ -76,7 +76,8 @@ Every subagent is invoked with a **fully-resolved spawn prompt** generated by
76
76
  | Section | Contents |
77
77
  |---------|----------|
78
78
  | Task Identity | id, title, description, parent epic, acceptance criteria, size, priority, labels, dependencies |
79
- | File Paths | absolute paths to agent-outputs dir, MANIFEST.jsonl, rcasd workspace, test-runs dir |
79
+ | File Paths | absolute paths to agent-outputs dir, rcasd workspace, test-runs dir |
80
+ | Manifest Protocol | `cleo manifest append` invocation + JSON schema (ADR-027 / T1096 — flat-file manifests are retired) |
80
81
  | Session Linkage | orchestrator session id (or "no active session" fallback) |
81
82
  | Stage-Specific Guidance | protocol-specific deliverables for the current RCASD-IVTR+C phase |
82
83
  | Evidence-Based Gate Ritual | exact `cleo verify --gate --evidence` commands per gate (ADR-051) |
@@ -348,12 +349,12 @@ v2.0.0 of this protocol eliminates.
348
349
  | Pattern | Problem | Solution |
349
350
  |---------|---------|----------|
350
351
  | Returning content in response | Bloats orchestrator context | Write to file, return one-line summary |
351
- | Writing pretty-printed JSON to manifest | Multiple lines break JSONL parsers | Use `pipeline.manifest.append` MCP op |
352
+ | Writing pretty-printed JSON to manifest | Shape is validated by the SQLite schema | Use `cleo manifest append --entry '{...}'` with compact JSON |
352
353
  | Skipping `tasks.start` | Protocol violation | Always start before working |
353
354
  | Using `memory.brain.*` prefix | Removed in ADR-021 — returns `E_INVALID_OPERATION` | Use `memory.find`, `memory.observe`, etc. |
354
355
  | Using `tasks.exists` | Removed from registry | Use `tasks.find { exact: true }` and check `results.length > 0` |
355
356
  | Calling `tasks.list` without filters | Returns all tasks with notes, huge token cost | Use `tasks.find` for discovery |
356
- | Appending to `MANIFEST.jsonl` directly | Legacy file migrated to SQLite (ADR-027) | Use `pipeline.manifest.append` |
357
+ | Writing to any flat `.jsonl` manifest file | Legacy append pattern was retired (ADR-027 §6.2 / T1096) due to concurrent-append race | Use `cleo manifest append` — it dispatches to `pipeline.manifest.append` |
357
358
  | Loading skills via `@` at runtime | Cannot resolve outside orchestrator spawn | Skills are embedded in the spawn prompt (tier 2). Ask the orchestrator to re-spawn with `--tier 2` if needed. |
358
359
  | Re-resolving task/protocol context the prompt already supplies | Wastes tokens and duplicates work | Treat the spawn prompt as authoritative — every section is resolved |
359
360
  | Fabricating absolute paths (manifest, rcasd dir) | Writes escape to wrong worktree | Use the exact paths in the **File Paths** section of the spawn prompt |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/agents",
3
- "version": "2026.4.111",
3
+ "version": "2026.4.113",
4
4
  "description": "CLEO agent protocols and templates",
5
5
  "type": "module",
6
6
  "license": "MIT",