observability-by-default

observability-by-default is a skill for Claude Code from Vimalk0703/shipworthy. It costs 30 tokens per session (691 once invoked), scanned A, original, MIT.

A practice of adding logs, request tracing, health checks, error tracking, and key measurements to a service from its first version. These signals show what the service is doing and where it is failing.

In plain words
What is it for?
Use it when building services, replacing unstructured console output, tracking requests, checking service health, recording errors, and monitoring important metrics.
Why use it?
It makes production problems easier to find and diagnose instead of leaving developers to guess. Consistent structured logs and request IDs help connect events across a service.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the shipworthy plugin — 66 skills, 7 commands, 3 hooks shipped together

Good fit Use it when building services, replacing unstructured console output, tracking requests, checking…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vimalk0703/shipworthy/observability-by-default
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.

Any agent
npx skills add Vimalk0703/shipworthy --skill observability-by-default
Clone the repo
git clone --depth 1 https://github.com/Vimalk0703/shipworthy

Made for: Claude Code.

Or install shipworthy, the plugin that ships this one along with the rest of its 66 skills, 7 commands, 3 hooks.

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 observability-by-default

README.md
[![agentmods](https://agentmods.dev/badge/skills/vimalk0703/shipworthy/observability-by-default.svg)](https://agentmods.dev/skills/vimalk0703/shipworthy/observability-by-default)
Your own site
<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>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 691 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00030 $0.00691
Opus 5 $0.00015 $0.00345
Sonnet 5 $0.00006 $0.00138
Haiku 4.5 $0.00003 $0.00069

Measured 6d ago against content hash 293927a9b4ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

skills/architecture/observability-by-default/SKILL.md · 78 lines

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 (or pino-http for Express/Fastify)
  • Python: use stdlib logging with JSON formatter, or structlog
  • Go: use slog (stdlib) or zerolog

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 running
  • GET /health/ready — returns 200 if service can handle traffic (DB connected, dependencies available)

Key Metrics (The Four Golden Signals)

  1. Latency — how long requests take (p50, p95, p99)
  2. Traffic — requests per second
  3. Errors — error rate (5xx responses / total responses)
  4. Saturation — how full your resources are (CPU, memory, connections)

Read the full file on GitHub · 78 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. 6d ago First seen · 78 lines · 30 tokens per session scan A 293927a9b4ca

Subscribe to this mod's changes

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.

Related

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.

dewtech-technologies/dare-method · 66 tokens

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.

dewtech-technologies/dare-method · 62 tokens

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).

dewtech-technologies/dare-method · 54 tokens

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…

dewtech-technologies/dare-method · 81 tokens

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.

dewtech-technologies/dare-method · 71 tokens

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.

dewtech-technologies/dare-method · 67 tokens