원클릭으로
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.