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 vaquarkhan/Fullstack-development-agent-skills --skill go-gin-rest-microservicesgit clone --depth 1 https://github.com/vaquarkhan/Fullstack-development-agent-skillsWrote 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/vaquarkhan/fullstack-development-agent-skills/go-gin-rest-microservices)<a href="https://agentmods.dev/skills/vaquarkhan/fullstack-development-agent-skills/go-gin-rest-microservices"><img src="https://agentmods.dev/badge/skills/vaquarkhan/fullstack-development-agent-skills/go-gin-rest-microservices/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/vaquarkhan/fullstack-development-agent-skills/go-gin-rest-microservices"><img src="https://agentmods.dev/badge/skills/vaquarkhan/fullstack-development-agent-skills/go-gin-rest-microservices.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.00038 | $0.00459 |
| Opus 5 | $0.00019 | $0.00230 |
| Sonnet 5 | $0.00008 | $0.00092 |
| Haiku 4.5 | $0.00004 | $0.00046 |
Grade A, and why
go-gin-rest-microservices 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 8d 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.
What it actually says
Go Gin REST Microservices
Use When
- Building Go HTTP APIs with Gin or similar routers
- Low-latency services, workers, or API gateways in Go
- Standardizing handler → service → repository layering in Go
Workflow
- Define handler, service, and repository packages per domain.
- Use context.Context for cancellation and request-scoped values.
- Wire middleware: logging, recovery, auth, metrics, tracing.
- Configure graceful shutdown and health/readiness endpoints.
- Test handlers with httptest and integration tests with testcontainers-go.
Required Checks
- context passed to all I/O calls; no context.Background() in request path
- Errors wrapped with fmt.Errorf("%w") for observability
- SQL uses parameterized queries — no string concatenation
- Graceful shutdown drains in-flight requests
Examples And Templates
See examples/ for side-by-side good vs bad patterns agents commonly get wrong.
See templates/ for copy-paste starters aligned with this skill.
Decision Framework
- Prefer explicit dependency injection (constructors) over global state.
- Use table-driven tests for handlers and pure functions.
- Keep handlers thin — parse, call service, map response.
- OpenTelemetry for traces; structured slog/zap for logs.
Common Rationalizations And Rebuttals
- "Global DB pool is simpler." -> Complicates testing; inject dependencies.
- "panic/recover is enough error handling." -> Return typed errors; map to HTTP status in one place.
- "We skip context cancellation." -> Leaks resources under client disconnect.
Evidence Pack
- Middleware chain diagram and auth flow
- Handler tests including error status mapping
- Trace/log sample with correlation ID
- Graceful shutdown test or runbook
Exit Criteria
- Handlers are thin and testable with mocked services
- Context, errors, and observability follow Go production conventions
- Service shuts down cleanly under SIGTERM
What ships with it
3 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.
- 8d ago First seen · 60 lines · 38 tokens per session scan A 4e7a87fdc977
go-gin-rest-microservices is a skill published in the GitHub repository vaquarkhan/Fullstack-development-agent-skills (2 stars, last pushed 3d ago), licensed MIT. It adds 38 tokens to every session and 459 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-31.
Other skills, from other repositories
others-skills
Use when needing Go language development, desktop RPA automation, self-hosted email marketing, Java Spring Cloud scaffolding, or SSL/TLS certificate automation. Index of 6 skills: Go, RobotGo, RobotGo-Flow, BillionMail, RuoYi-Cloud, acme.sh.
ruoyi-cloud
Use when scaffolding Java Spring Cloud microservice backends — Nacos service discovery, Sentinel rate limiting, Seata distributed transactions, Spring Boot 3 + Vue 3 admin. RuoYi-Cloud: popular Chinese Spring Cloud microservice boilerplate framework.
go-expert
Expert-level Go development with Go 1.22+ features, concurrency, standard library, and production-grade best practices. Use when the user mentions concurrency, microservices, or backend, or when the task involves idiomatic Go, goroutines and channels, context-based cancellation, or writing an HTTP server.
spring-boot
Spring Boot 3.x - Java framework for production-ready applications with dependency injection, REST APIs, data access, security, and actuator monitoring.
spring-boot-4-conventions
Spring Framework 7 / Spring Boot 4 idioms and defaults. Use when writing or reviewing controllers, services, configuration, HTTP clients, async/virtual-thread code, or anything touching Spring's programming model.
quarkus-expert
High-performance Quarkus framework expertise covering reactive patterns, CDI, build-time augmentation, and cloud-native development. Use for general Quarkus questions.