/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
- Detect the stack + scripts. Read
package.json(Node/pnpm) orcomposer.json(PHP); prefer averify.shif present. - Run, fail-fast, in order:
lint→typecheck(tsc --noEmit) →test→build. For PHP:composer test+ the configured PHPCS/PHPStan. - Report each stage with its result; on failure show the exact error (command + output line), not "tests failed".
- Fix or escalate — fix a failure only if it's small and clearly in scope; otherwise hand to the owning agent (
qa-engineerfor 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.