Saves architectural decisions, patterns, conventions, or project knowledge to personal or team Cognis persistent memory using node scripts.
From claude-cognisnpx claudepluginhub lyzr-cognis/claude-cognis --plugin claude-cognisThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Configures VPN and dedicated connections like Direct Connect, ExpressRoute, Interconnect for secure on-premises to AWS, Azure, GCP, OCI hybrid networking.
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..."