一键导入
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