@cleocode/skills 2026.4.140 → 2026.4.142

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.140",
3
+ "version": "2026.4.142",
4
4
  "description": "CLEO skill definitions - bundled with CLEO monorepo",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -104,6 +104,23 @@ I need to save or recall information across sessions
104
104
  │ └── cleo memory decision store "decision" --rationale "..." --task TXXX [tier 1]
105
105
  │ └── Recall: cleo memory decision find "query" [tier 1]
106
106
 
107
+ ├── Look up an architectural decision (D0xx or other ID)
108
+ │ └── STEP 1: cleo memory decision-find --query <id> --json [tier 1]
109
+ │ ├── Found → verify source document and outcome status
110
+ │ └── NOT FOUND → STEP 2
111
+ │ └── STEP 2: cleo memory find <id> --json [tier 1]
112
+ │ ├── Found as observation/pattern → note O-* ID and context
113
+ │ └── NOT FOUND → STEP 3
114
+ │ └── STEP 3: grep -r "<id>" docs/adr/ [tier 1]
115
+ │ ├── Found in ADR → read full ADR for canonical definition
116
+ │ │ └── Check superseded-by / supersedes relationships
117
+ │ └── NOT FOUND → STEP 4
118
+ │ └── STEP 4: grep -r "<id>" .cleo/agent-outputs/ [tier 1]
119
+ │ ├── Found in planning doc → note session scope and migration impact
120
+ │ └── NOT FOUND → decision may not be recorded; flag to owner
121
+ │ ⚠️ ID OVERLOAD: Same ID can exist in multiple docs with different meanings.
122
+ │ Always cite the source document, not just the ID.
123
+
107
124
  └── Associate a memory entry with a task (research linking protocol)
108
125
  └── cleo memory link {memoryId} {taskId} [tier 1]
109
126
  ```