원클릭으로
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)