원클릭으로
save
Snapshot current task state to MCP for cross-session persistence. Use when switching tasks or before ending a session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Snapshot current task state to MCP for cross-session persistence. Use when switching tasks or before ending a session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Commit all changes, push to remote, and open a pull request in one shot. The most common inner-loop workflow.
Clean start for a new task. Saves important decisions, clears context, and re-reads project config.
Resume work from a previous session. Reads MEMORY.md and continues autonomously.
Adversarial code review — stress-tests recent changes by hunting for bugs, edge cases, security holes, and design flaws. Spawns parallel attack agents, consolidates into a severity-rated report.
Debug and investigate issues — trace symptoms to root cause. Use when something is broken, a test fails mysteriously, or behavior is unexpected.
Prove that the current implementation works. Runs tests, diffs behavior, validates correctness. Use after implementing a feature or fix to verify before marking complete.
| name | save |
| description | Snapshot current task state to MCP for cross-session persistence. Use when switching tasks or before ending a session. |
| user_invocable | true |
| tools | Read, Write, Edit |
Store current working state to MCP and update MEMORY.md. No compaction — just persistence.
Scan conversation for deferred work (TODOs, issues to create, follow-ups)
Store structured snapshot to MCP:
mcp__context-store__store_context:
project: [project name]
category: "task-snapshot"
title: "[task description]"
content: |
TASK: [objective]
STATUS: [IN_PROGRESS / COMPLETE / BLOCKED]
DONE: [completed items]
ACTIVE: [current work]
NEXT: [remaining steps]
FILES: [modified paths]
DECISIONS: [choices with rationale]
DEFERRED: [identified but not acted on]
tags: "snapshot,[task-tag]"
Update MEMORY.md with current state, deferred work, and recovery pointer
Announce: "State saved. Recovery: search_context(query='snapshot,[task-tag]')"
Do NOT compact. Do NOT ask permission. Just save and report.