Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add johnqtcg/awesome-skills --skill go-code-reviewergit clone --depth 1 https://github.com/johnqtcg/awesome-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/johnqtcg/awesome-skills/go-code-reviewer)<a href="https://agentmods.dev/skills/johnqtcg/awesome-skills/go-code-reviewer"><img src="https://agentmods.dev/badge/skills/johnqtcg/awesome-skills/go-code-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/johnqtcg/awesome-skills/go-code-reviewer"><img src="https://agentmods.dev/badge/skills/johnqtcg/awesome-skills/go-code-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 218 Skill allows unbounded resource consumption (API calls, storage, compute). Without rate limits or quotas, a compromised or misbehaving agent can cause denial-of-service or cost overruns.Fix: Set explicit rate limits, timeouts, and resource quotas for API calls, file operations, and compute. Implement circuit breakers for runaway loops.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00045 | $0.05905 |
| Opus 5 | $0.00023 | $0.02952 |
| Sonnet 5 | $0.00009 | $0.01181 |
| Haiku 4.5 | $0.00005 | $0.00590 |
Grade A, and why
go-code-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 441 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go Code Reviewer
Purpose
Use this skill to review Go code for real defects and risk, not just style. The review must be evidence-based, policy-aligned, and actionable.
Quick Reference
| When you need to… | Jump to |
|---|---|
| Select review depth (Lite / Standard / Strict) | §Execution Modes |
| Read repo policy before reviewing | §Review Policy Sources |
| Execute full review checklist | §Review Checklist |
| Determine finding severity | §Finding Severity |
| Decide what NOT to report | §Review Discipline |
| Format findings and report | §Output Format |
| See a complete formatted output example | Load references/example-output.md |
When To Use
Trigger this skill when the user asks for:
- Go code review / PR review / diff review
- Code quality or best-practice checks
- Risk or regression analysis
- "Is this code compliant with project rules?"
Review Policy Sources (in order)
constitution.md(highest repository policy for this skill)AGENTS.md(repo workflow/testing/style constraints)- Local package conventions (tests, interfaces, dependency patterns)
- Go language/runtime best practices
If
constitution.mdis missing, explicitly state that and continue withAGENTS.md+ Go best practices.
Execution Modes (Lite / Standard / Strict)
Choose a mode before starting review and state it in the report.
- Default mode:
Standard - Declare the selected mode in a dedicated
Review Modesection. Mode selection rules: - Choose
Liteonly when scope is small (typically <=3 files), low-risk, and no security/auth/concurrency/public API changes are involved. - Choose
Strictwhen any high-risk signal exists: security/auth, concurrency/lifecycle, HTTP/API contract changes, persistence/schema changes, exported signature changes, or broad refactors (typically >15 files). - Use
Standardfor everything else.
Lite (fast triage)
- Review focus: confirmed defects with high confidence, avoid speculative architecture commentary.
- Minimum execution:
- Run at least one static tool (
golangci-lintpreferred, elsestaticcheck/go vet). - Run
go testfor impacted package(s). - Run
go test -raceonly if concurrency risk is present; if skipped, state reason.
- Run at least one static tool (
- Baseline/Suppression/SLA gates still apply.
- Finding volume: soft target ≤ 5 findings (severity-tiered; see Workflow step 10).
What ships with it
37 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/example-output.md 1.3 KB
- references/go-api-http-checklist.md 14 KB
- references/go-concurrency-patterns.md 17 KB
- references/go-database-patterns.md 14 KB
- references/go-error-and-quality.md 15 KB
- references/go-modern-practices.md 14 KB
- references/go-performance-patterns.md 14 KB
- references/go-review-anti-examples.md 4.1 KB
- references/go-security-patterns.md 28 KB
- references/go-test-quality.md 14 KB
- references/pr-review-quick-checklist.md 3.7 KB
- scripts/run_regression.sh 602 B runs code
- scripts/tests/golden/001_race_shared_map.json 573 B
- scripts/tests/golden/002_single_goroutine_map_fp.json 521 B
- scripts/tests/golden/003_missing_resp_body_close.json 495 B
- scripts/tests/golden/004_server_handler_body_fp.json 504 B
- scripts/tests/golden/005_slog_version_gate_fp.json 474 B
- scripts/tests/golden/006_ignored_critical_error.json 407 B
- scripts/tests/golden/007_generated_code_exclusion.json 492 B
- scripts/tests/golden/008_finding_merge.json 780 B
- scripts/tests/golden/009_sql_injection_tp.json 509 B
- scripts/tests/golden/010_hardcoded_secret_tp.json 541 B
- scripts/tests/golden/011_regexp_in_loop_tp.json 557 B
- scripts/tests/golden/012_small_slice_prealloc_fp.json 509 B
- scripts/tests/golden/013_origin_introduced_tp.json 551 B
- scripts/tests/golden/014_origin_preexisting_awareness.json 643 B
- scripts/tests/golden/015_defer_close_readonly_fp.json 489 B
- scripts/tests/golden/016_test_no_assertion_tp.json 476 B
- scripts/tests/golden/017_sql_rows_not_closed_tp.json 601 B
- scripts/tests/golden/018_long_switch_function_fp.json 942 B
- scripts/tests/golden/019_errors_join_modern_tp.json 585 B
- scripts/tests/golden/020_origin_uncertain.json 605 B
- scripts/tests/golden/021_preexisting_medium_residual_risk.json 640 B
- scripts/tests/golden/022_volume_cap_overflow.json 718 B
- scripts/tests/golden/023_checklist_pr_review.json 909 B
- scripts/tests/test_golden_reviews.py 11 KB runs code
- scripts/tests/test_skill_contract.py 17 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 441 lines · 45 tokens per session scan A 012c84fc0bbb
go-code-reviewer is a skill published in the GitHub repository johnqtcg/awesome-skills (30 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 5,905 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
verify-implementation
A workflow that runs a project’s verification skills to produce a report on coding patterns, architecture rules, and project conventions. It is intended for work after implementation, before a pull request, or during code review.
review-loop
Run the adversarial verification loop — implement, then hand the change to a fresh checker that did not write it, fix what it finds, and re-dispatch until APPROVE. Use before claiming any behavioural change is done, and on requests like "review loop", "adversarial review", "independent review", "get this verified"…
frontend-code-review
Trigger when the user requests a review of frontend files (e.g., .tsx, .ts, .js). Support both pending-change reviews and focused file reviews while applying the checklist rules.
go-concurrency-reviewer
Audit Go concurrency — goroutines, channels, mutexes, context propagation, race conditions.
go-error-reviewer
Deep audit of Go error handling — wrapping, inspection, logging, panic/recover patterns.
go-modernizer
Detect outdated Go patterns and suggest modern idioms — Go 1.21 through 1.24+ features.