skills/sweep/SKILL.md
Post-op check for artifacts, damage, and stale references after agent work
npx skillsauth add tslateman/duet sweepInstall 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.
Audit the working tree after agent work completes. Find what the agents left behind.
Map every file touched, across all repos affected:
git diff --stat
git diff --cached --stat
If other repos were modified (check recent tool output or plan files for cross-repo work), run git diff --stat there too.
Flag anything unexpected — files not mentioned in the plan or task.
Check whether test fixtures, example files, seed data, or sample configs were modified:
example, fixture, seed, sample, mock, test-dataSearch for references that became outdated by the work:
Scan for artifacts agents leave behind:
console.log, print(), echo "DEBUG" statements*.tmp, *.bak, /tmp/ references)Identify changes outside the task scope:
If plan files exist for the work just completed, check acceptance criteria:
Present findings as a short checklist:
Be terse. Name files and line numbers. Skip categories with no findings.
development
Judgment linter for vibe-coded output — reads the energy of the code, not just correctness. Use when the user says "vibe check", "check this vibe code", "does this hold up", "sanity check this AI code", or after a fast generation session before committing.
tools
Survey the project and choose what to play next
development
Design test strategy using Beck's Test Desiderata — which properties matter, which tradeoffs to make. Use when the user asks "how should I test this", "what tests do I need", "review my test strategy", "is this well-tested", or when planning tests for a new feature or refactor.
development
Framework for code review that captures context future maintainers need—concerns raised, alternatives rejected, risks accepted. Use for PRs, local changes, or architecture review when the decision matters more than the diff. Produces structured feedback with must-address issues, suggestions, and observations "for the record."