Enables retrieval of historical session data and past implementation details.

Install

mkdir -p .claude/skills/super-search && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2192" && unzip -o skill.zip -d .claude/skills/super-search && rm skill.zip

Installs to .claude/skills/super-search

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Search your coding memory. Use when user asks about past work, previous sessions, how something was implemented, what they worked on before, or wants to recall information from earlier sessions.
194 chars✓ has a “when” trigger
Beginner

Key capabilities

  • Search personal session memories
  • Search project-specific repository memories
  • Retrieve coding preferences
  • Output formatted memory results with timestamps

How it works

The skill executes a search script against stored coding sessions and project history using specific scope flags to filter results.

Inputs & outputs

You give it
User query and scope flag
You get back
Formatted memory results with relevance scores

When to use super-search

  • Recall previous implementation logic
  • Find info from past sessions
  • Review what was worked on before

About this skill

Supermemory Search

Search Supermemory for past coding sessions, decisions, and saved information.

How to Search

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"

Scope Flags

  • --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 members

Examples

  • User 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"
    

Present Results

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.

When not to use it

  • When searching outside of coding memory scope

Limitations

  • Limited to stored coding memory

How it compares

It provides a programmatic interface to recall past work states rather than relying on manual search through chat logs.

Compared to similar skills

super-search side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
super-search (this skill)102moReviewBeginner
braindump75moNo flagsBeginner
mem-search83moNo flagsIntermediate
baoyu-danger-x-to-markdown22moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry