What problem does it solve? Running Terraform provider acceptance tests requires specific environment variables, Go test flags, and diagnostic steps that are easy to forget or misconfigure, leading to confusing failures and false results. ## Core Features & Use Cases - Focused Test Execution: Run a single acceptance test (functions prefixed with TestAcc) with the required TF_ACC=1 environment variable and non-verbose output by default. - Progressive Diagnosis: Escalate through cumulative debugging options including -count=1 to bypass caching, -v verbose output, TF_LOG=debug logging, and TF_ACC_WORKING_DIR_PERSIST=1 to preserve the Terraform workspace. - False Negative Detection: "Flip" a passing test by intentionally breaking a TestCheckFunc to confirm the test actually validates what it claims. - Use Case: When a TestAccCloudHappyPath test fails in CI, use this Skill to rerun it with caching disabled, enable debug logging, and persist the workspace to inspect the actual infrastructure state. ## Quick Start Run the acceptance test named TestAccCloudHappyPath and help me diagnose any failures.