一键导入
cognis-save
Save important information, architectural decisions, patterns, or project knowledge to Cognis persistent memory.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Save important information, architectural decisions, patterns, or project knowledge to Cognis persistent memory.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Persistent memory and context for AI agents using Cognis by Lyzr. Use this skill when the user mentions "remember this", "what did I work on", "save this for later", "team knowledge", "project context", "recall", "memory", or needs long-term memory across sessions. Also use when the user asks about past decisions, preferences, or prior conversations. Supports personal memory (per-user), team memory (shared across repo contributors), semantic search, and automatic context assembly.
Persistent memory and context for AI agents using Cognis by Lyzr. Use this skill when the user mentions "remember this", "what did I work on", "save this for later", "team knowledge", "project context", "recall", "memory", or needs long-term memory across sessions. Also use when the user asks about past decisions, preferences, or prior conversations. Supports personal memory (per-user), team memory (shared across repo contributors), semantic search, and automatic context assembly.
Search your memory for past work, previous sessions, architectural decisions, and team knowledge stored in Cognis.
| name | cognis-save |
| description | Save important information, architectural decisions, patterns, or project knowledge to Cognis persistent memory. |
| version | 1.0.0 |
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..."