M

mem-search

by @thedotmackv
4.5(70)

搜索所有会话中的历史工作记录,提供搜索、过滤和获取的简单工作流,用于回顾过往信息,提升工作效率。

memory-searchknowledge-retrievalsemantic-searchinformation-managementai-searchGitHub
安装方式
npx skills add https://github.com/thedotmack/claude-mem --skill mem-search
compare_arrows

Before / After 效果对比

1
使用前

在没有有效搜索工具时,查找历史会话中的工作记录耗时费力,难以快速定位所需信息。这导致重复劳动,信息遗漏,严重影响工作效率和决策质量。

使用后

Mem Search提供简单的工作流,能高效搜索、过滤和获取所有会话中的历史工作记录。它极大提升了回顾过往信息的效率,帮助用户快速找到关键内容,优化工作流程。

SKILL.md

mem-search

Memory Search

Search past work across all sessions. Simple workflow: search -> filter -> fetch.

When to Use

Use when users ask about PREVIOUS sessions (not current conversation):

  • "Did we already fix this?"

  • "How did we solve X last time?"

  • "What happened last week?"

3-Layer Workflow (ALWAYS Follow)

NEVER fetch full details without filtering first. 10x token savings.

Step 1: Search - Get Index with IDs

Use the search MCP tool:

search(query="authentication", limit=20, project="my-project")

Returns: Table with IDs, timestamps, types, titles (~50-100 tokens/result)

| ID | Time | T | Title | Read |
|----|------|---|-------|------|
| #11131 | 3:48 PM | 🟣 | Added JWT authentication | ~75 |
| #10942 | 2:15 PM | 🔴 | Fixed auth token expiration | ~50 |

Parameters:

  • query (string) - Search term

  • limit (number) - Max results, default 20, max 100

  • project (string) - Project name filter

  • type (string, optional) - "observations", "sessions", or "prompts"

  • obs_type (string, optional) - Comma-separated: bugfix, feature, decision, discovery, change

  • dateStart (string, optional) - YYYY-MM-DD or epoch ms

  • dateEnd (string, optional) - YYYY-MM-DD or epoch ms

  • offset (number, optional) - Skip N results

  • orderBy (string, optional) - "date_desc" (default), "date_asc", "relevance"

Step 2: Timeline - Get Context Around Interesting Results

Use the timeline MCP tool:

timeline(anchor=11131, depth_before=3, depth_after=3, project="my-project")

Or find anchor automatically from query:

timeline(query="authentication", depth_before=3, depth_after=3, project="my-project")

Returns: depth_before + 1 + depth_after items in chronological order with observations, sessions, and prompts interleaved around the anchor.

Parameters:

  • anchor (number, optional) - Observation ID to center around

  • query (string, optional) - Find anchor automatically if anchor not provided

  • depth_before (number, optional) - Items before anchor, default 5, max 20

  • depth_after (number, optional) - Items after anchor, default 5, max 20

  • project (string) - Project name filter

Step 3: Fetch - Get Full Details ONLY for Filtered IDs

Review titles from Step 1 and context from Step 2. Pick relevant IDs. Discard the rest.

Use the get_observations MCP tool:

get_observations(ids=[11131, 10942])

ALWAYS use get_observations for 2+ observations - single request vs N requests.

Parameters:

  • ids (array of numbers, required) - Observation IDs to fetch

  • orderBy (string, optional) - "date_desc" (default), "date_asc"

  • limit (number, optional) - Max observations to return

  • project (string, optional) - Project name filter

Returns: Complete observation objects with title, subtitle, narrative, facts, concepts, files (~500-1000 tokens each)

Examples

Find recent bug fixes:

search(query="bug", type="observations", obs_type="bugfix", limit=20, project="my-project")

Find what happened last week:

search(type="observations", dateStart="2025-11-11", limit=20, project="my-project")

Understand context around a discovery:

timeline(anchor=11131, depth_before=5, depth_after=5, project="my-project")

Batch fetch details:

get_observations(ids=[11131, 10942, 10855], orderBy="date_desc")

Why This Workflow?

  • Search index: ~50-100 tokens per result

  • Full observation: ~500-1000 tokens each

  • Batch fetch: 1 HTTP request vs N individual requests

  • 10x token savings by filtering before fetching

Weekly Installs388Repositorythedotmack/claude-memGitHub Stars37.6KFirst SeenFeb 7, 2026Security AuditsGen Agent Trust HubPassSocketPassSnykPassInstalled onopencode375gemini-cli363codex360github-copilot338cursor328kimi-cli322

用户评价 (0)

发表评价

效果
易用性
文档
兼容性

暂无评价

统计数据

安装量8.3K
评分4.5 / 5.0
版本
更新日期2026年9月19日
对比案例1 组

用户评分

4.5(70)
5
27%
4
51%
3
20%
2
1%
1
0%

为此 Skill 评分

0.0

兼容平台

🔧Claude Code
🔧OpenClaw
🔧OpenCode
🔧Codex
🔧Gemini CLI
🔧GitHub Copilot
🔧Amp
🔧Kimi CLI

时间线

创建2026年3月17日
最后更新2026年9月19日
🎁 Agent 知识卡片
调研问卷