What problem does it solve? Running integration test scripts for a feature spec manually requires locating the right directory, checking environment prerequisites, executing the correct scripts, and interpreting raw output. This Skill automates that entire flow and presents a clean pass/fail summary. ## Core Features & Use Cases - Automated Test Execution: Finds the active feature's spec-integration-tests directory and runs all tc-*.sh scripts via run-all.sh, or a filtered subset like tc-010 tc-011. - Prerequisite Validation: Warns about missing environment variables (PP, IDENTITY, PG_CONN) and missing tools (curl, jq, psql) before running tests. - Structured Results: Parses the TEST SUMMARY block and displays Passed, Failed, Skipped, and Total counts in a formatted table with failing test details. - Use Case: After generating test scripts with /speckit-scripttest, run this Skill to execute the full integration test suite for your feature and immediately see which test cases failed and why. ## Quick Start Run the integration tests for my current feature spec and show me which test cases passed or failed.