skills/greenfield/gf-resume/SKILL.md
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.
npx skillsauth add ricky-yosh/agent-workflows gf-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 greenfield-progress files and set up the next task.
The purpose of this skill is to silently prime the conversation context so you can work effectively on the feature. The user already knows what the feature is — they don't need a recap.
Read the following files (skip any that don't exist):
.aw/greenfield-progress/spec.xml.aw/greenfield-progress/tasks.json.aw/greenfield-progress/progress.txtRun git log --oneline -20 to understand recent commits.
Write next-task.json. Find the first not-done task in tasks.json and write .aw/greenfield-progress/next-task.json:
{
"task": 2,
"description": "The task description from tasks.json",
"approach": "direct",
"needs_tests": true
}
Copy approach and needs_tests directly from the task in tasks.json. If the task is missing these fields (legacy tasks.json), default to "direct" and false.
If all tasks are done, do not write next-task.json. Say "All tasks complete."
Output only this:
Loaded in previous session. <one sentence summarizing the current state, e.g. "3 of 8 tasks done, last session implemented the CLI parser.">
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.