From cman
Searches and summarizes past Claude Code sessions, plans, and memory across all projects. Handles recaps by time period, keyword searches, and provides resume commands. (Deprecated: use /remember)
How this skill is triggered — by the user, by Claude, or both
Slash command
/cman:cm-searchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Deprecation:** Prefer **`/remember`** ([remember skill](../remember/SKILL.md)). The **`cm-search`** skill name will be removed in a future release.
Deprecation: Prefer
/remember(remember skill). Thecm-searchskill name will be removed in a future release.
Search and summarize past Claude Code sessions, plans, and memory across all projects. The remember skill delegates here for the full instructions.
If $ARGUMENTS is non-empty (e.g. /remember FOO BAR), join the tokens into the search keyword and follow the Search flow. Do not ask the user to repeat the query.
First, gather data by calling these tools in parallel:
mcp__plugin_cman_cman__list_sessions with limit=200mcp__plugin_cman_cman__list_plansmcp__plugin_cman_cman__list_memoryThen use the results to generate output. This skill searches across ALL projects by default. Determine what the user needs from context:
/remember)$ARGUMENTS when providedmcp__plugin_cman_cman__search_sessions with the keyword
include_memory=true when the user may have stored relevant notesexclude_subagents=true to skip sub-agent noise (default for targeted searches)search_sessions calls with alternate forms (e.g. English and Japanese: Scan / スキャン, or DynamoDB / dynamo) and merge the resultsAlways include claude --resume <id> for sessions the user might want to continue.
Rephrase raw prompts into brief work descriptions (e.g., "@README.md" → "README editing").
npx claudepluginhub laiso/cman --plugin cmanSearches past Claude Code work across all projects via /remember [keywords] or queries about sessions, recaps, and prior outputs.
Searches and recalls previous Claude Code conversation sessions by querying a local SQLite FTS5 index or JSONL log files.