What problem does it solve? Running integration tests across many feature specs one by one is tedious and makes it hard to see overall project health. This Skill discovers every speckit shell test suite in the repository, executes them in sequence, and produces a single consolidated pass/fail report across all specs. ## Core Features & Use Cases - Automatic Suite Discovery: Scans specs/*/spec-integration-tests/ for run-all.sh and tc-*.sh files, counting test cases and checking for config.env. - Filtering and Preview Modes: Run only suites matching a spec name or number, preview suites with --list, or halt early with --fail-fast. - Environment Refresh: Runs detect-ports.sh --update before each suite so config.env reflects the current Aspire AppHost ports and connection strings. - Consolidated Reporting: Parses each suite's TEST SUMMARY block and prints a cross-spec table with totals, failure details, and exit guidance. - Use Case: After restarting the .NET Aspire AppHost, run the full suite to verify every feature spec still passes against the new ports and connection strings, then isolate failures per spec. ## Quick Start Ask the assistant to run the full test suite across all specs, optionally filtering by a spec number like 004 or using --list to preview discovered suites.