review-go

review-go is a skill for Claude Code, Codex from archcore-ai/cli. It costs 70 tokens per session (1,152 once invoked), scanned A, original, Apache-2.0.

A Go code-review workflow for changed files in the Archcore command-line project. Go is a programming language, and a code review checks changes for correctness, quality, tests, and adherence to project rules.

In plain words
What is it for?
Use it to review changed Go source and test files, check them against Archcore conventions, and produce a structured review of the changes.
Why use it?
It gathers the project's own review agreements and relevant library documentation before organizing a structured review. This helps catch issues that a generic review might miss.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/archcore-ai/cli/review-go
Any agent
npx skills add archcore-ai/cli --skill review-go
Clone the repo
git clone --depth 1 https://github.com/archcore-ai/cli

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for review-go

README.md
[![agentmods](https://agentmods.dev/badge/skills/archcore-ai/cli/review-go.svg)](https://agentmods.dev/skills/archcore-ai/cli/review-go)
Your own site
<a href="https://agentmods.dev/skills/archcore-ai/cli/review-go"><img src="https://agentmods.dev/badge/skills/archcore-ai/cli/review-go.svg" alt="Measured on agentmods" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,152 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00070 $0.01152
Opus 5 $0.00035 $0.00576
Sonnet 5 $0.00014 $0.00230
Haiku 4.5 $0.00007 $0.00115

Measured 4d ago against content hash 2f161b047d1e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

review-go 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 4d 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.

.claude/skills/review-go/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Archcore CLI — Go Code Review

Step 1: Identify Changed Go Files

git diff --name-only HEAD -- '*.go'
git diff --cached --name-only -- '*.go'

Combine and deduplicate. Split into two lists:

  • Source files: *.go excluding _test.go
  • Test files: *_test.go

If no changed .go files found, ask the user which files or directories to review.

Step 2: Retrieve Project Code Quality Agreements from Archcore

Use the archcore MCP tools to load project-specific conventions that the review must check against.

  1. Call list_documents with tags: ["code-review"] to find all code review agreement documents.
  2. For each returned document, call get_document with its path to retrieve the full content.
  3. Collect all document contents — these are the project-specific review rules that supplement the general Go review areas.

These documents contain established patterns extracted from the actual codebase (error handling conventions, naming rules, testing patterns, etc.). The reviewer agent must check changed code against these agreements.

Step 3: Pre-fetch Library Documentation via Context7 MCP

The golang-pro agent does NOT have Context7 MCP tools — fetch docs now.

  1. Read go.mod for third-party dependencies.
  2. Scan changed Go files for import statements. Identify which third-party libraries are used.
  3. For each non-trivial library (skip stdlib, skip obvious ones): a. Call resolve-library-id with the module path (e.g., github.com/spf13/cobra) b. If resolved, call query-docs with the resolved ID and a topic query relevant to usage in the changed code
  4. Limit to 3-5 most important libraries.

Step 4: Launch golang-pro Agent for Review

Use the Agent tool with subagent_type: "ivklgn:golang-pro". Pass a prompt that includes:

  • The list of changed .go file paths (source and test files)
  • The full text of all archcore code review documents from Step 2
  • The pre-fetched library documentation from Step 3
  • The review instructions below

Read the full file on GitHub · 105 lines

Changes

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.

  1. 4d ago First seen · 105 lines · 70 tokens per session scan A 2f161b047d1e

Subscribe to this mod's changes

review-go is a skill published in the GitHub repository archcore-ai/cli (62 stars, last pushed 17d ago), licensed Apache-2.0. It adds 70 tokens to every session and 1,152 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

golang-manual-di

Guides manual dependency injection wiring for Go services: three-tier naming taxonomy (Provide/MustProvide/Must), Must-pattern entrypoints, OS-signal-driven context lifecycle, common provider structs, infrastructure must-builders, interface-segregated bus registration, decorator/tracing wrappers, and…

soulcodex/agentic · 97 tokens

use-modern-go

Apply modern Go syntax guidelines based on project's Go version. Use when writing or modifying Go code to ensure modern idioms are used instead of legacy patterns.

hexxla/mosaic · 34 tokens

agent-native-scaffold

Audit, scaffold, or refactor any software repository into the Agent-Native Repository Architecture (ANRS-1.0) with Hub-and-Spoke context, O(1) REGISTRY.yaml, and shallow directory ergonomics.

LFTPadilla/agent-dev-kit · 51 tokens

microservices-patterns

Generate and review microservices code using patterns from Chris Richardson's "Microservices Patterns." Use this skill whenever the user asks about microservices architecture, wants to generate service code, design distributed systems, review microservices code, implement sagas, set up CQRS, configure API gateways…

booklib-ai/booklib · 131 tokens

data-intensive-patterns

Generate and review data-intensive application code using patterns from Martin Kleppmann's "Designing Data-Intensive Applications." Use this skill whenever the user asks about data storage engines, replication, partitioning, transactions, distributed systems, batch or stream processing, encoding/serialization…

booklib-ai/booklib · 178 tokens

design-patterns

Apply and review GoF design patterns from Head First Design Patterns. Use for Creational patterns (Factory Method, Abstract Factory, Singleton, Builder, Prototype), Structural patterns (Adapter, Bridge, Composite, Decorator, Facade, Flyweight, Proxy), Behavioral patterns (Chain of Responsibility, Command, Interpreter…

booklib-ai/booklib · 200 tokens