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 agentmods add skills/epicsagas/epic-harness/gonpx skills add epicsagas/epic-harness --skill gogit clone --depth 1 https://github.com/epicsagas/epic-harnessWrote 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/epicsagas/epic-harness/go)<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>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.00033 | $0.01481 |
| Opus 5 | $0.00016 | $0.00740 |
| Sonnet 5 | $0.00007 | $0.00296 |
| Haiku 4.5 | $0.00003 | $0.00148 |
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.
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:
- go:plan — Decompose requirements into ordered, parallelizable tasks
- go:build — Execute each task using TDD (Red→Green→Refactor)
- go:integrate — Merge results, verify all ACs, fix failures
Mode: go:plan (Plan)
Decompose the spec into an execution plan.
Process
-
Load the spec:
ls -t $HARNESS_DIR/specs/SPEC-*.md | head -1Read the file. Confirm frontmatter has
status: approved. If not, invoke the spec skill first. -
Survey the codebase: Identify relevant files, modules, patterns for each requirement.
-
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] -
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
-
Show the plan. Get user confirmation (or auto-proceed if in
/orbit). -
Identify risks: For each task, list potential failure modes:
### Risks - {risk}: {mitigation} -
Create feature branch (standalone invocation only —
/orbithandles 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
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.
- 6d ago First seen · 177 lines · 33 tokens per session scan A 2766434c8abc
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.
Other skills, from other repositories
kotlin-testing
Kotlin testing patterns with Kotest, MockK, coroutine testing, property-based testing, and Kover coverage. Follows TDD methodology with idiomatic Kotlin practices.
systematic-debugging
4-phase root cause debugging: understand bugs before fixing.
rust-testing
Rust testing patterns including unit tests, integration tests, async testing, property-based testing, mocking, and coverage. Follows TDD methodology.
test-driven-development
TDD: enforce RED-GREEN-REFACTOR, tests before code.
cpp-testing
Use only when writing/updating/fixing C++ tests, configuring GoogleTest/CTest, diagnosing failing or flaky tests, or adding coverage/sanitizers.
taiyi-dev
TaiyiForge 第6阶段 — TDD开发执行。四端通用。.