skills/brownfield/bf-resume/SKILL.md
Resume work on a ticket by loading context from .aw/brownfield-progress/ files. Reads research.txt, tasks.json, progress.txt, and recent git log to summarize where you left off and suggest next steps. Part of the brownfield skill family. Use when the user says /bf-resume, wants to pick up where they left off, or starts a new session on a ticket.
npx skillsauth add ricky-yosh/agent-workflows bf-resumeInstall 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.
Reload session context from the worktree's progress files.
Read .aw/brownfield-progress/research.txt — if missing, note it and continue with what's available.
Read .aw/brownfield-progress/progress.txt — if missing, note it.
Read git log --oneline origin/master..HEAD — list commits made on this branch.
Read .aw/brownfield-progress/tasks.json if it exists.
Present a structured summary:
Ticket & Objective (from research)
Last Session (from progress.txt)
Commits so far (from git log)
Task status (from tasks.json, if present)
Next Steps
End with: "Ready. Next step: /bf-triage."
development
Write tests for a batch of tasks BEFORE implementation. Detects the project's test framework and language, then writes tests that cover happy paths, edge cases, and failure modes. All tests should fail initially since there is no implementation yet. Part of the gf (greenfield) skill family. Use when the user says /gf-write-tests or wants to write tests before implementing a feature or task batch.
testing
Generate readable testing notes after a feature is complete. Compares spec against implementation to produce a concise list of what was built, how to test it, and any scope gaps. Writes testing-notes.md to .aw/greenfield-progress/. Part of the gf (greenfield) skill family.
testing
Save current session work to .aw/greenfield-progress/progress.txt. Captures decisions (why, not just what) that git diff cannot show. Updates tasks.json to mark completed tasks. Part of the gf (greenfield) skill family.
testing
Gate the greenfield workflow on user verification after an implementation step. Reads the implementation digest, shows verification steps, and waits for the user to confirm before advancing. Part of the gf (greenfield) skill family.