Borrowing it
Nothing to install: this file belongs to itokun99/superspec-ai-workflow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/itokun99/superspec-ai-workflow/main/.agents/skills/golang-gin-api/SKILL.mdgit clone --depth 1 https://github.com/itokun99/superspec-ai-workflowWrote 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/itokun99/superspec-ai-workflow/golang-gin-api)<a href="https://agentmods.dev/skills/itokun99/superspec-ai-workflow/golang-gin-api"><img src="https://agentmods.dev/badge/skills/itokun99/superspec-ai-workflow/golang-gin-api/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/itokun99/superspec-ai-workflow/golang-gin-api"><img src="https://agentmods.dev/badge/skills/itokun99/superspec-ai-workflow/golang-gin-api.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.00041 | $0.02380 |
| Opus 5 | $0.00020 | $0.01190 |
| Sonnet 5 | $0.00008 | $0.00476 |
| Haiku 4.5 | $0.00004 | $0.00238 |
Grade A, and why
golang-gin-api scanned grade A with 1 finding 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 10d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Verify with evidence, not claims — `curl` the endpoint, check the response, paste the output. "I believe it works" is not "the output shows it works" The source is not reproduced here
No licence file
A repository with no LICENSE is all rights reserved by default, so the body is not copied here. The metadata, the measurements and the link are.
What ships with it
31 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.
- references/background-jobs-goroutine-and-pool.md 3.5 KB
- references/background-jobs-queue-and-shutdown.md 3.5 KB
- references/defensive-handler-patterns.md 3.7 KB
- references/error-handling-apperror.md 4.1 KB
- references/error-handling-recovery.md 1.8 KB
- references/error-handling-validation.md 3.0 KB
- references/file-uploads-cloud.md 2.4 KB
- references/file-uploads-local.md 4.0 KB
- references/middleware-core.md 4.2 KB
- references/middleware-logging-and-recovery.md 3.3 KB
- references/middleware-timeout-and-custom.md 3.2 KB
- references/rate-limiting-algorithms.md 3.5 KB
- references/rate-limiting-fallback.md 2.3 KB
- references/rate-limiting-headers.md 1.8 KB
- references/rate-limiting-peruser.md 2.4 KB
- references/rate-limiting-redis-sliding.md 2.2 KB
- references/rate-limiting-redis.md 2.9 KB
- references/rate-limiting-sliding-window.md 2.2 KB
- references/rate-limiting-tiered.md 3.0 KB
- references/routing-groups-and-versioning.md 3.8 KB
- references/routing-params-and-wildcards.md 3.4 KB
- references/routing-validators-and-limits.md 2.4 KB
- references/safe-context-extraction.md 4.3 KB
- references/server-handlers-and-errors.md 3.6 KB
- references/server-setup-and-routes.md 3.9 KB
- references/websocket-auth-and-keepalive.md 3.5 KB
- references/websocket-chat-handler.md 1.5 KB
- references/websocket-hub-and-client.md 3.9 KB
- references/websocket-setup-and-echo.md 3.4 KB
- references/websocket-shutdown-and-messages.md 3.8 KB
- references/websocket-testing.md 3.8 KB
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.
- 10d ago First seen · 148 lines · 41 tokens per session scan A 2d01e06de207
golang-gin-api is a skill published in the GitHub repository itokun99/superspec-ai-workflow (2 stars, last pushed 2mo ago), with no licence file. It adds 41 tokens to every session and 2,380 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
adapter-express
Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.
trpc-router
Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.
golang-graphql
Implements GraphQL APIs in Golang using gqlgen or graphql-go. Apply when building GraphQL servers, designing schemas, writing resolvers, handling subscriptions, or integrating GraphQL with existing Go HTTP services. Also apply when the codebase imports github.com/99designs/gqlgen or github.com/graph-gophers/graphql-go.
golang-grpc
Provides gRPC usage guidelines, protobuf organization, and production-ready patterns for Golang microservices. Use when implementing, reviewing, or debugging gRPC servers/clients, writing proto files, setting up interceptors, handling gRPC errors with status codes, configuring TLS/mTLS, testing with bufconn, or…
golang-swagger
Golang OpenAPI/Swagger documentation with swaggo/swag — annotation comments (@Summary, @Param, @Success, @Router, @Security), swag init code generation, framework integrations (gin, echo, fiber, chi, net/http), security definitions (Bearer/JWT, OAuth2, API key), and struct tags (swaggertype, enums, example…
goframe-v2
GoFrame development skill. TRIGGER when writing/modifying Go files, implementing services, creating APIs, or database operations. DO NOT TRIGGER for frontend/shell scripts.