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/dist/index.js CHANGED
@@ -2944,6 +2944,20 @@ Required reading:
2944
2944
 
2945
2945
  Repository rules override model preferences. If instructions conflict, stop and report the conflict.
2946
2946
 
2947
+ ## Recall OS commands
2948
+
2949
+ This repository is maintained with the Recall OS CLI. Use these commands yourself as you work \u2014 do not
2950
+ ask the human to run them, and do not search the web for them (this is a project-local tool):
2951
+
2952
+ - \`recall doctor\` \u2014 validate repository memory; run it before claiming any work is complete.
2953
+ - \`recall feature create <name>\` \u2014 scaffold feature memory before non-trivial feature work.
2954
+ - \`recall adr create <title>\` \u2014 propose a decision; \`recall adr accept <name>\` accepts it.
2955
+ - \`recall adr supersede <old> <new-title>\` \u2014 record a changed decision (never overwrite an accepted ADR).
2956
+ - \`recall module create <name>\` \u2014 scaffold module memory for a new responsibility boundary.
2957
+ - \`recall mcp add <server>\` \u2014 capture an MCP tool's context into memory, offline.
2958
+
2959
+ Full command reference: \`docs/ai/RECALL_COMMANDS.md\`.
2960
+
2947
2961
  ## Changing an accepted decision
2948
2962
 
2949
2963
  Before changing anything an accepted ADR governs (framework, database, auth, API shape, and similar):
@@ -2997,6 +3011,11 @@ Before non-trivial work:
2997
3011
  Source-of-truth order: accepted ADRs and repository decisions, then architecture docs, engineering
2998
3012
  standards, the current PRD, security and testing docs, module docs, feature plans, then chat history.
2999
3013
 
3014
+ Recall OS commands \u2014 use these yourself (do not web-search this project-local CLI): \`recall doctor\`,
3015
+ \`recall feature create <name>\`, \`recall adr create <title>\` then \`recall adr accept <name>\`,
3016
+ \`recall adr supersede <old> <new-title>\`, \`recall module create <name>\`, \`recall mcp add <server>\`.
3017
+ Full reference: \`docs/ai/RECALL_COMMANDS.md\`.
3018
+
3000
3019
  Before claiming work is complete, run \`recall doctor\` and fix reported errors.
3001
3020
  `
3002
3021
  },
@@ -3532,7 +3551,7 @@ function renderSessionStartHook() {
3532
3551
  adrs=$(ls docs/adrs/ADR-*.md 2>/dev/null | sed 's|.*/||;s|\\.md$||' | tr '\\n' ' ')
3533
3552
  modules=$(ls -d docs/30-modules/*/ 2>/dev/null | sed 's|docs/30-modules/||;s|/$||' | tr '\\n' ' ')
3534
3553
 
3535
- 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."
3554
+ 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."
3536
3555
 
3537
3556
  printf '{"hookSpecificOutput":{"hookEventName":"SessionStart","additionalContext":"%s"}}\\n' "$context"
3538
3557
  `;