بنقرة واحدة
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"