causantic 0.4.1 → 0.4.2
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 +8 -8
- package/dist/cli/skill-templates.js +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
**Long-term memory for Claude Code — local-first, graph-augmented, self-benchmarking.**
|
|
10
10
|
|
|
11
|
-
No cloud. No
|
|
11
|
+
No cloud. No data leaves your machine. Runs entirely on your hardware with optional per-chunk encryption. An optional Anthropic API key enables cluster topic labeling via Haiku — all core retrieval works without it.
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
14
14
|
<strong>Long-term episodic memory for Claude Code</strong><br/>
|
|
@@ -192,18 +192,18 @@ Causantic installs 14 Claude Code slash commands (via `npx causantic init`) for
|
|
|
192
192
|
|
|
193
193
|
| Skill | Description |
|
|
194
194
|
|-------|-------------|
|
|
195
|
-
| `/causantic-recall [query]` |
|
|
196
|
-
| `/causantic-search [query]` |
|
|
197
|
-
| `/causantic-predict <context>` | Surface
|
|
198
|
-
| `/causantic-explain [question]` | Answer "why" questions
|
|
195
|
+
| `/causantic-recall [query]` | Reconstruct how something happened — walks backward through causal chains (how did we solve X?) |
|
|
196
|
+
| `/causantic-search [query]` | Broad discovery — find everything memory knows about a topic (what do I know about X?) |
|
|
197
|
+
| `/causantic-predict <context>` | Surface what came after similar past situations — walks forward through causal chains (what's likely relevant next?) |
|
|
198
|
+
| `/causantic-explain [question]` | Answer "why" questions using memory + codebase (why does X work this way?) |
|
|
199
199
|
| `/causantic-debug [error]` | Search for prior encounters with an error (auto-extracts from conversation if no argument) |
|
|
200
200
|
| `/causantic-resume` | Resume interrupted work — start-of-session briefing |
|
|
201
|
-
| `/causantic-reconstruct [time]` |
|
|
202
|
-
| `/causantic-summary [time]` |
|
|
201
|
+
| `/causantic-reconstruct [time]` | Replay a past session chronologically by time range |
|
|
202
|
+
| `/causantic-summary [time]` | Factual recap of what was done across recent sessions |
|
|
203
203
|
| `/causantic-list-projects` | Discover available projects in memory |
|
|
204
204
|
| `/causantic-status` | Check system health and memory statistics |
|
|
205
205
|
| `/causantic-crossref [pattern]` | Search across all projects for reusable patterns |
|
|
206
|
-
| `/causantic-retro [scope]` |
|
|
206
|
+
| `/causantic-retro [scope]` | Surface recurring patterns, problems, and decisions across sessions |
|
|
207
207
|
| `/causantic-cleanup` | Memory-informed codebase review and cleanup plan |
|
|
208
208
|
| `/causantic-forget [query]` | Delete memory by topic, time range, or session (always previews first) |
|
|
209
209
|
|
|
@@ -1330,24 +1330,24 @@ Long-term memory is available via the \`causantic\` MCP server.
|
|
|
1330
1330
|
### Skills
|
|
1331
1331
|
|
|
1332
1332
|
**Core retrieval:**
|
|
1333
|
-
- \`/causantic-recall [query]\` —
|
|
1334
|
-
- \`/causantic-search [query]\` —
|
|
1335
|
-
- \`/causantic-predict <context>\` — Surface
|
|
1333
|
+
- \`/causantic-recall [query]\` — Reconstruct how something happened — walks backward through causal chains (how did we solve X?)
|
|
1334
|
+
- \`/causantic-search [query]\` — Broad discovery — find everything memory knows about a topic (what do I know about X?)
|
|
1335
|
+
- \`/causantic-predict <context>\` — Surface what came after similar past situations — walks forward through causal chains (what's likely relevant next?)
|
|
1336
1336
|
|
|
1337
1337
|
**Understanding & analysis:**
|
|
1338
|
-
- \`/causantic-explain [question]\` — Answer "why" questions
|
|
1338
|
+
- \`/causantic-explain [question]\` — Answer "why" questions using memory + codebase (why does X work this way?)
|
|
1339
1339
|
- \`/causantic-debug [error]\` — Search for prior encounters with an error (auto-extracts from conversation if no argument)
|
|
1340
1340
|
|
|
1341
1341
|
**Session & project navigation:**
|
|
1342
|
-
- \`/causantic-resume\` — Resume interrupted work
|
|
1343
|
-
- \`/causantic-reconstruct [time range]\` —
|
|
1344
|
-
- \`/causantic-summary [time range]\` —
|
|
1342
|
+
- \`/causantic-resume\` — Resume interrupted work — start-of-session briefing
|
|
1343
|
+
- \`/causantic-reconstruct [time range]\` — Replay a past session chronologically by time range
|
|
1344
|
+
- \`/causantic-summary [time range]\` — Factual recap of what was done across recent sessions
|
|
1345
1345
|
- \`/causantic-list-projects\` — Discover available projects
|
|
1346
1346
|
- \`/causantic-status\` — Check system health and memory statistics
|
|
1347
1347
|
|
|
1348
1348
|
**Cross-cutting analysis:**
|
|
1349
1349
|
- \`/causantic-crossref [pattern]\` — Search across all projects for reusable patterns
|
|
1350
|
-
- \`/causantic-retro [scope]\` —
|
|
1350
|
+
- \`/causantic-retro [scope]\` — Surface recurring patterns, problems, and decisions across sessions
|
|
1351
1351
|
- \`/causantic-cleanup\` — Memory-informed codebase review and cleanup plan
|
|
1352
1352
|
|
|
1353
1353
|
**Memory management:**
|