Help us improve
Share bugs, ideas, or general feedback.
From claude-cognis
Saves architectural decisions, patterns, conventions, or project knowledge to personal or team Cognis persistent memory using node scripts.
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-saveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants to preserve architectural decisions, important patterns, conventions, or project knowledge for future sessions.
Saves key project knowledge explicitly to MEMORY.md via /si:remember for reliable recall. Checks duplicates, warns on size, suggests CLAUDE.md promotion.
Saves architectural decisions, bug fixes, design patterns, and implementation details from conversations to project memory for team reference.
Saves decisions, preferences, patterns, lessons, and project context to Claude Code's persistent memory directory as structured markdown files, with duplicate checks and index updates for cross-session recall.
Share bugs, ideas, or general feedback.
Use this skill when the user wants to preserve architectural decisions, important patterns, conventions, or project knowledge for future sessions.
Determine what the user wants to save.
Format the content clearly with context — include enough detail that the memory will be useful in future sessions.
Determine the scope:
save-project-memory.cjsadd-memory.cjsSave the memory using a bash command:
For personal memory:
node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs" "CONTENT HERE"
For team/project memory:
node "${CLAUDE_PLUGIN_ROOT}/scripts/save-project-memory.cjs" "CONTENT HERE"
For long content (over ~2000 chars), pipe via stdin instead:
echo "LONG CONTENT HERE" | node "${CLAUDE_PLUGIN_ROOT}/scripts/add-memory.cjs"
save-project-memory.cjs "We use JWT for authentication..."add-memory.cjs "User prefers tabs over spaces"save-project-memory.cjs "Payment API requires idempotency keys..."