causantic 0.6.0 → 0.6.1
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-templates.d.ts","sourceRoot":"","sources":["../../src/cli/skill-templates.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,aAAa;IAC5B,6CAA6C;IAC7C,OAAO,EAAE,MAAM,CAAC;IAChB,qDAAqD;IACrD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,gBAAgB,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"skill-templates.d.ts","sourceRoot":"","sources":["../../src/cli/skill-templates.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,aAAa;IAC5B,6CAA6C;IAC7C,OAAO,EAAE,MAAM,CAAC;IAChB,qDAAqD;IACrD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,gBAAgB,EAAE,aAAa,EAuyC3C,CAAC;AAEF;;;GAGG;AACH,wBAAgB,uBAAuB,IAAI,MAAM,CAoGhD"}
|
|
@@ -9,18 +9,18 @@ export const CAUSANTIC_SKILLS = [
|
|
|
9
9
|
dirName: 'causantic-recall',
|
|
10
10
|
content: `---
|
|
11
11
|
name: causantic-recall
|
|
12
|
-
description: "
|
|
12
|
+
description: "Walk causal chains in Causantic memory to reconstruct how something happened. Use for topic-specific questions like 'how did we solve X?' or 'what led to this decision?' — NOT for 'what did we do last/recently' (use reconstruct or resume for that)."
|
|
13
13
|
argument-hint: [query]
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
# Recall Past Context
|
|
17
17
|
|
|
18
|
-
Use the \`recall\` MCP tool from \`causantic\` to
|
|
18
|
+
Use the \`recall\` MCP tool from \`causantic\` to trace causal chains for specific topics or decisions.
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
21
|
|
|
22
22
|
\`\`\`
|
|
23
|
-
/causantic-recall
|
|
23
|
+
/causantic-recall how did we solve the auth bug?
|
|
24
24
|
/causantic-recall authentication implementation decisions
|
|
25
25
|
/causantic-recall that migration bug we fixed last week
|
|
26
26
|
\`\`\`
|
|
@@ -29,23 +29,28 @@ Use the \`recall\` MCP tool from \`causantic\` to look up specific context from
|
|
|
29
29
|
|
|
30
30
|
Pass these to the \`recall\` MCP tool:
|
|
31
31
|
|
|
32
|
-
- **query** (required):
|
|
32
|
+
- **query** (required): A specific topic, decision, or problem to trace
|
|
33
33
|
- **project**: Filter to a specific project slug (use \`/causantic-list-projects\` to discover names)
|
|
34
34
|
|
|
35
35
|
## When to Use
|
|
36
36
|
|
|
37
|
-
- User asks
|
|
38
|
-
-
|
|
37
|
+
- User asks HOW something was solved or WHY a decision was made
|
|
38
|
+
- Looking up a specific topic, pattern, or decision from past sessions
|
|
39
39
|
- Encountering an error or pattern that might have been solved before
|
|
40
|
-
- User references something from a previous session
|
|
41
40
|
- Before saying "I don't have context from previous sessions" — always try recall first
|
|
42
41
|
|
|
42
|
+
## When NOT to Use
|
|
43
|
+
|
|
44
|
+
- **"What did we do last?"** / **"What were we working on?"** / **"Show me recent work"** → use \`reconstruct\` or \`resume\` instead (recall is semantic, not time-ordered)
|
|
45
|
+
- **"Where did I leave off?"** → use \`resume\`
|
|
46
|
+
|
|
43
47
|
## Guidelines
|
|
44
48
|
|
|
45
49
|
- \`recall\` walks causal chains to reconstruct narrative — use it when you need the story of how something happened
|
|
50
|
+
- \`recall\` is semantic, NOT time-ordered — it returns whatever matches best regardless of recency
|
|
46
51
|
- \`search\` ranks results by semantic relevance — use it for broad discovery ("what do I know about X?")
|
|
52
|
+
- For temporal queries ("recently", "last session", "yesterday"), always use \`reconstruct\` or \`resume\`
|
|
47
53
|
- Use the \`project\` parameter to scope results to the current project when relevant
|
|
48
|
-
- Combine both: \`search\` to discover, then \`recall\` to fill in the narrative
|
|
49
54
|
`,
|
|
50
55
|
},
|
|
51
56
|
{
|
|
@@ -1362,12 +1367,16 @@ Long-term memory is available via the \`causantic\` MCP server.
|
|
|
1362
1367
|
| User intent | Skill |
|
|
1363
1368
|
|-------------|-------|
|
|
1364
1369
|
| "What do I know about X?" | \`search\` |
|
|
1365
|
-
| "How did we solve X?" | \`recall\` |
|
|
1370
|
+
| "How did we solve X?" / "What led to this decision?" | \`recall\` |
|
|
1366
1371
|
| "Why does X work this way?" | \`explain\` |
|
|
1367
1372
|
| "What might be relevant?" | \`predict\` |
|
|
1368
1373
|
| "What happened recently?" / "Show me recent work" | \`reconstruct\` |
|
|
1374
|
+
| "What were we looking at last?" / "What did we do?" | \`reconstruct\` or \`resume\` |
|
|
1375
|
+
| "Where did I leave off?" | \`resume\` |
|
|
1369
1376
|
| "Forget/delete memory about X" | \`forget\` |
|
|
1370
1377
|
|
|
1378
|
+
**Key distinction:** \`recall\` is semantic (finds best topic match regardless of time). \`reconstruct\`/\`resume\` are time-ordered (finds most recent work). For any question about "last", "recent", or "latest" → use \`reconstruct\` or \`resume\`, never \`recall\`.
|
|
1379
|
+
|
|
1371
1380
|
### Proactive Memory Usage
|
|
1372
1381
|
|
|
1373
1382
|
**Check memory automatically (no skill needed) when:**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-templates.js","sourceRoot":"","sources":["../../src/cli/skill-templates.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,MAAM,CAAC,MAAM,gBAAgB,GAAoB;IAC/C;QACE,OAAO,EAAE,kBAAkB;QAC3B,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"skill-templates.js","sourceRoot":"","sources":["../../src/cli/skill-templates.ts"],"names":[],"mappings":"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"}
|