checkpoint

Solid

Сохранить manual checkpoint текущей сессии в outputs/operations/handoff-archive/ без выполнения /compact. Используй когда хочешь зафиксировать состояние работы и иметь возможность вернуться позже с чистым контекстом. NEVER auto-trigger - вызывается ТОЛЬКО явной командой /checkpoint.

AI & Automation 10 stars 1 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 82/100

Stars 20%
35
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /checkpoint Save a manual session checkpoint without running `/compact` or clearing context. ## What this does - Writes ONE combined handoff file to `outputs/operations/handoff-archive/` - Updates pointer files at `outputs/operations/handoff-archive/.latest/{summary.md,prompt.md}` so the SessionStart inject hook picks them up next time - Does NOT run `/compact` - Does NOT clear the session - Does NOT continue implementation after writing - wait for the user to direct next action ## When to use - Soft / hard checkpoint offer fired (`Stop` hook surfaced 25%/30% threshold) - About to switch to an unrelated task, want resume-ready snapshot - Mid-implementation, want to save state before risky action - Long session approaching natural pause point ## Procedure ### Step 1 - Determine archive paths Use UTC timestamp `YYYY-MM-DD-HHMMSS`. Get it from: ```bash date -u +'%Y-%m-%d-%H%M%S' ``` Build the archive filename: ``` outputs/operations/handoff-archive/{stamp}_handoff_manual_{session-slug}.md ``` Where `session-slug` is a short safe slug from the current session id (or "session" if not derivable). Example: ``` outputs/operations/handoff-archive/2026-05-25-143052_handoff_manual_a4b2c1.md ``` ### Step 2 - Write the combined handoff file The file MUST contain these sections in order. Keep prose concise - this is for resume, not a report: ```markdown # Handoff - manual checkpoint Generated: {ISO UTC timestamp} Trigger: manual-checkpoint Session: {session id if known} ...

Details

Author
mishahanin
Repository
mishahanin/heading-os
Created
4 weeks ago
Last Updated
today
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category