Skip to main content

/verify

Run the target repo's local verification suite and report pass/fail per stage. This is /continue step 9 as a standalone command.

Steps

  1. Detect the stack + scripts. Read package.json (Node/pnpm) or composer.json (PHP); prefer a verify.sh if present.
  2. Run, fail-fast, in order: linttypecheck (tsc --noEmit) → testbuild. For PHP: composer test + the configured PHPCS/PHPStan.
  3. Report each stage with its result; on failure show the exact error (command + output line), not "tests failed".
  4. Fix or escalate — fix a failure only if it's small and clearly in scope; otherwise hand to the owning agent (qa-engineer for tests, the language agent for lint/type/build) and stop.

This is /continue step 9 as a standalone command. Does not push or open a PR — that's /continue / the normal flow.