← ClaudeAtlas

pauselisted

Stops current work on user request, captures full session state to project docs, and generates a resume prompt so the next session can continue without loss. Use when: "пауза", "стоп", "остановись", "stop", "pause", "подожди", "притормози", "сохрани прогресс", "прервись", "halt"
stepanenkoviktor0110-boop/ai-dev-methodology · ★ 1 · AI & Automation · score 60
Install: claude install-skill stepanenkoviktor0110-boop/ai-dev-methodology
# Pause — Save State and Stop Capture current session state and prepare a resume prompt. After this skill activates, stop all ongoing work and output only the checkpoint and resume prompt. ## Step 1: Locate Feature Context Scan `work/` for an active feature directory: - Check `work/*/logs/checkpoint.yml` — if `last_completed_wave` > 0 or tasks are `in_progress` → this is the active feature - If multiple candidates → pick the one with the most recent file modification If no feature found → ad-hoc mode (no `work/` structure). Skip to Step 3. ## Step 2: Read Project Documentation Read these files from the feature directory (they are the authoritative source of state): 1. `work/{feature}/logs/checkpoint.yml` — current wave, session, next_wave 2. `work/{feature}/tasks/*.md` (frontmatter only) — task statuses: `planned` / `in_progress` / `done` / `done_with_concerns` 3. `work/{feature}/decisions.md` — what was actually completed and committed 4. `work/{feature}/logs/session-plan.md` (if exists) — session boundaries From these files derive: - **Completed tasks:** status `done` or `done_with_concerns`, has decisions.md entry - **In-flight tasks:** status `in_progress`, no decisions.md entry yet (subagent working or interrupted) - **Remaining tasks:** status `planned` - **Current wave and session** Run `git status --short` to get uncommitted files. **Checkpoint:** Active feature directory identified (or ad-hoc mode confirmed). checkpoint.yml, task statuses, decisions.md read