ワンクリックで
verify
Run the full CI check suite locally — build, test with race detector, lint, and vet. Use before committing or after making changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run the full CI check suite locally — build, test with race detector, lint, and vet. Use before committing or after making changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation.
Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.
| name | verify |
| description | Run the full CI check suite locally — build, test with race detector, lint, and vet. Use before committing or after making changes. |
Run the complete pre-commit check suite for this Go + vanilla JS WebRTC project.
Run make check which executes:
go build ./... — compile all packagesgo test -race -count=1 ./... — tests with race detectorgolangci-lint run — lint with 14 lintersgo vet ./... — static analysisIf checks fail, fix the issues and re-run.
After backend checks pass, optionally run:
cd web && npm test — Vitest unit testscd e2e && npm test — Playwright E2E tests (requires running server)