.agents/skills/save-work-context/SKILL.md
Save current work context before ending a task or exiting the current work session. Use when the user asks to save context, save handoff notes, preserve progress for later, or prepare a resume file before stopping.
npx skillsauth add zsutxz/ClaudeLearning save-work-contextInstall 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.
Use this skill when the user wants the current task state written to disk so work can be resumed later with minimal friction.
Create a short, concrete handoff file that captures:
Prefer an existing project handoff/context directory if one already exists.
If none exists, write the file to:
{project-root}/.codex/handoffs/
Filename format:
YYYY-MM-DD-HHMM-current-work-context.md
Use local project time if available; otherwise use the current session time.
For this repository, you can automate save-on-exit with:
scripts/codex/save-work-context.ps1scripts/codex/start-codex-with-autosave.ps1Use the wrapper script to start Codex so a handoff file is always written when the process exits.
The saved file should contain these sections:
# Current Work Context
## Task
- One or two sentences describing the user's goal.
## Status
- Current state: not started / in progress / partially verified / blocked / completed.
- Short summary of what is already done.
## Files
- Relevant files touched, inspected, or expected to change.
## Changes Made
- Concrete edits already applied.
## Verification
- Commands run, tests executed, or checks performed.
- If nothing was verified, say so plainly.
## Open Items
- Remaining work, blockers, assumptions, or decisions still pending.
## Next Steps
1. The next action to take.
2. The next action after that.
3. Any follow-up verification needed.
## Resume Prompt
- A short prompt that another agent can use to continue from this exact state.
End the file with a compact resume prompt, for example:
Continue the task from this handoff file, inspect the listed files first, then complete the remaining next steps and verify the result.
If you want a starting structure, use:
assets/context-handoff-template.md
documentation
Splits large markdown documents into smaller, organized files based on level 2 (default) sections. Use if the user says perform shard document
development
Walk every branching path and boundary condition in content, report only unhandled edge cases. Orthogonal to adversarial review - method-driven not attitude-driven. Use when you need exhaustive edge-case analysis of code, specs, or diffs.
business
Perform a Cynical Review and produce a findings report. Use when the user requests a critical review of something
data-ai
Orchestrates group discussions between all installed BMAD agents, enabling natural multi-agent conversations. Use when user requests party mode.