一键导入
memory-search
Search memory files for keywords, patterns, or categories. Returns structured results grouped by file with context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search memory files for keywords, patterns, or categories. Returns structured results grouped by file with context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
View and modify ConKeeper memory configuration settings. Use to adjust token budget, output style, and other preferences after memory initialization.
Initialize the file-based memory system for the current project. Creates the directory structure and starter files. Use when starting organized work on a new project.
Analyze session friction trends, success rates, and satisfaction patterns across sessions using Claude Code facets data. Read-only query tool for on-demand trend analysis.
Session retrospection using After Action Review methodology. Analyzes corrections, observations, and session activity to produce improvement recommendations. Use at end of sessions or after /memory-sync.
Search memory files for keywords, patterns, or categories. Returns structured results grouped by file with context.
Synchronize current session state to memory files. Reviews conversation, updates relevant files, and confirms changes. Use at end of sessions or when significant progress has been made.
基于 SOC 职业分类
| name | memory-search |
| description | Search memory files for keywords, patterns, or categories. Returns structured results grouped by file with context. |
Search across memory files for keywords, patterns, or past decisions. Returns structured results grouped by file with line numbers and category tags.
Parse the user's invocation to extract the query and any flags:
/memory-search <query>
/memory-search --global <query>
/memory-search --sessions <query>
/memory-search --category <name> <query>
/memory-search --cross-project <query>
/memory-search --cross-project --category <name> <query>
Flags can appear in any order relative to the query.
Run the search script via Bash:
bash "<conkeeper-path>/tools/memory-search.sh" <parsed-args>
Where <conkeeper-path> is the ConKeeper installation directory (typically found via git rev-parse --show-toplevel or the directory containing the tools/ folder).
Pass the query and any flags (--global, --sessions, --category <name>) directly to the script.
--category, mention which category was usedIf the script returns "No results found", suggest broadening the search:
--global — include global memory (~/.claude/memory/)--sessions — include session history files (last 30 days)--category — if category filtering was used, try without it/memory-search "token budget"
/memory-search --global "naming convention"
/memory-search --sessions "authentication bug"
/memory-search --category decision "database"
/memory-search --category pattern --global "error handling"
/memory-search --cross-project "authentication"
/memory-search --cross-project --category decision "database"