Software_development_department save-state
install
source · Clone the upstream repo
git clone https://github.com/tranhieutt/software_development_department
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tranhieutt/software_development_department "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/save-state" ~/.claude/skills/tranhieutt-software-development-department-save-state && rm -rf "$T"
manifest:
.claude/skills/save-state/SKILL.mdsource content
Dump the current working context into
production/session-state/active.md as a session checkpoint, AND write an atomic per-task checkpoint to .tasks/checkpoints/[task_id].md when a task ID is provided.
Session checkpoint is automatically read by
session-start.sh at the next session start and surfaced by pre-compact.sh before context compaction.
Per-task checkpoints are used by /resume-from [task_id] to restore granular cognitive state at the exact point of failure.
Steps
1. Parse arguments
Parse
$ARGUMENTS to extract:
- task_id (optional): First token matching pattern
or a word without spaces (e.g.^\d{3}
,042
). If present, an atomic checkpoint will be written.auth-api - note (optional): Remaining text after task_id, used as a note.
2. Gather context
Before writing anything, collect the following from the current conversation and working state:
- Current task: What is the primary task being worked on right now?
- agent_id: Which agent is currently executing (e.g.
,backend-developer
)?qa-tester - Progress: What has been completed in this session? List key milestones.
- Decisions made: What architectural, design, or implementation decisions were made? (These are the most important to preserve.)
- Files modified: Run
to get the current working tree state.git diff --name-only && git diff --staged --name-only && git ls-files --others --exclude-standard - output_snapshot: A concise snapshot of the last significant output — last file written, last test result, last API response shape, or last command output.
- Open questions: What is unresolved or blocked?
- Next step: What is the very next action to take when resuming.
If a
note was parsed from $ARGUMENTS, append it to the "Notes" section.
2. Extract Durable Memory (Native System)
Are there any lessons learned, coding patterns established, constraints added, or technical decisions made in this session that apply globally to the project? If so, before writing active.md, extract them to the
.claude/memory/ directory:
- Write or update a specific topic file (e.g.
orproject_tech_decisions.md
), ensuring it has the required YAML frontmatter (feedback_rules.md
,name
,description
).type - Update
with a pointer to that file if it's not already listed..claude/memory/MEMORY.md
3. Write production/session-state/active.md
production/session-state/active.mdOverwrite the file with this structure:
# Session State > Saved: [ISO timestamp] > Branch: [current git branch] ## Current Task [One sentence describing what is being worked on] <!-- STATUS --> Epic: [epic name or leave blank] Feature: [feature name or leave blank] Task: [specific task or leave blank] <!-- /STATUS --> ## Progress (This Session) [Bulleted list of what was completed] ## Key Decisions Made [Bulleted list — include the decision AND the rationale. These survive context loss.] ## Files Being Actively Worked On [List of files currently modified or in progress] ## Open Questions / Blockers [List of unresolved items. Mark with [BLOCKED] if waiting on someone.] ## Next Step [The single most important next action to take when resuming] ## Notes [$ARGUMENTS if provided, otherwise omit this section]
4. Write Atomic Checkpoint (only if task_id was provided)
If a
task_id was parsed in Step 1, write .tasks/checkpoints/[task_id].md:
--- task_id: [task_id] agent_id: [agent currently executing] saved_at: [ISO timestamp] status: in_progress retry_count: 0 backoff_next_s: 2 --- # Checkpoint: [task_id] ## Output Snapshot [Concise snapshot of the last significant output — last file written, last test result, last command output, or last API response shape. Max 10 lines.] ## Completed Steps [Bulleted list of sub-steps already done within this task] ## Next Step [The exact next action to resume from — be specific enough that a cold-start agent can continue] ## Open Questions [Unresolved items blocking progress, if any] ## Files Modified [List of files touched so far in this task]
5. Confirm
Print:
✅ Session state saved → production/session-state/active.md [If task checkpoint written]: ✅ Atomic checkpoint saved → .tasks/checkpoints/[task_id].md [If memory was extracted]: ✅ Durable memories updated → .claude/memory/MEMORY.md To resume this task: /resume-from [task_id] To resume session: read production/session-state/active.md first
When to run /save-state
/save-state- Before
or starting a new unrelated task/clear - When context usage feels high (>60%)
- After completing a major milestone (phase, feature, design section)
- Before ending a work session
- When
warns about no active session statepre-compact.sh - After any agent failure — pass the
to create a recoverable checkpointtask_id
The
hook automatically detects and previewssession-start.shat the start of each new session. Theactive.mdhook reads it before compaction to inject it into the summary. Usepre-compact.shto recover a specific task without re-reading the full session./resume-from [task_id]