ワンクリックで
test
Run Go unit tests. Use after code changes to verify correctness.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run Go unit tests. Use after code changes to verify correctness.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run Go benchmarks and compare results to detect performance regressions. Use before and after performance-related changes.
Run pre-push quality checks (vet + lint + tests with race detector). Use before pushing code.
Run tests with coverage analysis and identify untested code paths. Use to find gaps before releases.
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS.
Run integration tests that require Docker (Postgres, MinIO via testcontainers). Use to validate database and storage behavior.
| name | test |
| description | Run Go unit tests. Use after code changes to verify correctness. |
| disable-model-invocation | false |
| argument-hint | package-path |
Run Go unit tests with optional package targeting and verbose output.
/test - Run all unit tests/test ./internal/repo/... - Run tests in specific package/test -v ./internal/manager/... - Verbose outputRun tests
If $ARGUMENTS specifies a package, use that:
go test -timeout 5m $ARGUMENTS 2>&1
Otherwise, run all packages:
go test -timeout 5m ./... 2>&1
Parse results
Report:
## Test Results
### Passed
- [list of passed tests]
### Failed
- [list of failed tests with error details]
### Summary
- Total: N | Passed: N | Failed: N | Skipped: N
- Duration: Ns
On failure, read the failing test and corresponding source files to understand the failure, then suggest a fix.
-v for verbose output when debugging specific test failures-run TestName to run a single test-short to skip long-running tests during iteration/race-check instead/integration-test instead