一键导入
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)