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 kouroshez/coding-os --skill go-fibergit clone --depth 1 https://github.com/kouroshez/coding-osWrote 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/kouroshez/coding-os/go-fiber)<a href="https://agentmods.dev/skills/kouroshez/coding-os/go-fiber"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/go-fiber/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/kouroshez/coding-os/go-fiber"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/go-fiber.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.00103 | $0.01778 |
| Opus 5 | $0.00051 | $0.00889 |
| Sonnet 5 | $0.00021 | $0.00356 |
| Haiku 4.5 | $0.00010 | $0.00178 |
Grade A, and why
go-fiber 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 5d 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 — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.
REQUIRED BACKGROUND: This skill depends_on: [clean-code, backend-fundamentals]. Both are loaded transitively — clean-code gives universal code quality, backend-fundamentals gives stack-agnostic backend patterns (services/selectors, idempotency, envelopes, N+1, migrations, auth). This skill adds ONLY Fiber-specific layering on top.
Pre-Code Checklist
- Read
docs/engineering/fiber-rules.md— canonical Fiber policy - If touching HTTP handlers: read
docs/playbooks/fiber-service.md - If touching request parsing: read
docs/api-contracts/error-format.md - Confirm Fiber version in
go.mod(v3, Go 1.25+; see references/fiber-v3-patterns.md) -
go vet ./...clean before editing
Handler Pattern
Every handler has the same signature and lifecycle:
func ListOrders(svc *service.Orders) fiber.Handler {
return func(c fiber.Ctx) error {
// 1. Parse + validate
var q ListQuery
if err := c.Bind().Query(&q); err != nil {
return fiber.NewError(fiber.StatusBadRequest, "invalid query")
}
if err := validate.Struct(&q); err != nil {
return fiber.NewError(fiber.StatusUnprocessableEntity, err.Error())
}
// 2. Call the service with a context (cancellation propagates)
orders, err := svc.List(c.Context(), q)
if err != nil {
return err // central error handler renders the envelope
}
// 3. Respond
return c.Status(fiber.StatusOK).JSON(fiber.Map{
"data": orders,
"meta": fiber.Map{"count": len(orders)},
})
}
}
Rules:
- No business logic inside the handler. Orchestrate only.
- No direct DB calls. Handler → service → repository.
- Always pass
c.Context()downstream — nevercontext.Background().
Error Envelope
Central error handler in app.Config{}:
app := fiber.New(fiber.Config{
ErrorHandler: func(c fiber.Ctx, err error) error {
code := fiber.StatusInternalServerError
msg := "internal error"
if e, ok := err.(*fiber.Error); ok {
code = e.Code
msg = e.Message
}
return c.Status(code).JSON(fiber.Map{
"error": fiber.Map{
"code": statusToSlug(code),
"message": msg,
"details": extractDetails(err),
},
})
},
})
What ships with it
5 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.
- 5d ago First seen · 204 lines · 103 tokens per session scan A 5e96051d69c3
go-fiber is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 103 tokens to every session and 1,778 once invoked, about $0.0005 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
printing-press
Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…
go-programming-expert
Expert-level skill for Go programming (Go 1.25+). Covers high-performance microservices, concurrency patterns, sqlc, net/http, Gin/Echo/Fiber, gRPC, and testing in English and Indonesian.
chi
Chi lightweight Go HTTP router. Covers routing, middleware, context, and patterns. Use for idiomatic, stdlib-compatible Go APIs. USE WHEN: user mentions "chi", "go-chi", "lightweight go router", "stdlib go router", asks about "chi middleware", "chi router", "chi context", "idiomatic go api", "net/http compatible…
echo
Echo Go web framework. Covers routing, middleware, binding, context, and WebSocket. Use for high-performance, minimalist Go APIs. USE WHEN: user mentions "echo", "labstack echo", "go echo framework", asks about "echo middleware", "echo context", "echo binding", "echo websocket", "high performance go api", "echo…
gin
Gin Go web framework. Covers routing, middleware, binding, validation, and rendering. Use for fast, minimalist Go APIs. USE WHEN: user mentions "gin", "gin-gonic", "go web framework", "go rest api", asks about "gin middleware", "gin binding", "gin validation", "gin router", "fast go api", "gin context" DO NOT USE FOR…
fiber
Fiber Go web framework inspired by Express. Covers routing, middleware, context, WebSocket, and prefork. Use for Express-like Go development. USE WHEN: user mentions "fiber", "gofiber", "express-like go", "fasthttp go", asks about "fiber middleware", "fiber context", "fiber prefork", "fiber websocket", "go express"…