원클릭으로
aim-save
Manually save current session to memory
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manually save current session to memory
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Detect content drift of an operator's scaffolded sanctum files (BOND, CAPABILITIES, CREED, INDEX, LORE, MEMORY, PERSONA, PULSE) against the evolving reference templates, and surface recommended add/remove WITH rationale — never a silent overwrite. Use on a session-start drift check, after the reference templates change, or when the operator asks whether their sanctum is current.
Check ai-memory system status and collection stats
Check ai-memory system status and collection stats
Manually save current session context to ai-memory
Search ai-memory for relevant stored memories
Search ai-memory for relevant stored memories
| name | aim-save |
| description | Manually save current session to memory |
| allowed-tools | Bash |
Save the current session context to the AI Memory system's discussions
collection. This creates a type=session entry that can be retrieved by
SessionStart on future session resume or by /aim-search.
The save-memory command runs the manual_save_memory.py script using the project's configured AI Memory installation.
# Save with a description (recommended)
"$AI_MEMORY_INSTALL_DIR/.venv/bin/python" "$AI_MEMORY_INSTALL_DIR/.claude/hooks/scripts/manual_save_memory.py" \
"Completed authentication refactor, decided on JWT approach"
# Save without description
"$AI_MEMORY_INSTALL_DIR/.venv/bin/python" "$AI_MEMORY_INSTALL_DIR/.claude/hooks/scripts/manual_save_memory.py"
The script stores to the discussions collection with:
When --type agent_memory or --type agent_insight is used, the memory is stored
via store_agent_memory() to the Parzival namespace with agent_id=parzival.
This requires Parzival to be enabled (parzival_enabled=true in config).
If Parzival is not enabled, the command returns an error.
# Default behavior (unchanged)
/aim-save "Completed authentication refactor"
# Save as agent memory (general project knowledge)
/aim-save "The decay formula uses 0.7/0.3 weighting" --type agent_memory
# Save as agent insight (key learning or pattern)
/aim-save "PyYAML not in test deps caused CI failures" --type agent_insight
These are set automatically in settings.json by the installer:
# Save decision context
/aim-save "Decided to use Qdrant for vector storage over Pinecone due to self-hosting requirement"
# Save progress checkpoint
/aim-save "Completed 3 of 5 API endpoints, auth middleware working"
# Quick save without description
/aim-save
# Save as agent memory (general project knowledge)
/aim-save "The decay formula uses 0.7/0.3 weighting" --type agent_memory
# Save as agent insight (key learning or pattern)
/aim-save "PyYAML not in test deps caused CI failures" --type agent_insight