원클릭으로
memory-search
Search and retrieve information from pi-memory-md memory files. Use when you need to search memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search and retrieve information from pi-memory-md memory files. Use when you need to search memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Digest recent tape anchors and session context into curated pi-memory-md memories when tape mode is enabled. Use only with tape mode enabled when the user asks to summarize recent work, extract learnings, preserve decisions, convert tape/session history into memory, or review recent intent for durable memory updates.
Initialize memory repository - clone git repo and create directory structure. Use when you need to set up pi-memory-md for the first time or initalize project's memory files.
Import durable knowledge from URLs, folders, or files into pi-memory-md. Use when the user asks to preserve external content as memory.
Create or update pi-memory-md memory files using the native write/edit tools plus the bundled template script. Use whenever writing, creating, or updating memory files.
Git synchronization operations for pi-memory-md repository. Use when you need to sync memory.
| name | memory-search |
| description | Search and retrieve information from pi-memory-md memory files. Use when you need to search memory. |
Search memory files with multi-mode search capability.
Automatically searches tags and descriptions based on query:
memory_search(query="typescript")
For complex content search with standard grep:
memory_search({
query: "project",
grep: "typescript|javascript"
})
For smarter search with ripgrep (smart case, better regex):
memory_search({
query: "project",
rg: "typescript|javascript"
})
| Parameter | Tool | Best For |
|---|---|---|
grep | GNU grep | Portable, universal |
rg | ripgrep | Smart case, faster, better regex |
memory_search(query="user")
memory_search({
query: "project",
grep: "architecture|component|module"
})
memory_search({
query: "typescript",
rg: "typescript|javascript"
})
memory_search({
query: "api",
grep: "\\bAPI\\b"
})
memory_search({
query: "project",
grep: "pattern1",
rg: "pattern2"
})
memory-management - Read and write filesmemory-sync - Git synchronizationmemory-init - Initial repository setup