← ClaudeAtlas

searchlisted

Deterministic lexical ranked search over the memory store (read-only).
devgirishattri/agent-plugins · ★ 0 · Data & Documents · score 72
Install: claude install-skill devgirishattri/agent-plugins
# Search 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. `memory-search.sh` is read-only: it never writes to the store. Run exactly one literal Bash segment (no `export`/`env`/assignment prefix, no chaining/piping/redirection): ``` bash "<PLUGIN_ROOT>/scripts/memory-search.sh" [--store <path>] [--limit N] [--json] '<query>' ``` Build the query from `the user's arguments`: - Pass `--store <path>` only if the user supplied one; otherwise omit it and let the script resolve the store itself (explicit target > `KNOWLEDGE_MEMORY_HOME` > canonical discovery under `.agents/memory/`). - Pass `--limit <n>` only if the user asked for a specific result count (default 10, hard cap 50). - Pass `--json` only if the user wants the raw JSON object instead of the default TSV rows. - **Always wrap the query text itself in single quotes**, verbatim as the user typed it — including any `"quoted phrase"` syntax or a trailing `*` prefix wildcard. The script implements its own tiny query language (`"..."` = phrase, trailing `*` = prefix, whitespace-separated terms = implicit AND, no OR/NOT); single-quoting the whole quer