ワンクリックで
go-check
Run Go verification pipeline (build + test + vet + lint).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run Go verification pipeline (build + test + vet + lint).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Fetch PR review comments, triage against codebase, apply fixes, generate reply report.
Verify answers by checking sources, contradictions, and confidence level.
Run, discover, or review Makefile targets. Use for build automation.
Extract readable web content, removing navigation/ads to save tokens.
Fetch Jira tickets as clean markdown using native ADF format.
5-element persona framework template for creating Claude Code agents
| name | go-check |
| description | Run Go verification pipeline (build + test + vet + lint). |
| argument-hint | --quick|--full |
| allowed-tools | Bash |
| model | haiku |
Validate: Check go.mod exists in cwd or parent dirs
Detect automation: Check for Makefile with targets: build, test, vet, lint
Dispatch:
--quick: Build + vet only (skip tests)--full: Build + test + vet + lint + staticcheckExecute:
make build test vet (or available targets)go build ./... && go test ./... && go vet ./...time commandAggregate: Collect exit codes, durations, error summaries
Format:
## GO CHECK RESULTS
| Step | Status | Duration |
|-------|--------|----------|
| build | PASS | 2.1s |
| test | PASS | 4.3s |
| vet | PASS | 0.8s |
**Overall:** PASS
Report:
Edge cases:
--full without lint tools: Warn "staticcheck not found, skipping"