원클릭으로
memory-save
Save current session context to claude-mem
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Save current session context to claude-mem
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Invoke and resume YAML-defined pipelines by name — /pipeline auto-dev runs the full release pipeline
Full Self Driving — autonomous release loop that processes all auto-dev-eligible GitHub issues until none remain, by repeatedly running /pipeline auto-dev then /homework.
On explicit /homework invocation, analyze the current and linked previous sessions, extract mistakes (찐빠), and report them via omcustom-feedback with a confirmation gate. Auto-activation on session cleanup/session-end signals is OPT-IN (default OFF) — requires an explicit project/user directive. Use when explicitly auditing recent work for harness gaps.
hada.io RSS feed monitoring for AI agent/harness articles with automated /scout analysis
Pre-action boundary checking — validates agent tool calls against declared capabilities and task contracts
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
| name | memory-save |
| description | Save current session context to claude-mem |
| scope | core |
| argument-hint | [--tags <tags>] [--include-code] |
| disable-model-invocation | true |
| user-invocable | true |
Save current session context to claude-mem for persistence across context compaction.
--tags, -t Additional tags for the memory
--include-code Include code changes in the save
--summary, -s Custom summary (otherwise auto-generated)
--verbose, -v Show detailed save information
1. Collect session context
├── Tasks completed
├── Decisions made
├── Open items
└── Code changes (if --include-code)
2. Format with metadata
├── project: my-project
├── session: {date}-{uuid}
├── tags: [session, ...user_tags]
└── created_at: {timestamp}
3. Store in claude-mem
└── chroma_add_documents
4. Report result
project: my-project
session: {date}-{uuid}
tags: [session, task, decision]
content:
summary: Brief description of session context
tasks_completed: List of completed tasks
decisions: Key decisions made
open_items: Unfinished work
[sys-memory-keeper:save]
Saving session context...
Context collected:
Tasks: 3 completed
Decisions: 2 recorded
Open items: 1 pending
Metadata:
Project: my-project
Session: 2025-01-24-a1b2c3d4
Tags: [session, task, decision]
[Done] Session context saved successfully.
Memory ID: mem_abc123
[sys-memory-keeper:save --tags "authentication,oauth"]
Saving session context...
Metadata:
Project: my-project
Session: 2025-01-24-a1b2c3d4
Tags: [session, task, decision, authentication, oauth]
[Done] Session context saved successfully.
Memory ID: mem_abc123
[sys-memory-keeper:save --verbose]
Collecting session context...
Tasks Completed:
1. Implemented OAuth flow
2. Added JWT token validation
3. Created authentication middleware
Decisions Made:
1. Use RS256 for JWT signing
Rationale: Better security for distributed systems
2. Token expiry: 1 hour
Rationale: Balance security and user experience
Open Items:
1. Refresh token implementation
Status: In progress
Saving to claude-mem...
Document content:
## Session Summary
Date: 2025-01-24
...
[Done] Session context saved.
Memory ID: mem_abc123