بنقرة واحدة
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