promptgarten ๐ŸŒฑ
๐ŸŒ ES

Command reference ยท Claude Code

/verify

Starts the project app and verifies that a change works end-to-end.

[Skill] See 'Run and verify your app'. Requires v2.1.145+.

โœ… WHEN TO USE IT?

Before committing a non-trivial change

After fixing a bug in a login flow, use /verify to actually walk the flow end-to-end instead of just running tests/typecheck.

Trace the affected flow specifically

After a change to checkout logic, call /verify to observe whether the flow really works in real operation.

โ›” WHEN NOT TO?

The diff only touches tests or docs

In that case there's no runtime surface to observe.

Better: Run the regular test suite โ€” no /verify needed.

SOURCES