save — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited save (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Save work-in-progress and push to remote repository. Unlike /master-plan:done, this keeps the task status as IN PROGRESS — perfect for:
/master-plan:save - Main commandRun these commands to show what changed:
git status
git diff --statDisplay a summary of modified files to the user.
Use AskUserQuestion to gather:
Then ask in plain text: "What's a brief summary of the progress? (1-2 sentences)"
IMPORTANT: Wait for user to provide the summary before proceeding.
If the user wants to add progress notes:
### section in MASTER_PLAN.mdFormat:
**Progress (YYYY-MM-DD):** [summary of what was done]Keep status as IN PROGRESS — do NOT change to DONE.
Stage all changed files EXCEPT:
.env* files (secrets)node_modules/, __pycache__/, target/, .venv/.DS_Store, Thumbs.db)Prefer staging specific files by name over git add -A.
Create a WIP commit:
With task ID:
git commit -m "$(cat <<'EOF'
wip(TASK-XXX): progress summary
Co-Authored-By: Claude <[email protected]>
EOF
)"Without task ID:
git commit -m "$(cat <<'EOF'
wip: progress summary
Co-Authored-By: Claude <[email protected]>
EOF
)"git push## Progress Saved
- **Task**: TASK-XXX (or "No task")
- **Summary**: [what was done]
- **Commit**: [short hash]
- **Status**: Still IN PROGRESS
Ready to continue on another machine:
1. `git pull`
2. Continue working on TASK-XXX| Aspect | /master-plan:done | /master-plan:save |
|---|---|---|
| Task Status | ✅ DONE | 🔄 IN PROGRESS (unchanged) |
| Commit prefix | feat(TASK-XXX): | wip(TASK-XXX): |
| Tests required | Yes | No (skip for speed) |
| MASTER_PLAN update | Mark complete | Add progress note only |
| Use case | Task finished | Session end, machine switch |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.