skills/brownfield/bf-triage/SKILL.md
Pick the next task to work on and write it to next-task.json. Reads tasks.json, selects the first not-done task, confirms with the user, and persists the choice. Part of the brownfield skill family. Use when the user says /bf-triage, 'what should I work on next', 'which task is next', or as the step between /bf-resume and /bf-plan.
npx skillsauth add ricky-yosh/agent-workflows bf-triageInstall 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.
Pick the next task and write it down.
Read .aw/brownfield-progress/tasks.json. If missing, tell the user to run /bf-create-tasks first.
Find the first not-done task.
Use AskUserQuestion to confirm the task and ask about the cycle:
["Full cycle (tests + plan)", "Fast-track (implement directly)"]Write .aw/brownfield-progress/next-task.json:
{
"task": 2,
"description": "The task description from tasks.json",
"fast_track": false,
"recommended_at": "2026-03-31"
}
Set fast_track to true if the user chose "Fast-track", false otherwise.
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.