Searches personal and project coding memories for past sessions, implementations, decisions, and preferences via Node script. Useful for queries on prior work or activity.
From claude-supermemorynpx claudepluginhub supermemoryai/claude-supermemory --plugin claude-supermemoryThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Search Supermemory for past coding sessions, decisions, and saved information.
Run the search script with the user's query and optional scope flag:
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" [--user|--repo|--both] "USER_QUERY_HERE"
--both (default): Search both personal session and project memories across team members in parallel--user: Search personal/user memories across sessions--repo: Search project/repo memories across team membersUser asks "what did I work on yesterday":
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" "work yesterday recent activity"
User asks "how did we implement auth" (project-specific):
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --repo "authentication implementation"
User asks "what are my coding preferences":
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --user "coding preferences style"
The script outputs formatted memory results with timestamps and relevance scores. Present them clearly to the user and offer to search again with different terms if needed.