Search memory files for keywords, patterns, or categories. Returns structured results grouped by file with context.
From context-keepernpx claudepluginhub swannysec/context-keeper --plugin context-keeperThis skill uses the workspace's default tool permissions.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Uses ctx7 CLI to fetch current library docs, manage AI coding skills (install/search/generate), and configure Context7 MCP for AI editors.
Search across memory files for keywords, patterns, or past decisions. Returns structured results grouped by file with line numbers and category tags.
Parse the user's invocation to extract the query and any flags:
/memory-search <query>
/memory-search --global <query>
/memory-search --sessions <query>
/memory-search --category <name> <query>
Flags can appear in any order relative to the query.
Run the search script via Bash:
bash "${CLAUDE_PLUGIN_ROOT:-$(git rev-parse --show-toplevel 2>/dev/null || echo .)}/tools/memory-search.sh" <parsed-args>
Pass the query and any flags (--global, --sessions, --category <name>) directly to the script.
Note: The corrections queue (.claude/memory/corrections-queue.md) is included in default project memory search scope.
--category, mention which category was usedIf the script returns "No results found", suggest broadening the search:
--global — include global memory (~/.claude/memory/)--sessions — include session history files (last 30 days)--category — if category filtering was used, try without it/memory-search "token budget"
/memory-search --global "naming convention"
/memory-search --sessions "authentication bug"
/memory-search --category decision "database"
/memory-search --category pattern --global "error handling"