go

go is a skill for Claude Code, Codex from strale-io/strale. It costs 84 tokens per session (2,261 once invoked), scanned A, original, MIT.

A workflow for checking the current code change, simplifying it, and preparing a pull request, which is a proposed change for review. It detects what parts of the project changed and applies relevant verification steps.

In plain words
What is it for?
Use it after completing a change to verify code, APIs, database work, SDKs, or documentation, simplify the result, and open a pull request.
Why use it?
It combines testing and release checks so a change is not sent for review before required checks pass. It stops when a root problem cannot be fixed safely.

Skill for Claude CodeCodex

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

Made for: Claude Code, Codex.

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/strale-io/strale/go.svg)](https://agentmods.dev/skills/strale-io/strale/go)
Your own site
<a href="https://agentmods.dev/skills/strale-io/strale/go"><img src="https://agentmods.dev/badge/skills/strale-io/strale/go.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,261 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 $0.00084 $0.02261
Opus 5 $0.00042 $0.01130
Sonnet 5 $0.00017 $0.00452
Haiku 4.5 $0.00008 $0.00226

Measured 3d ago against content hash f3629b7b0737, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 3d 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.

.agents/skills/go/SKILL.md · 139 lines

How it starts

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

/go — verify and ship

Take the change that's currently on this branch and drive it to a PR. Never skip steps to "make it green faster" — if something fails, fix the root cause or stop and report.

1. Scope detection

Run git diff --name-only main...HEAD and (if dirty) git status --porcelain. Classify each changed file:

  • capabilityapps/api/src/capabilities/*.ts or manifests/*.yaml
  • api-routeapps/api/src/routes/*.ts or apps/api/src/app.ts or apps/api/src/lib/*.ts
  • dbapps/api/src/db/** or apps/api/drizzle/**
  • sdkpackages/sdk-typescript/**, packages/mcp-server/**, packages/langchain-strale/**, packages/crewai-strale/**, packages/semantic-kernel-strale/**
  • frontend — anything in strale-frontend (separate repo — skip unless user says so)
  • docs-only*.md, AGENTS.md, .codex/** (no code verification, just PR)

A change can span categories. Run verification for every category touched.

2. Verification gates (all must pass)

Every run

cd apps/api && npx tsc --noEmit --project tsconfig.json

capability touched

For each touched capability slug:

cd apps/api
npx tsx scripts/validate-capability.ts --slug <slug>
npx tsx scripts/smoke-test.ts --slug <slug>

Also verify checkReadiness(slug) returns ready: true (see src/lib/capability-readiness.ts). If the capability is new, confirm a manifest exists at manifests/<slug>.yaml — if not, STOP and report. This enforces the Capability Onboarding Protocol (DEC-20260320-B).

Never edit src/lib/sqs.ts to "fix" a score — that's the Scoring Integrity rule. Fix the root cause.

api-route touched

cd apps/api && npx vitest run <touched-test-file>

If there's no test for the touched route, say so explicitly in the final report. Do not invent tests as part of /go — that's a separate task.

db touched

Confirm a migration file exists in apps/api/drizzle/ corresponding to the schema change. If schema changed but no migration, STOP.

Read the full file on GitHub · 139 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. 3d ago First seen · 139 lines · 84 tokens per session scan A f3629b7b0737

Subscribe to this mod's changes

go is a skill published in the GitHub repository strale-io/strale (4 stars, last pushed 4d ago), licensed MIT. It adds 84 tokens to every session and 2,261 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-08-31.