andrsj/go-proverbs-review-skill
5 stars · Last commit 2026-04-18
Claude Code skill: code review for Go against Rob Pike's Go Proverbs. One rule file per proverb, dispatched as parallel subagents at review time.
README preview
# go-proverbs-review A [Claude Code plugin](https://code.claude.com/docs/en/plugins) shipping a single skill that reviews Go code against [Rob Pike's Go Proverbs](https://go-proverbs.github.io/). Each proverb is its own rule file with motivation, code smells, good/bad examples, a review checklist, and primary sources (mostly [go.dev](https://go.dev/)). At review time, one subagent per actionable proverb runs in parallel, so each check is focused on a single principle and the main context stays small. ## Install This repo doubles as a [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) (`.claude-plugin/marketplace.json`) — so it's installable via the official `/plugin install` flow. Three install paths, in order of recommendation: ### Option 1 — Via the marketplace (recommended) Inside any Claude Code session, run: ```text /plugin marketplace add andrsj/go-proverbs-review-skill /plugin install go-proverbs-review@andrsj-skills /reload-plugins ```