skills/ai-maestro/memory-search/SKILL.md
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we discuss", "remember when", "find previous conversation", "check history", or before starting work to recall prior decisions.
npx skillsauth add thimslugga/agent-skills memory-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search your conversation history using semantic, keyword, and symbol matching. Recall past decisions, discussions, and context across sessions. Part of the AI Maestro suite.
Requires AI Maestro running locally. Memory indexing uses CozoDB for vector search.
# Install memory tools
git clone https://github.com/23blocks-OS/ai-maestro-plugins.git
cd ai-maestro-plugins && ./install-memory-tools.sh
Before starting any task, search memory for relevant context:
Receive instruction -> Search memory -> Then proceed
| Command | Description |
|---------|-------------|
| memory-search.sh "<query>" | Hybrid search (recommended) |
| memory-search.sh "<query>" --mode semantic | Find conceptually related |
| memory-search.sh "<query>" --mode term | Exact text matching |
| memory-search.sh "<query>" --mode symbol | Code symbol matching |
| memory-search.sh "<query>" --role user | Only user messages |
| memory-search.sh "<query>" --role assistant | Only assistant messages |
| Mode | Best For |
|------|----------|
| hybrid (default) | General search, most cases |
| semantic | Related concepts, different wording |
| term | Exact function/class names |
| symbol | Code identifiers across contexts |
# User asks to continue previous work
memory-search.sh "authentication"
# Find a specific component discussion
memory-search.sh "PaymentService" --mode term
# Find related design discussions
memory-search.sh "error handling patterns" --mode semantic
# Find code symbol references
memory-search.sh "processPayment" --mode symbol
For complete context, pair with docs-search and graph-query:
memory-search.sh "feature" # What did we discuss?
docs-search.sh "feature" # What do docs say?
graph-describe.sh ComponentName # What is the structure?
This skill is part of the AI Maestro platform, which provides 6 skills for AI agent orchestration: messaging, memory, docs, graph, planning, and agent management.
development
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
development
Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.
development
Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts/render_docx.py` for visual checks.
documentation
Create a README.md file for the project