checkpoint

Solid

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

AI & Automation 11 stars 1 forks Updated 2 days ago Apache-2.0

Install

View on GitHub

Quality Score: 82/100

Stars 20%
36
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 FOUR pointer files: this session's pair under `.latest/{session-slug}/{summary.md,prompt.md}`, which the SessionStart inject hook reads, and the shared pair at `.latest/{summary.md,prompt.md}`, which `/next` reads as "the newest handoff in this workspace" - 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 the context 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 0 - Handle a switch argument first Split `$ARGUMENTS` on whitespace. If the FIRST token is exactly `auto` or exactly `unattended`, this is a switch. It is not a checkpoint. Anything else is a note, including a word that merely begins with one of them. Match the whole token, never a prefix. Run one of these, then stop. Do not write any file. ```bash python scripts/checkpoint-paths.py --auto on python scripts/checkpoint-paths.py --auto off python scripts/checkpoint-paths.py --auto status python scripts/checkpoint-paths.py --unattended on python scripts/checkpoint-paths.py --unattended...

Details

Author
mishahanin
Repository
mishahanin/heading-os
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category