add-goreleaser-homebrew

add-goreleaser-homebrew is a skill for Claude Code from cboone/agent-harness-plugins. It costs 149 tokens per session (2,257 once invoked), scanned A, original, MIT.

A release setup for a Go command-line program that builds downloadable versions and publishes them through a Homebrew tap, a custom software source for macOS.

In plain words
What is it for?
Adding GoReleaser configuration and GitHub Actions automation for releases, including optional shell completions, manual pages, and macOS-only builds.
Why use it?
It removes much of the repeated work of preparing releases, packaging binaries, and updating the Homebrew distribution workflow.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the add-goreleaser-homebrew plugin — 1 skill shipped together

Good fit Adding GoReleaser configuration and GitHub Actions automation for releases, including optional shell completions, manual pages, and macOS-only builds.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cboone/agent-harness-plugins/add-goreleaser-homebrew
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.

Any agent
npx skills add cboone/agent-harness-plugins --skill add-goreleaser-homebrew
Clone the repo
git clone --depth 1 https://github.com/cboone/agent-harness-plugins

Made for: Claude Code.

Or install add-goreleaser-homebrew, the plugin that ships this one along with the rest of its 1 skill.

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 add-goreleaser-homebrew

README.md
[![agentmods](https://agentmods.dev/badge/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew/github.svg)](https://agentmods.dev/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew)
Your own site
<a href="https://agentmods.dev/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew"><img src="https://agentmods.dev/badge/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew/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.

agentmods 80×15 button for add-goreleaser-homebrew

Your own site · 80×15
<a href="https://agentmods.dev/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew"><img src="https://agentmods.dev/badge/skills/cboone/agent-harness-plugins/add-goreleaser-homebrew.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 149 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,257 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00149 $0.02257
Opus 5 $0.00075 $0.01128
Sonnet 5 $0.00030 $0.00451
Haiku 4.5 $0.00015 $0.00226

Measured 12d ago against content hash 268cb68c08d9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

add-goreleaser-homebrew 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.

plugins/add-goreleaser-homebrew/skills/add-goreleaser-homebrew/SKILL.md · 189 lines

How it starts

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

Add GoReleaser Homebrew

Add GoReleaser configuration and a GitHub Actions release workflow to an existing Go CLI project with Homebrew tap publishing.

Workflow

1. Verify the Project

Confirm the current directory is a Go CLI project:

  • Check that go.mod exists (required; abort if missing)
  • Read go.mod to extract the module path (needed for ldflags and URLs)
  • Check for an existing .goreleaser.yml or .goreleaser.yaml; if present, warn and ask whether to overwrite or abort
  • Check for an existing .github/workflows/release.yml; if present, warn and ask whether to overwrite or abort

2. Detect User Identity

Detect the user's GitHub username for use in templates:

gh api user -q .login

If the command fails or produces no output, ask the user to provide their GitHub username. Use it wherever templates reference GITHUB-USERNAME.

3. Gather Project Information

Collect the following, inferring from existing files where possible:

  • Project name: determine in this precedence order:

    1. If a Makefile defines a binary name (for example via a BINARY/TOOL_BIN variable or the target passed to go build -o), use that name.
    2. Otherwise, use the last segment of the module path in go.mod.
    3. Otherwise, try git remote get-url origin: strip any trailing .git from the URL and take the last path segment. If the command exits non-zero, returns empty output, or the URL cannot be parsed into a repo name, treat this as "no remote" and continue to step 4.
    4. If none of the above yield a name, ask the user for the project name.

    Do not derive the project name from the directory or branch name, which are often misleading.

  • Short description: check the README for a one-line description; if not found, ask the user

If the user already provided some or all of these in their initial request, do not re-ask.

4. Detect Project Features

Check for three conditional features. For each, use the detection steps described in ./references/conditional-features.md:

Read the full file on GitHub · 189 lines

Files

What ships with it

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

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. 12d ago First seen · 189 lines · 149 tokens per session scan A 268cb68c08d9

Subscribe to this mod's changes

add-goreleaser-homebrew is a skill published in the GitHub repository cboone/agent-harness-plugins (2 stars, last pushed today), licensed MIT. It adds 149 tokens to every session and 2,257 once invoked, about $0.0007 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-31.

Related

Other skills, from other repositories

crawlkit

Maintain and release the crawlkit Go library, preserving downstream compatibility for gitcrawl, slacrawl, discrawl, and notcrawl.

vincentkoc/dotskills · 30 tokens

pi-sync

Daily upstream-sync job for the pi Go port — fetch upstream pi, triage every change since the recorded pin, port what's in scope, verify idiomatic + parity via independent reviews, update the ledger, and push. Use for "sync with upstream", "porting job", or as the scheduled daily run.

sky-valley/pi · 66 tokens

go-release

Release engineering for Go projects — GoReleaser v2 with version ldflags into an internal/version package, SBOMs and multi-arch container images, tag-triggered GitHub Actions releases, CI running build/vet/test -race/govulncheck with SHA-pinned actions, and Renovate coverage for gomod, tools, npm, and Actions. Use…

bitwise-media-group/skills · 154 tokens

go-release

Expert skill for releasing Go modules and applications: semantic versioning, API compatibility, breaking-change detection, deprecation, go.mod hygiene, tagging, and binary distribution with GoReleaser. Use whenever a Go release is being cut, planned, or reviewed — any mention of version tags, semver, breaking changes…

spf13/go-skills · 110 tokens

release

Prepare, verify, and publish Sutando engine releases. Use when asked to prepare a release proposal, determine a version bump, audit release documentation, validate release gates, create a release PR, tag a confirmed release, or publish GitHub release notes. Preparation is safe and non-publishing; tagging and…

sonichi/sutando · 68 tokens

release-kotlin-library

Use when preparing, publishing, or checking readiness for a new Kotlin library version in a repository using gradle-maven-publish-plugin, including release changelog reconciliation, API snapshots, and publication verification.

chrisbanes/skills · 45 tokens