一键导入
recall
Search mempalace for past observations, sessions, and learnings about a topic
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search mempalace for past observations, sessions, and learnings about a topic
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Diagnose mempalace setup (config, palace path, MCP, FTS/index health)
List or inspect people/project entities tracked in the mempalace graph
Mine a project directory into the mempalace corpus (drawers, rooms, wings)
Hybrid search over the mempalace corpus (BM25 + vectors + optional graph)
Show mempalace palace status (drawers, wings, rooms, health)
Trace a file, function, or line back to the agent session that produced its current commit
| name | recall |
| description | Search mempalace for past observations, sessions, and learnings about a topic |
| argument-hint | [search query] |
| user-invocable | true |
The user wants to recall past context about: $ARGUMENTS
Call memory_smart_search with the user's query (limit 10).
Retrieve context from past sessions so the agent can answer accurately without hallucinating.
memory_smart_search with query from $ARGUMENTS and limit: 10.importance >= 7.WRONG -- making up observations to fill gaps:
// No results from tool, but agent fabricates "I recall we discussed X"
RIGHT -- honest empty state with suggestions:
// No results found. Try: "deployment config", "build system", "cli flags"
WRONG -- ignoring the limit parameter:
// Calling memory_smart_search without limit, getting hundreds of results
RIGHT -- using explicit limit:
memory_smart_search({"query": "config file parsing", "limit": 10})
If memory_smart_search is not available:
/plugin list in Claude Code, confirm mempalace is enabled..mcp.json is only read on startup)./mcp to see if the mempalace MCP server is connected.See
_shared/TROUBLESHOOTING.mdandEXAMPLES.mdfor more.