AgentSkillsCN

super-search

检索你的编码记忆。适用于用户询问过往工作、先前会话、某项功能的实现方式、此前从事过哪些工作,或希望回溯早期会话中的相关信息时。

SKILL.md
--- frontmatter
name: super-search
description: 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.
allowed-tools: Bash(node:*)

Super Search

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

How to Search

Run the search script with the user's query:

bash
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" "USER_QUERY_HERE"

Replace USER_QUERY_HERE with what the user is searching for.

Examples

  • User asks "what did I work on yesterday":

    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" "work yesterday recent activity"
    
  • User asks "how did I implement auth":

    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" "authentication implementation"
    

Present Results

The script outputs formatted memory results. Present them clearly to the user and offer to search again with different terms if needed.