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 Vimalk0703/shipworthy --skill observability-by-defaultgit clone --depth 1 https://github.com/Vimalk0703/shipworthyWrote 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/vimalk0703/shipworthy/observability-by-default)<a href="https://agentmods.dev/skills/vimalk0703/shipworthy/observability-by-default"><img src="https://agentmods.dev/badge/skills/vimalk0703/shipworthy/observability-by-default.svg" alt="Measured on agentmods" 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.00030 | $0.00691 |
| Opus 5 | $0.00015 | $0.00345 |
| Sonnet 5 | $0.00006 | $0.00138 |
| Haiku 4.5 | $0.00003 | $0.00069 |
Grade A, and why
observability-by-default 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 6d 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 — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Observability by Default
Principle
If you can't see it, you can't fix it. Every service should be observable from the first commit, not bolted on after the first outage.
Structured Logging
First Step: Install a Logger
Before writing any code that logs anything, install a structured logger:
- Node.js:
npm install pino(orpino-httpfor Express/Fastify) - Python: use stdlib
loggingwith JSON formatter, orstructlog - Go: use
slog(stdlib) orzerolog
NEVER use console.log for any purpose — not even "Server running on port 3000." Replace every console.log with logger.info(). This is non-negotiable because console.log is unstructured, has no levels, and cannot be collected by log aggregation tools.
// WRONG — even for startup
console.log(`Server running on port ${PORT}`);
// RIGHT
import pino from 'pino';
const logger = pino();
logger.info({ port: PORT }, 'Server started');
Rules
- JSON format — not free-text strings
- Correlation IDs — every request gets a unique ID, propagated through all log entries
- Log levels used correctly:
error: something failed that shouldn't have (action needed)warn: something unexpected but handled (investigate if frequent)info: significant business events (user created, order placed)debug: detailed diagnostic info (disabled in production)
- Never log: passwords, tokens, PII, credit card numbers, full request bodies with sensitive fields
Pattern
logger.info('User created', {
correlationId: req.id,
userId: user.id,
email: user.email, // only if non-sensitive
duration: Date.now() - start
});
Health Check Endpoints
Every service MUST expose:
GET /health— returns 200 if service is runningGET /health/ready— returns 200 if service can handle traffic (DB connected, dependencies available)
Key Metrics (The Four Golden Signals)
- Latency — how long requests take (p50, p95, p99)
- Traffic — requests per second
- Errors — error rate (5xx responses / total responses)
- Saturation — how full your resources are (CPU, memory, connections)
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.
- 6d ago First seen · 78 lines · 30 tokens per session scan A 293927a9b4ca
observability-by-default is a skill published in the GitHub repository Vimalk0703/shipworthy (7 stars, last pushed 4mo ago), licensed MIT. It adds 30 tokens to every session and 691 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
skill-rails-api
Padrões DARE para APIs em Ruby on Rails 8 — API mode, ActiveRecord, Solid Queue, Solid Cable, Action Cable, strong parameters, services (interactors), serializers (Blueprinter/Alba), Devise/JWT, rack-attack, rswag/grape-swagger.
dare-laravel-api
Padrões DARE para APIs REST em Laravel 11 + PHP 8.3 — Strict Types, FormRequests, Services, JsonResources, Eloquent + casts, tratamento global de exceções, testes Feature/Pest, PHPStan/Larastan, Pint.
dare-realtime
Comunicação real-time (WebSocket, SSE) em projetos DARE. Fornece schema validation de eventos, registro central de tipos, reconexão com exponential backoff, e gerenciamento de subscriptions com limpeza garantida (zero ghost listeners).
dare-rust-workspace
Decisão e migração de Cargo workspace multi-crate para projetos Rust/Axum. Use durante design/blueprint para decidir o layout, ou quando um projeto single-crate cresceu além do que comporta confortavelmente. Cobre os 2 cenários — escolher na fase de design + migrar projeto existente — com critérios objetivos e plano…
skill-fastapi-api
Padrões DARE para APIs REST em Python + FastAPI + Pydantic + uvicorn. Routers, dependency injection, Pydantic v2 schemas, async SQLAlchemy 2.0, autenticação OAuth2 + JWT, rate limit com slowapi, pytest + httpx, OpenAPI auto-gerado.
skill-go-gin-api
Padrões DARE para APIs REST em Go + Gin (ou stdlib net/http) + sqlc + PostgreSQL. Handlers, services, repositories, middleware, validação com go-playground/validator, JWT, rate limit, swag (OpenAPI), testes com testify e httptest.