skills/greenfield/gf-review/SKILL.md
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.
npx skillsauth add ricky-yosh/agent-workflows gf-reviewInstall 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.
Gate the workflow on user verification after an implementation step.
Read .aw/greenfield-progress/next-task.json to get the current task ID (the task field). If missing, tell the user to run /gf-resume first.
Read the implementation digest at .aw/digests/implement-task-N-digest.md (where N is the task ID).
Print the How to verify and What to look for sections from the digest.
Ask:
AskUserQuestion:
question: "Digest is at .aw/digests/implement-task-N-digest.md — take it for a spin. How did it go?"
options:
- "Task completed and tested"
- "Something's off — I'll explain: ___"
If "Task completed and tested": Write an empty file to .aw/greenfield-progress/review-confirmed. Then write an empty file to .aw/stop-signal to trigger the runner to advance to the next step.
If "Something's off": Read the user's explanation. Do NOT write review-confirmed. Tell the user the step stays incomplete so they can re-run the implement step or fix manually, then re-run /gf-review.
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.
documentation
Resume work on a long feature by loading context from .aw/greenfield-progress/ files. Reads spec.xml, tasks.json, progress.txt, and recent git log to summarize where you left off. Writes next-task.json for the next not-done task. Part of the gf (greenfield) skill family.