con un clic
checkpoint
Save session snapshot — handoff + CLAUDE.md update.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Save session snapshot — handoff + CLAUDE.md update.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Query/store cross-project knowledge in Shared Brain.
Create a standardized git commit.
Debug a bug — reproduce, isolate root cause, fix.
End session — handoff + decisions + CLAUDE.md.
Time-boxed SENAR investigation before a task.
Socratic Q&A — ≤3 questions before a complex task.
| name | checkpoint |
| description | Save session snapshot — handoff + CLAUDE.md update. |
| effort | fast |
| context | inline |
Quick context save without ending the session. When to use: After completing a task or step, before large operations, every 30-50 tool calls.
vs /end: No session end, no commit prompt. ~4 tool calls vs ~8.
Run in parallel (prefer MCP tools, CLI as fallback):
tausik_session_current MCP tooltausik_task_list MCP tool with status=activetausik_status MCP toolgit branch --show-currentT1.6 (token-tier1): memory_block is intentionally NOT re-injected on
/checkpoint. The block was already loaded on/startand lives in the conversation context. Repeating it on every checkpoint burns ~600 tokens per call without adding new information. Usetausik_memory_searchif you need a targeted lookup mid-session.
SENAR Rule 9.2: If status shows a session duration warning — tell the user prominently:
"Session has been running for X min (limit: Y min). Consider wrapping up with /end."
Build handoff JSON and save via tausik_session_handoff with handoff={...}:
{
"completed": ["task-slug-1: brief description"],
"in_progress": [{"slug": "task-slug-2", "state": "step 3 of 5"}],
"key_files": ["scripts/file1.py"],
"dead_ends": [],
"next_steps": ["Continue task-slug-2"],
"warnings": ["Note for next checkpoint"]
}
Use tausik_update_claudemd MCP tool to refresh the dynamic section.
Tell the user: "Checkpoint saved. Context preserved for session continuity." If session duration warning was shown, reiterate it.
Suggest next: "Continue with current task, or /end to wrap up the session."
That's it. No session close, no commit prompt, no memory saves. Keep it fast.