Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

memory-search记忆搜索

Agent Skill

memory-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

665

周安装

28

GitHub Stars

25

下载量

233
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:memory-search(记忆搜索)
来源仓库:https://github.com/oimiragieo/agent-studio
仓库路径:skills/memory-search
安装命令:
npx skills add https://github.com/oimiragieo/agent-studio --skill memory-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill memory-search

简介

memory-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从仓库中提取线索的场景。
  • 通过 npx skills add 命令从 GitHub 安装,结合原始 README 核验具体用法。
  • 安装前需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Memory Search

Step 1: Formulate a Focused Query

Identify the specific knowledge gap before invoking. Good queries target a concrete decision, pattern, or error — not a broad topic.

Good queries:

  • "JWT refresh token rotation pattern"
  • "Windows path normalization in hooks"
  • "BM25 index rebuild performance"
  • "agent spawning without task_id error"

Bad queries (too broad):

  • "authentication" — too generic, returns noise
  • "everything about routing" — unfocused
  • "what have we done before" — meaningless for semantic search

Step 2: Run the Search

Invoke via the Bash tool:

node .claude/lib/memory/memory-search.cjs "your focused search query"

Full invocation:

node .claude/lib/memory/memory-search.cjs "JWT refresh token rotation pattern"

Step 3: Parse the Output

The output format is:

Found N results for: "<query>"

[<source-file>] Similarity: XX.X%
<200-character content preview>...

[<source-file>] Similarity: YY.Y%
<200-character content preview>...

Example real output:

Found 3 results for: "JWT refresh token rotation pattern"

[learnings.md] Similarity: 87.3%
JWT refresh tokens must be stored in httpOnly cookies to prevent XSS. See ADR-045 for detailed rationale and trade-offs vs localStorage approach...

[decisions.md] Similarity: 74.1%
ADR-045: JWT over sessions chosen for stateless architecture. Refresh token rotation every 15 minutes. Invalidate on logout via token blocklist...

[issues.md] Similarity: 61.2%
Known issue: JWT expiry not propagated to frontend — workaround in auth.middleware.ts line 47 until ADR-045 Phase 2 is implemented...

Step 4: Interpret Similarity Scores

SimilarityInterpretationAction
>80%Highly relevant — directly matches the queryRead the full source file for complete context
60–80%Likely relevant — related topic or adjacent patternSkim and use if applicable
40–60%Possibly relevant — tangentially relatedUse judgment, may be noise
<40%Probably not relevantDiscard unless nothing better exists

Step 5: Follow Up on High-Similarity Results

For results with similarity >60%, read the full source file to get untruncated content:

# Results showed [decisions.md] Similarity: 87.3%
# Follow up with:
Read({ file_path: '.claude/context/memory/decisions.md' })

Or search for the specific ADR/pattern by keyword:

node .claude/lib/memory/memory-search.cjs "ADR-045 JWT"

Step 6: Handle Zero Results

If Found 0 results, try:

  1. Rephrase the query using synonyms or the actual error message text
  2. Broaden slightly — e.g., "JWT authentication" instead of "JWT RS256 key rotation"
  3. Check memory files directly if the topic is recent and may not yet be indexed

Zero results means the knowledge is either not yet documented or the query was too specific.

Step 7: Apply or Document Findings

  • If result confirms known approach: proceed with confidence; cite the source in your reasoning.
  • If result reveals a better approach: update your plan to align with the documented pattern.
  • If result reveals a known issue/workaround: apply the workaround immediately rather than discovering it yourself.
  • If nothing useful found: continue with your best judgment; document your decision afterward to Memory Protocol.

</execution_process>

<best_practices>

  1. Run early, not late: Memory search at the START of a task prevents wasted effort. Running it after you have already made decisions is too late to benefit.
  2. One query per knowledge gap: Don't batch all your unknowns into one query. Run targeted queries for each specific gap.
  3. Use the actual error message as the query: If you hit an error, search for the error message text verbatim — it often finds a documented workaround.
  4. Results are pointers, not canonical sources: Always follow up by reading the full source file when similarity is >70%. The 200-char preview is not the complete record.
  5. After a session gap or context compression: Always run memory-search to re-establish current state before proceeding. Context may have been lost.
  6. Cross-agent knowledge sync: Before duplicating an analysis another agent might have done, search memory. The result may already be documented.

</best_practices>

At the start of a long task or after a context compression event:

# What are the current known issues in this area?
node .claude/lib/memory/memory-search.cjs "hook execution errors"

# What patterns have been established for this domain?
node .claude/lib/memory/memory-search.cjs "routing table keyword patterns"

# Any decisions I should be aware of?
node .claude/lib/memory/memory-search.cjs "agent model selection ADR"

</usage_example>

<usage_example title="Debugging — check for known workarounds">

When stuck on an error:

# Search for the exact error message
node .claude/lib/memory/memory-search.cjs "Unable to locate module.exports insertion point"

# Or describe the symptom
node .claude/lib/memory/memory-search.cjs "routing table update fails silently"

If a result appears with >70% similarity, the error has been seen before and may have a documented fix. </usage_example>

<usage_example title="Before making an architectural decision">

Before choosing between two approaches:

# What was decided previously about this tradeoff?
node .claude/lib/memory/memory-search.cjs "ESM vs CJS module format decision"

# Are there ADRs for this pattern?
node .claude/lib/memory/memory-search.cjs "async hook pattern ADR"

If a relevant ADR is found, follow it rather than re-litigating the decision. </usage_example>

<usage_example title="Cross-agent knowledge retrieval">

When you need to know what another agent discovered:

# What did the reflection agent find recently?
node .claude/lib/memory/memory-search.cjs "reflection agent findings skills gap"

# What did the security audit reveal?
node .claude/lib/memory/memory-search.cjs "security audit prompt injection findings"

</usage_example>

Iron Laws

  1. ALWAYS run memory-search before assuming no prior context exists. Never claim "there's no documented pattern for this" without first running a targeted search.
  2. NEVER use memory-search results as canonical ground truth. They are summaries and previews. Always read the full source for decisions with material consequences.
  3. NEVER skip memory-search because "I already know about this." Stale in-session assumptions are the primary cause of inconsistent multi-agent behavior.
  4. ALWAYS run multiple targeted queries, not one broad one. A single broad query misses specific matches. Two or three focused queries are more effective.
  5. NEVER run memory-search with a query longer than ~10 words. Over-specified queries degrade similarity matching. Extract the key concept.

Anti-Patterns

Anti-PatternWhy It FailsCorrect Approach
"everything about auth" broad queryToo generic — returns unrelated noise"JWT refresh token rotation"
Skipping search because "context is fresh"In-session context is NOT the same as memoryAlways search at task start
Treating 200-char preview as full recordPreview truncates at 200 chars — critical detail may be cutFollow up with Read on the source file
Running search AFTER making the decisionMemory lookup must happen before your design choiceSearch first, decide second
Single query for multiple unknownsOne query can't cover multiple semantic dimensionsRun one query per knowledge gap
Ignoring <60% results entirelySometimes tangential info is still actionableSkim low-similarity results before discarding

Error Handling

ErrorCauseResolution
Usage: node.claude/lib/memory/memory-search.cjs "search query"Query argument missingAlways pass a quoted query string
Search failed: <error message>Memory manager unavailable or index not builtCheck .claude/lib/memory/memory-manager.cjs and ensure memory system is initialized
Found 0 resultsQuery too specific or topic not yet documentedRephrase query; fall back to direct file search
Very slow response (>3s)Vector similarity computation on cold indexExpected on first call; subsequent calls are faster

Integration Patterns

Mandatory Pre-Task Pattern (All Agents)

Every agent should run memory-search at task start for any non-trivial work:

# Pattern: topic-scoped recall before starting
node .claude/lib/memory/memory-search.cjs "known patterns for <your task domain>"
node .claude/lib/memory/memory-search.cjs "known issues in <your task area>"

Error Recovery Pattern

When any tool or command fails unexpectedly:

# Paste the error message directly as the query
node .claude/lib/memory/memory-search.cjs "<exact error text>"

Decision Gate Pattern

Before any architectural decision:

# Check for existing ADRs on this topic
node .claude/lib/memory/memory-search.cjs "ADR <decision topic>"

Cross-Session Continuity Pattern

At the start of any continued session (especially after context compression):

node .claude/lib/memory/memory-search.cjs "recent decisions <project area>"
node .claude/lib/memory/memory-search.cjs "current known issues"
node .claude/lib/memory/memory-search.cjs "last session learnings"

When to Use

TriggerQuery StrategyExpected Benefit
Long-running session — context may be stale"<domain> recent decisions"Re-sync with documented state
New error encountered"<exact error message>"Find documented workaround
Before architectural decision"ADR <topic>" or "<decision> trade-off"Avoid re-litigating settled decisions
After context compression"<current task domain>"Restore working context
Cross-agent handoff"<previous agent task> findings"Continue from where other agent left off
Before writing a new pattern"<pattern name> existing"Avoid duplicating documented guidance

Memory Protocol (MANDATORY)

Before starting:

node .claude/lib/memory/memory-search.cjs "memory-search usage patterns"

After completing:

  • New search pattern discovered → .claude/context/memory/learnings.md
  • Memory index issue found → .claude/context/memory/issues.md
  • Decision about when to use memory-search → .claude/context/memory/decisions.md
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen. This skill exists to recover from exactly that situation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.98%
按下载量换算88

Claude

28.26%
按下载量换算66

Cursor

17.96%
按下载量换算42

Gemini CLI

9.65%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills