← ClaudeAtlas

recalllisted

Agent-facing recall: return slug citations and bounded snippets as untrusted fallible context.
devgirishattri/agent-plugins · ★ 0 · AI & Automation · score 72
Install: claude install-skill devgirishattri/agent-plugins
# Recall Run only the accepted helper workflow below and return its formatted result or the shortest actionable failure. ## Instructions Resolve `PLUGIN_ROOT` from this selected skill's installed absolute source path: it is the directory two levels above this `SKILL.md`. Substitute that absolute path literally in every helper invocation below; never infer it from the project working directory or hardcode a marketplace cache version. `recall` is the agent-facing wrapper over `search`: same ranking, a fixed human/agent-readable envelope instead of TSV/JSON. Read-only. Run exactly one literal Bash segment (no `export`/`env`/assignment prefix, no chaining/piping/redirection): ``` bash "<PLUGIN_ROOT>/scripts/memory-search.sh" --recall [--store <path>] [--limit N] '<query>' ``` Build the query from `the user's arguments`: - Pass `--store <path>` only if the user supplied one; otherwise omit it. - Pass `--limit <n>` only if the user asked for a specific result count (default 10, hard cap 50). - Recall never takes `--json` — do not add it. - **Always wrap the query text itself in single quotes**, verbatim as typed — including any `"quoted phrase"` syntax or a trailing `*` prefix wildcard (same query grammar as `search`: implicit AND, quoted phrase, trailing-`*` prefix, no OR/NOT). If the query itself contains a single quote, tell the user that's not supported in v1. Exit codes: `0` success (including zero hits); `2` invalid query — relay the stderr usage line; `3` the store co