.claude/skills/aget-save-state/SKILL.md
Save workflow state for resume/recovery. Use at natural breakpoints before context-intensive operations, major refactors, or session interruptions.
npx skillsauth add aget-framework/template-executive-aget aget-save-stateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are saving workflow state for session continuity.
Renamed: /aget-checkpoint → /aget-save-state per S-V-O naming convention (L584) and Microsoft Agent Framework "State" grounding.
$ARGUMENTS
| Input Pattern | Mode | Behavior | |---------------|------|----------| | Empty or blank | Auto-name | Generate timestamp-based checkpoint name (YYYYMMDD-HHMMSS) | | Text provided | Named | Use provided name (sanitized: lowercase, hyphens for spaces) |
Create checkpoint file at sessions/checkpoints/<name>.checkpoint.yaml:
Session Context:
sessions/)Active Tasks:
Artifacts:
Resume Prompt:
Write this YAML structure to sessions/checkpoints/<name>.checkpoint.yaml:
checkpoint:
name: "<name>"
created: "<ISO 8601 timestamp>"
agent: "private-cli-aget"
version: "3.4.0"
context:
session_file: "<path or null>"
current_focus: "<1-2 sentence summary of current work>"
active_tasks:
- subject: "<task description>"
status: "in_progress|pending"
pending_questions:
- "<unanswered question or decision needed>"
artifacts:
modified_files:
- path: "<file path>"
summary: "<brief description of changes>"
uncommitted_changes: true|false
resume_prompt: |
Continue from checkpoint "<name>".
Context: <summary of where you left off>
Next action: <recommended next step>
These are INVIOLABLE - you MUST NOT violate these constraints:
specs/, governance/, or .aget/planning/RESEARCH_BACKLOG.mdsessions/checkpoints/sessions/checkpoints/ directory if it doesn't existPer AGET theoretical grounding:
This skill implements the "save state, resume later" pattern for AGET session management.
| Link | Reference | |------|-----------| | Vocabulary | Checkpoint_Protocol (CLI_VOCABULARY.md v1.30.0) | | Requirements | R-SKILL-005-001 through R-SKILL-005-011 | | Skill Spec | SKILL-005 | | L-docs | L570, L574, L575 | | RQ | RQ-054 | | Project | PROJECT_PLAN_AGET_CHECKPOINT_SKILL.md |
testing
End AGET session with state capture and sanity checks
tools
Initialize AGET session with status briefing
development
Research a topic across the knowledge base before implementation. Searches L-docs, patterns, PROJECT_PLANs, SOPs, and governance for relevant context.
testing
Mid-flight review of active project plans. Assesses gate progress, V-test completion, blockers, and recommendations. Use to evaluate project health.