一键导入
verify
Run full verification suite (lint, test, build) and report results
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run full verification suite (lint, test, build) and report results
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Write, debug, or update Playwright E2E tests for the game — including fast, frame-exact deterministic tests using seeded RNG and fixed-timestep stepping.
Drive a headless Chromium browser to take screenshots of the running dev server so Claude can VISUALLY verify its own UI/canvas work via vision-inspection. Use whenever the user asks to "visually check", "take a screenshot", "see how it looks", "verify visually", or after touching code in src/ui/, src/rendering/, src/game/, or anything that produces visible output. This is for ad-hoc visual inspection, NOT for writing Playwright test specs (use the e2e skill for that).
Safely refactor a module with full test coverage verification
| name | verify |
| description | Run full verification suite (lint, test, build) and report results |
| user-invocable | true |
| allowed-tools | Bash, Read |
Run the full project verification pipeline and report results clearly:
pnpm run lint — report pass/fail and any errorspnpm run test — report total tests, pass/fail countpnpm run build — report pass/fail and any TypeScript errorssrc/ui/, src/rendering/, e2e/, or src/testing/: also run pnpm run e2e — report total E2E tests, pass/fail countSummarize results in a table:
| Check | Status | Details |
|---|---|---|
| Lint | ... | ... |
| Tests | ... | ... |
| Build | ... | ... |
| E2E | ... | ... |
If any check fails, analyze the errors and suggest fixes.
Notes:
webServer config)pnpm run e2e:update to regenerate, then verify with pnpm run e2econtinue-on-error: true in CI workflow)