Agent Skillszilliztech/memsearch › memory-recall

memory-recall

GitHub

通过 memsearch 检索历史会话、决策及调试笔记等上下文,以增强 AI 对过往项目知识的理解。适用于需回溯历史背景或确认既往结论的场景。

plugins/codex/skills/memory-recall/SKILL.md zilliztech/memsearch

Trigger Scenarios

用户询问过往决策或历史对话内容 系统注入 Memory available 提示 需要参考过去的调试记录或项目知识

Install

npx skills add zilliztech/memsearch --skill memory-recall -g -y
More Options

Non-standard path

npx skills add https://github.com/zilliztech/memsearch/tree/main/plugins/codex/skills/memory-recall -g -y

Use without installing

npx skills use zilliztech/memsearch@memory-recall

指定 Agent (Claude Code)

npx skills add zilliztech/memsearch --skill memory-recall -a claude-code -g -y

安装 repo 全部 skill

npx skills add zilliztech/memsearch --all -g -y

预览 repo 内 skill

npx skills add zilliztech/memsearch --list

SKILL.md

Frontmatter
{
    "name": "memory-recall",
    "description": "Search and recall relevant memories from past sessions via memsearch. Use when the user's question could benefit from historical context, past decisions, debugging notes, previous conversations, or project knowledge -- especially questions like 'what did I decide about X', 'why did we do Y', or 'have I seen this before'. Also use when you see `[memsearch] Memory available` hints injected via SessionStart or UserPromptSubmit. Typical flow: search for 3-5 chunks, expand the most relevant, optionally deep-drill into original transcripts via the anchor format. Skip when the question is purely about current code state (use Read\/Grep), ephemeral (today's task only), or the user has explicitly asked to ignore memory."
}

You are performing memory retrieval for memsearch. Search past memories and return the most relevant context to the current conversation.

Project Collection

Determine the collection name by running:

bash -c 'if [ -n "${MEMSEARCH_DIR:-}" ]; then bash __INSTALL_DIR__/scripts/derive-collection.sh "$MEMSEARCH_DIR"; else root=$(git rev-parse --show-toplevel 2>/dev/null || true); if [ -n "$root" ]; then bash __INSTALL_DIR__/scripts/derive-collection.sh "$root"; else bash __INSTALL_DIR__/scripts/derive-collection.sh; fi; fi'

Steps

  1. Search: Run memsearch search "<query>" --top-k 5 --json-output --collection <collection name from above> to find relevant chunks.

    • If memsearch is not found, try uvx memsearch instead.
    • Choose a search query that captures the core intent of the user's question.
  2. Evaluate: Look at the search results. Skip chunks that are clearly irrelevant or too generic.

  3. Expand: For each relevant result, get the full context using one of these methods:

    • Primary: Run memsearch expand <chunk_hash> --collection <collection name from above> to get the full markdown section.
    • Fallback (if expand fails with a lock/permission error due to sandbox): Read the source file directly. The search results include source (file path) and start_line/end_line — use cat <source_file> or read the relevant line range to get the full context. This avoids the Milvus lock file issue.
  4. Deep drill (optional): If an expanded chunk contains transcript anchors (HTML comments with session/rollout info), and the original conversation seems critical:

    • Run bash __INSTALL_DIR__/scripts/parse-rollout.sh <rollout_path> to retrieve the original conversation turns.
    • If the anchor format is unfamiliar (e.g. transcript: + turn:, db: instead of rollout:), try reading the referenced file directly to explore its structure and locate the relevant conversation by the session or turn identifiers in the anchor.
  5. Return results: Output a curated summary of the most relevant memories. Be concise — only include information that is genuinely useful for the user's current question.

When unsure what to search

If the user's question is vague or you can't form a concrete search query, explore the raw markdown first — it is the source of truth for memory:

  • MDIR="${MEMSEARCH_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)/.memsearch}"; ls -t "$MDIR/memory/" | head -10 — recent daily logs
  • MDIR="${MEMSEARCH_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)/.memsearch}"; grep -h "^## " "$MDIR/memory/"*.md | sort -u | tail -40 — session headings across all days
  • MDIR="${MEMSEARCH_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)/.memsearch}"; cat "$MDIR/memory/<YYYY-MM-DD>.md" — read a specific day

Once a concrete topic jumps out, go back to memsearch search with a specific query.

Output Format

Organize by relevance. For each memory include:

  • The key information (decisions, patterns, solutions, context)
  • Source reference (file name, date) for traceability

If nothing relevant is found, simply say "No relevant memories found."

Version History

  • 8cec40e Current 2026-07-24 20:49

Same Skill Collection

plugins/claude-code/skills/memory-config/SKILL.md
plugins/claude-code/skills/memory-to-skill/SKILL.md
plugins/codex/skills/memory-config/SKILL.md
plugins/codex/skills/memory-to-skill/SKILL.md
plugins/openclaw/skills/memory-config/SKILL.md
plugins/openclaw/skills/memory-to-skill/SKILL.md
plugins/opencode/skills/memory-config/SKILL.md
plugins/opencode/skills/memory-to-skill/SKILL.md
plugins/claude-code/skills/memory-recall/SKILL.md
plugins/openclaw/skills/memory-recall/SKILL.md
plugins/opencode/skills/memory-recall/SKILL.md

Metadata

Files
0
Version
31e8a67
Hash
3ce660d8
Indexed
2026-07-24 20:49

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-22 01:22
浙ICP备14020137号-1 $방문자$