go

go is a skill for Claude Code from epicsagas/epic-harness. It costs 33 tokens per session (1,481 once invoked), scanned A, original, Apache-2.0.

A build workflow that turns an approved specification into tasks, implements them with TDD, and checks the finished result.

In plain words
What is it for?
Use it to plan work from requirements, build tasks in dependency order, integrate the results, and verify every acceptance condition.
Why use it?
TDD, or test-driven development, helps guide each change with a failing test, a passing implementation, and cleanup afterward.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the epic plugin — 27 skills, 6 hooks shipped together

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/epicsagas/epic-harness/go
Any agent
npx skills add epicsagas/epic-harness --skill go
Clone the repo
git clone --depth 1 https://github.com/epicsagas/epic-harness

Made for: Claude Code.

Or install epic, the plugin that ships this one along with the rest of its 27 skills, 6 hooks.

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 go

README.md
[![agentmods](https://agentmods.dev/badge/skills/epicsagas/epic-harness/go.svg)](https://agentmods.dev/skills/epicsagas/epic-harness/go)
Your own site
<a href="https://agentmods.dev/skills/epicsagas/epic-harness/go"><img src="https://agentmods.dev/badge/skills/epicsagas/epic-harness/go.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,481 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.1 $0.00033 $0.01481
Opus 5 $0.00016 $0.00740
Sonnet 5 $0.00007 $0.00296
Haiku 4.5 $0.00003 $0.00148

Measured 6d ago against content hash 2766434c8abc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

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

skills/go/SKILL.md · 177 lines

How it starts

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

Go — Build It

CRITICAL: Run HARNESS_DIR=$(epic-harness path) first. NEVER use .harness/ in the project directory.

Execution Modes

This skill has 3 internal modes that run sequentially:

  1. go:plan — Decompose requirements into ordered, parallelizable tasks
  2. go:build — Execute each task using TDD (Red→Green→Refactor)
  3. go:integrate — Merge results, verify all ACs, fix failures

Mode: go:plan (Plan)

Decompose the spec into an execution plan.

Process

  1. Load the spec:

    ls -t $HARNESS_DIR/specs/SPEC-*.md | head -1
    

    Read the file. Confirm frontmatter has status: approved. If not, invoke the spec skill first.

  2. Survey the codebase: Identify relevant files, modules, patterns for each requirement.

  3. Decompose: Map each Requirement → one or more Tasks. Every task must reference its source requirement:

    Task 1: [description] — satisfies: R1 — depends on: none — modifies: [file list]
    Task 2: [description] — satisfies: R2 — depends on: Task 1 — modifies: [file list]
    Task 3: [description] — satisfies: R1,R2 (integration) — depends on: Task 1,2 — modifies: [file list]
    
  4. Conflict analysis:

    • Tasks modifying same files → serialize or use worktree isolation
    • Tasks modifying different files → safe to parallelize
    • Don't plan more than 8 tasks — if bigger, split into phases
    • Include "verify integration" as final task if 3+ tasks
  5. Show the plan. Get user confirmation (or auto-proceed if in /orbit).

  6. Identify risks: For each task, list potential failure modes:

    ### Risks
    - {risk}: {mitigation}
    
  7. Create feature branch (standalone invocation only — /orbit handles this in Step 3):

    git checkout -b feature/{goal_slug}
    

Execution Order Format

- Batch 1 (parallel): Task 1, Task 3
- Batch 2 (sequential): Task 2

Mode: go:build (Execute TDD)

For each task, follow this TDD cycle:

Builder Protocol

Read the full file on GitHub · 177 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. 6d ago First seen · 177 lines · 33 tokens per session scan A 2766434c8abc

Subscribe to this mod's changes

go is a skill published in the GitHub repository epicsagas/epic-harness (18 stars, last pushed yesterday), licensed Apache-2.0. It adds 33 tokens to every session and 1,481 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.