recall-os 0.3.0 → 0.3.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.
package/README.md CHANGED
@@ -46,6 +46,10 @@ them.
46
46
  the repo, not trapped in an agent's context window.
47
47
  - **A gate, not just docs.** `recall doctor` is deterministic and returns an exit code, so "is this
48
48
  work actually finished and consistent?" becomes a check you can run in a hook or CI.
49
+ - **Decisions change safely.** When a decision changes, `recall adr supersede` records it (the old
50
+ ADR is marked superseded, the new one links back) and Doctor flags any memory still citing the old
51
+ one — so the trail stays auditable instead of silently contradicted. The generated agent rules
52
+ even carry the CLI commands inline, so your AI tool uses them itself.
49
53
  - **Architecture-neutral by design.** Recall OS records and protects _your_ decisions. It never
50
54
  silently picks a framework, database, or pattern for you.
51
55
  - **Local-first and private.** No network calls, no telemetry, no AI API calls, no remote templates.
@@ -116,6 +120,7 @@ git config core.hooksPath .recall/hooks
116
120
  | `recall adr supersede <old> <new>` | Record a changed decision: mark the old ADR superseded by a new accepted ADR. |
117
121
  | `recall module create <name>` | Scaffold module memory (ownership, boundaries, tests). |
118
122
  | `recall skill create <name>` | Generate a portable AI agent skill (Claude + Agent Skills). |
123
+ | `recall skill list` | List the built-in agent skill catalog. |
119
124
  | `recall mcp add <server>` | Generate offline, proposed memory for an MCP server. |
120
125
  | `recall doctor` | Validate memory health, evidence, and drift. |
121
126
 
package/dist/cli.js CHANGED
@@ -2946,6 +2946,20 @@ Required reading:
2946
2946
 
2947
2947
  Repository rules override model preferences. If instructions conflict, stop and report the conflict.
2948
2948
 
2949
+ ## Recall OS commands
2950
+
2951
+ This repository is maintained with the Recall OS CLI. Use these commands yourself as you work \u2014 do not
2952
+ ask the human to run them, and do not search the web for them (this is a project-local tool):
2953
+
2954
+ - \`recall doctor\` \u2014 validate repository memory; run it before claiming any work is complete.
2955
+ - \`recall feature create <name>\` \u2014 scaffold feature memory before non-trivial feature work.
2956
+ - \`recall adr create <title>\` \u2014 propose a decision; \`recall adr accept <name>\` accepts it.
2957
+ - \`recall adr supersede <old> <new-title>\` \u2014 record a changed decision (never overwrite an accepted ADR).
2958
+ - \`recall module create <name>\` \u2014 scaffold module memory for a new responsibility boundary.
2959
+ - \`recall mcp add <server>\` \u2014 capture an MCP tool's context into memory, offline.
2960
+
2961
+ Full command reference: \`docs/ai/RECALL_COMMANDS.md\`.
2962
+
2949
2963
  ## Changing an accepted decision
2950
2964
 
2951
2965
  Before changing anything an accepted ADR governs (framework, database, auth, API shape, and similar):
@@ -2999,6 +3013,11 @@ Before non-trivial work:
2999
3013
  Source-of-truth order: accepted ADRs and repository decisions, then architecture docs, engineering
3000
3014
  standards, the current PRD, security and testing docs, module docs, feature plans, then chat history.
3001
3015
 
3016
+ Recall OS commands \u2014 use these yourself (do not web-search this project-local CLI): \`recall doctor\`,
3017
+ \`recall feature create <name>\`, \`recall adr create <title>\` then \`recall adr accept <name>\`,
3018
+ \`recall adr supersede <old> <new-title>\`, \`recall module create <name>\`, \`recall mcp add <server>\`.
3019
+ Full reference: \`docs/ai/RECALL_COMMANDS.md\`.
3020
+
3002
3021
  Before claiming work is complete, run \`recall doctor\` and fix reported errors.
3003
3022
  `
3004
3023
  },
@@ -3534,7 +3553,7 @@ function renderSessionStartHook() {
3534
3553
  adrs=$(ls docs/adrs/ADR-*.md 2>/dev/null | sed 's|.*/||;s|\\.md$||' | tr '\\n' ' ')
3535
3554
  modules=$(ls -d docs/30-modules/*/ 2>/dev/null | sed 's|docs/30-modules/||;s|/$||' | tr '\\n' ' ')
3536
3555
 
3537
- context="Recall OS repository memory is the source of truth over chat history. Before non-trivial work, read AGENTS.md and the docs it routes to; repository rules override model preference. Accepted ADRs (docs/adrs/): \${adrs:-none yet}. Modules (docs/30-modules/): \${modules:-none yet}. Run 'recall doctor' before claiming work complete."
3556
+ context="Recall OS repository memory is the source of truth over chat history. Before non-trivial work, read AGENTS.md and the docs it routes to; repository rules override model preference. Accepted ADRs (docs/adrs/): \${adrs:-none yet}. Modules (docs/30-modules/): \${modules:-none yet}. Use the Recall OS CLI commands listed in AGENTS.md (recall feature/adr/module create, recall adr accept and supersede, recall doctor) yourself; do not web-search them. Run 'recall doctor' before claiming work complete."
3538
3557
 
3539
3558
  printf '{"hookSpecificOutput":{"hookEventName":"SessionStart","additionalContext":"%s"}}\\n' "$context"
3540
3559
  `;