From 2785d382d5f879ae56d0fd18d9ec6f58dc1ea15a Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Mon, 5 Jan 2026 07:24:11 -0800 Subject: [PATCH] docs(code-review): use {sprint_status} variable instead of expanded path --- .../code-review/steps/step-01-load-story.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md b/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md index 73aa4bca..38252e41 100644 --- a/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md +++ b/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md @@ -28,13 +28,13 @@ Ask user: "Which story would you like to review?" **Try input as direct file path first:** If input resolves to an existing file: - - Verify it's in {implementation_artifacts}/sprint-status.yaml with status `review` or `done` + - Verify it's in {sprint_status} with status `review` or `done` - If verified → set `story_path` to that file path - - If NOT verified → Warn user the file is not in {implementation_artifacts}/sprint-status.yaml (or wrong status). Ask: "Continue anyway?" + - If NOT verified → Warn user the file is not in {sprint_status} (or wrong status). Ask: "Continue anyway?" - If yes → set `story_path` - If no → return to user prompt (ask "Which story would you like to review?" again) -**Search {implementation_artifacts}/sprint-status.yaml** (if input is not a direct file): +**Search {sprint_status}** (if input is not a direct file): Search for stories with status `review` or `done`. Match by priority: 1. Story number resembles input closely enough (e.g., "1-2" matches "1 2", "1.2", "one dash two", "one two"; "1-32" matches "one thirty two"). Do NOT match if numbers differ (e.g., "1-33" does not match "1-32") 2. Exact story name/key (e.g., "1-2-user-auth-api")