Files
echo-v.05/echo-memory.plugin.src/commands/echo-save.md
T
Jason Stedwell 2fc3a0a80b ver-0.7
2026-06-19 21:12:14 -05:00

1.1 KiB

description, argument-hint
description argument-hint
Save to ECHO memory — route content to its canonical home (search-first, idempotent) [what to remember]

Use the echo-memory skill to persist this to the ECHO vault:

$ARGUMENTS

Follow the skill's write discipline exactly:

  1. Route via references/routing-map.md (the canonical map). If no path fits, capture to inbox/captures/inbox.md.
  2. Search-first for any new slug-addressed note (slug AND human title) before creating — merge/promote instead of duplicating.
  3. Write through the bundled client so the call is status-checked and idempotent:
ECHO="${CLAUDE_PLUGIN_ROOT}/skills/echo-memory/scripts/echo.sh"
"$ECHO" append inbox/captures/inbox.md "- $(date +%F): <entry>"      # idempotent capture
"$ECHO" put <routed/path>.md  <bodyfile>                              # create/overwrite (verifies)
"$ECHO" patch <path>.md append heading "<H1::Sub>" <bodyfile>        # targeted append
  1. Write in third person about Jason; set agent_written: true + source_notes; never put [[wikilinks]] in frontmatter; bump updated: only on substantive changes.