with one click
go-check
Run Go verification pipeline (build + test + vet + lint).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run Go verification pipeline (build + test + vet + lint).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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"