Help us improve
Share bugs, ideas, or general feedback.
From claude-cognis
Searches Cognis memory for past work, sessions, architectural decisions, and team knowledge using user/repo scopes via Node script.
npx claudepluginhub lyzr-cognis/claude-cognis --plugin claude-cognisHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-cognis:cognis-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user asks about past work, previous sessions, what was discussed before, or team knowledge.
Searches personal and project coding memories for past sessions, implementations, decisions, and preferences via Node script. Useful for queries on prior work or activity.
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
Searches claude-mem's persistent cross-session memory database using MCP tools in 3-step workflow: index search, timeline context, detail fetch. For recalling prior sessions.
Share bugs, ideas, or general feedback.
Use this skill when the user asks about past work, previous sessions, what was discussed before, or team knowledge.
Determine what the user wants to find. Formulate a clear search query.
Choose the scope:
--user for personal memories (what the user worked on)--repo for team/project knowledge (shared across team)--both for both (default, best for broad queries)Run the search:
node "${CLAUDE_PLUGIN_ROOT}/scripts/search-memory.cjs" --both "SEARCH QUERY"
search-memory.cjs --user "recent work session"search-memory.cjs --both "authentication architecture"search-memory.cjs --repo "bug fixes"