fix(quick-flow): address review findings on step files

- Remove name/description from step-03-implement.md frontmatter (STEP-06)
- Remove name/description from step-oneshot.md frontmatter (STEP-06)
- Fix {project_root} to {project-root} placeholder convention
- Replace undefined {changed_files} with natural language

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alex Verkhovsky 2026-03-17 19:18:39 -06:00
parent 93d03e5f80
commit fcd0873d22
2 changed files with 1 additions and 6 deletions

View File

@ -1,6 +1,4 @@
--- ---
name: 'step-03-implement'
description: 'Plan-code-review implementation via sub-agent. Local only.'
--- ---
# Step 3: Implement # Step 3: Implement

View File

@ -1,7 +1,4 @@
--- ---
name: 'step-oneshot'
description: 'Self-contained one-shot: implement, review, classify, commit, present'
deferred_work_file: '{implementation_artifacts}/deferred-work.md' deferred_work_file: '{implementation_artifacts}/deferred-work.md'
--- ---
@ -39,7 +36,7 @@ If version control is available and the tree is dirty, create a local commit wit
### Present ### Present
1. Open all changed files in the user's editor so they can review the code directly: 1. Open all changed files in the user's editor so they can review the code directly:
- Run `code -r "{project_root}" {changed_files}` — the project root as the first argument, then each changed file path. Always double-quote paths with spaces. - Run `code -r "{project-root}" <changed-file-paths>` — the project root as the first argument, then each changed file path. Always double-quote paths with spaces.
- If `code` is not available (command fails), skip gracefully and list the file paths instead. - If `code` is not available (command fails), skip gracefully and list the file paths instead.
2. Display a summary in conversation output, including: 2. Display a summary in conversation output, including:
- The commit hash (if one was created). - The commit hash (if one was created).