From auto-mobile
Validates project changes with lint, build, formatting, config, and platform checks using repo scripts, targeting touched files.
How this command is triggered — by the user, by Claude, or both
Slash command
/auto-mobile:SKILLvalidate/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Validate Changes Run the lightest validation that covers the touched code, then widen only when needed. - Prefer `validate` for multi-check verification. - Prefer `test` when the request is specifically about running tests or reproducing a test failure. - Before inventing a validation command, check `scripts/` and `scripts/README.md` for an existing validator. ## Baseline Validation - `bun run lint` - `bun run build` ## Repo Script Validation - Codex skills and `AGENTS.md`: `bash scripts/validate_codex_skills.sh` - Fast multi-check pass: `bash scripts/all_fast_validate_checks.sh` - ...
Run the lightest validation that covers the touched code, then widen only when needed.
validate for multi-check verification.test when the request is specifically about running tests or reproducing a test failure.scripts/ and scripts/README.md for an existing validator.bun run lintbun run buildAGENTS.md: bash scripts/validate_codex_skills.shbash scripts/all_fast_validate_checks.shbash scripts/hadolint/validate_hadolint.shbash scripts/act/validate_act.shbash scripts/ios/swift-build.shONLY_TOUCHED_FILES=false bash scripts/swiftformat/validate_swiftformat.shONLY_TOUCHED_FILES=false bash scripts/swiftlint/validate_swiftlint.shbash scripts/validate-bun-test-timings.shbash scripts/detect-dead-code-ts.shlint, build, and relevant tests.scripts/.android/.scripts/ios/ entry points.scratch/ and report only the actionable failures.npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobile/checkRuns project validation checks like lint/test across JavaScript/TypeScript, Python, Go, Rust, Ruby and auto-fixes errors without committing changes.
/validateValidates project structure, git config, build setup, code quality, CI/CD workflows, and best practices; reports issues, score, and recommendations with --path and --verbose options.
/fullstackValidates full-stack apps across backend, frontend, database, and API contracts with parallel checks, auto-fixes, quality score, and report.
/validate-skillsValidates bash/shell code blocks in plugin markdown command/skill files or specified paths/directories using static analysis (bash -n, shellcheck), safety tiering, safe execution for green-tier, and AI review. Outputs report or JSON with --json.
/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.