From 57f59b2e5ca4918b4184fe23a45362b570b63c7e Mon Sep 17 00:00:00 2001 From: Scott Jennings Date: Sat, 13 Dec 2025 07:17:28 -0600 Subject: [PATCH] fix: address Copilot review feedback for external agent code review - Rename misleading "CLAUDE CODE CLEANUP" comment to generic "SHELL CLEANUP" - Remove unused external_prompt variable loading action - Increase external agent timeout from 5 to 10 minutes for complex reviews - Fix Review Method output to show actual method used instead of "OR" - Restore web_bundle: false setting needed by web bundler --- .../4-implementation/code-review/instructions.xml | 11 +++++------ .../4-implementation/code-review/workflow.yaml | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml b/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml index 5436efe0..87100fef 100644 --- a/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +++ b/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml @@ -5,7 +5,7 @@ Generate all documents in {document_output_language} - + - Load {{external_prompt_file}} content into {{external_prompt}} CODEX: Use codex exec with read-only sandbox and full-auto - + GEMINI: Use gemini -p with prompt from file and --yolo - + CLAUDE: Use claude -p with prompt from file - + @@ -297,7 +296,7 @@ **🔥 CODE REVIEW FINDINGS, {user_name}!** **Story:** {{story_file}} - **Review Method:** {{external_agent_cmd}} OR built-in + **Review Method:** {{#if external_agent_cmd}}{{external_agent_cmd}} CLI{{else}}built-in{{/if}} **Git vs Story Discrepancies:** {{git_discrepancy_count}} found **Issues Found:** {{high_count}} High, {{medium_count}} Medium, {{low_count}} Low diff --git a/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml b/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml index 8cdc0fe1..9808e43e 100644 --- a/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +++ b/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml @@ -57,3 +57,4 @@ input_file_patterns: load_strategy: "INDEX_GUIDED" standalone: true +web_bundle: false