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 skills add adonai-labs/agent-runway --skill skill-go-coregit clone --depth 1 https://github.com/adonai-labs/agent-runwayWrote 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/adonai-labs/agent-runway/skill-go-core)<a href="https://agentmods.dev/skills/adonai-labs/agent-runway/skill-go-core"><img src="https://agentmods.dev/badge/skills/adonai-labs/agent-runway/skill-go-core/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.
<a href="https://agentmods.dev/skills/adonai-labs/agent-runway/skill-go-core"><img src="https://agentmods.dev/badge/skills/adonai-labs/agent-runway/skill-go-core.svg" alt="Reviewed on agentmods" width="80" 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.00076 | $0.00632 |
| Opus 5 | $0.00038 | $0.00316 |
| Sonnet 5 | $0.00015 | $0.00126 |
| Haiku 4.5 | $0.00008 | $0.00063 |
Grade A, and why
go-core 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 7d 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 — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go Core
How to invoke
After agent-runway add go, the skill is installed at .cursor/skills/go-core/. Use:
- Cursor:
@go-coreor ask a Go question while editing*.go(rules auto-attach) - Claude Code: reference
.agent-runway/skills/go-core/SKILL.mdor ask in context of Go files
Examples:
- How should I structure this HTTP service?
- Is this error handling idiomatic Go?
- How do I test this handler without spinning up a real server?
- How do I propagate context through this service?
Not sure which skill to use? Start with
/start— it classifies intent and routes to the right skill.
Guiding principles
Simplicity is the core Go value. Respect it.
- Start flat; add packages only when the code genuinely separates
- Explicit over implicit — no magic, no frameworks that hide behaviour
- One thing per function; keep function bodies short and readable
- SOLID applies: small interfaces defined at the consumer; single responsibility per package
- DRY for business rules; duplication in wiring / glue is acceptable
- Concurrency only when the problem requires it — do not default to goroutines
What this skill helps with
- Project structure scaled to size — single package to multi-package services
- Idiomatic error handling, context propagation, and interface design
- HTTP services with
net/httpor chi — routing, middleware, error handling - Testing: table-driven tests,
httptest, Testcontainers - Security: OWASP Go, SQL injection, secrets, subprocess safety
- Observability:
slog, OpenTelemetry, health endpoints
Skill files
| File | Contents |
|---|---|
| architecture.md | Project structure, packages, dependency rules, config |
| patterns.md | Error handling, context, interfaces, service layer |
| testing.md | Table-driven tests, httptest, Testcontainers, benchmarks |
| security.md | SQL injection, input validation, subprocess safety, secrets |
| observability.md | slog, OpenTelemetry, health endpoints |
| reference.md | go.mod, common commands, module conventions |
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.
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.
- 7d ago First seen · 67 lines · 76 tokens per session scan A 582e38afea24
go-core is a skill published in the GitHub repository adonai-labs/agent-runway (2 stars, last pushed 20d ago), licensed MIT. It adds 76 tokens to every session and 632 once invoked, about $0.0004 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-09-03.
Other skills, from other repositories
telnyx-numbers-go
Search, order, and manage phone numbers by location, features, and coverage.
pn-go-scaffolding
Scaffolds new Go API projects (Gin, Fiber, Echo, Chi) or handlers. Use when adding a new route/module; covers idiomatic project layout, env/secrets, error handling, and Go-specific conventions.
telnyx-messaging-go
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
telnyx-porting-out-go
Manage port-out requests when numbers are being ported away from Telnyx. List, view, and update port-out status. This skill provides Go SDK examples.
telnyx-account-go
Manage account balance, payments, invoices, webhooks, and view audit logs and detail records. This skill provides Go SDK examples.
go-expert
Expert idiomatic Go: concurrency, interfaces, error handling, and the standard library. Trigger keywords: Go, golang, goroutine, channel, context, select, interface, error wrapping, errors.Is, defer, sync, Mutex, WaitGroup, errgroup, race, pprof. Use for writing/refactoring Go, designing concurrency, or fixing races…