- Wrap all Claude CLI subprocess calls with `env -u CLAUDECODE` to prevent
parent env var interference with child processes (17 sites across 7 files)
- Add `flush_log_to_repo()` to epic-execute.sh for incremental log persistence
after each story completes or fails (prevents log loss on interruption)
- Add portable `run_with_timeout` utility to utils.sh and wrap all test
invocations in epic-execute.sh and regression-gate.sh with configurable
timeout (default 120s via REGRESSION_TEST_TIMEOUT)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Merge 217 upstream commits covering:
- Module restructuring: src/modules/ flattened to src/
- BMB, BMGD, CIS modules moved to separate repos
- Installer migrated from inquirer to @clack/prompts
- Workflow simplification and new naming conventions
- Docusaurus to Astro/Starlight docs migration
- CodeRabbit AI review integration
- Cross-file reference validator
- Non-interactive install support
- Kiro IDE support
Conflict resolutions:
- sm.agent.yaml: kept fork's EE/EC/UV/CR menu items, took upstream's CC description
- uat-validator.agent.yaml: moved to src/bmm/agents/, removed unsupported webskip field
Path updates for new structure:
- scripts/*.sh: src/modules/bmm/ → src/bmm/
- CLAUDE.md: updated module paths and removed references to extracted modules
- docs: fixed broken links, added Astro frontmatter to fork docs files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add human intervention detection with BLOCKING/WARNING pattern matching
- Detects .env issues, API keys, permissions, connection failures
- Categorizes issues for Barry to handle appropriately
- Add story context extraction for fix documents
- Extracts acceptance criteria from story files
- Includes Dev Agent Record (implementation notes)
- Enhance fix context generation
- Includes human intervention items section
- Adds root cause hints for each failure
- Appends story context with AC mapping
- Add human actions file generation
- Creates epic-{id}-human-actions.md with actionable checklist
- Provides specific guidance per issue type
- Add timing metrics to track UAT evaluation duration
- Captures start_time, end_time, duration_seconds
- Shows duration in summary output
- Update output signals with human action flags
- UAT_HUMAN_ACTION_REQUIRED: true/false
- UAT_HUMAN_ACTION_COUNT: N
- UAT_HUMAN_ACTION_FILE: path
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>