mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 05:02:07 +00:00
1.6 KiB
1.6 KiB
| name | description |
|---|---|
| memory-search | Search and retrieve information from pi-memory-md memory files |
Memory Search
Use this skill to find information stored in pi-memory-md memory files.
Search Types
Search by Content
Search within markdown content:
memory_search(query="typescript", searchIn="content")
Returns matching files with content excerpts.
Search by Tags
Find files with specific tags:
memory_search(query="user", searchIn="tags")
Best for finding files by category or topic.
Search by Description
Find files by their frontmatter description:
memory_search(query="identity", searchIn="description")
Best for discovering files by purpose.
Common Search Patterns
| Goal | Command |
|---|---|
| User preferences | memory_search(query="user", searchIn="tags") |
| Project info | memory_search(query="architecture", searchIn="description") |
| Code style | memory_search(query="typescript", searchIn="content") |
| Reference docs | memory_search(query="reference", searchIn="tags") |
Search Tips
- Case insensitive:
typescriptandTYPESCRIPTwork the same - Partial matches:
authmatches "auth", "authentication", "author" - Be specific: "JWT token validation" > "token"
- Try different types: If content search fails, try tags or description
When Results Are Empty
- Check query spelling
- Try different
searchIntype - List all files:
memory_list() - Sync repository:
memory_sync(action="pull")
Related Skills
memory-management- Read and write filesmemory-sync- Ensure latest datamemory-init- Setup repository