super-search

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Super Search

超级搜索

Search Supermemory for past coding sessions, decisions, and saved information.
搜索Supermemory中的过往编码会话、决策和已保存信息。

How to Search

搜索方法

Run the search script with the user's query and optional scope flag:
bash
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" [--user|--repo|--both] "USER_QUERY_HERE"
运行搜索脚本,传入用户查询内容和可选的范围标志:
bash
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
  • --both
    (默认):并行搜索团队成员的个人会话记忆和项目记忆
  • --user
    :跨会话搜索个人/用户记忆
  • --repo
    :跨团队成员搜索项目/代码库记忆

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 we implement auth" (project-specific):
    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --repo "authentication implementation"
  • User asks "what are my coding preferences":
    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --user "coding preferences style"
  • 用户询问“我昨天做了什么工作”:
    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" "work yesterday recent activity"
  • 用户询问“我们是如何实现认证功能的”(项目特定):
    bash
    node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --repo "authentication implementation"
  • 用户询问“我的编码偏好是什么”:
    bash
    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.
脚本会输出带有时间戳和相关度评分的格式化记忆结果。向用户清晰展示这些结果,如有需要,可提供使用不同关键词重新搜索的选项。