From auto-mobile
Runs narrowest relevant tests for changed files or requests, using commands like `bun test <file>` for TypeScript, `gradlew test` for Android, `swift-test.sh` for iOS; summarizes failures.
How this command is triggered — by the user, by Claude, or both
Slash command
/auto-mobile:SKILLtest/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Run Tests Use the smallest test command that answers the user’s question. - This skill is test-focused. - Prefer `validate` when lint, build, formatting, or other non-test checks are part of the request. ## Workflow 1. Determine the scope from the changed files or the user request. 2. Prefer targeted tests before full suites. 3. For TypeScript, use `bun test <file>` or `bun test --bail` before `bun test` when narrowing failures. 4. For Android or iOS, run only the relevant platform test command. 5. Save verbose logs to `scratch/` when needed and summarize failures with file names and ...
Use the smallest test command that answers the user’s question.
validate when lint, build, formatting, or other non-test checks are part of the request.bun test <file> or bun test --bail before bun test when narrowing failures.scratch/ when needed and summarize failures with file names and root causes.bun testbun test <file>bash scripts/validate-bun-test-timings.sh(cd android && ./gradlew test) or a narrower taskbash scripts/ios/swift-test.shscripts/npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobile/testExecutes intelligent tests based on PR changes or patterns/modifiers, runs them via ./run_tests.sh, analyzes/fixes results, and verifies GitHub CI status.
/testRuns project test suite by auto-detecting type (Python, Node.js, Java, .NET, Go, Rust) and executing tests (pytest, npm test, mvn test, etc.). Reports pass/fail, details failures, suggests fixes.
/test-and-fixRuns tests and iteratively fixes failures until all tests pass, with support for scoping to a specific file or pattern.
/run-testsDetects the test framework, runs affected tests from git changes first, then full suite tiered by unit and integration, and analyzes failures with suggested fixes.
/SKILLResolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.