From claude-cognis
Searches Cognis memory for past work, sessions, architectural decisions, and team knowledge using user/repo scopes via Node script.
How 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.
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"npx claudepluginhub lyzr-cognis/claude-cognis --plugin claude-cognisSearches persistent cross-session memory database (claude-mem) to retrieve past work, decisions, and context. Use when user asks about prior sessions or solutions.
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.