원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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"