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 medy-gribkov/arcana --skill monitoring-observabilitygit clone --depth 1 https://github.com/medy-gribkov/arcanaWrote 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/medy-gribkov/arcana/monitoring-observability)<a href="https://agentmods.dev/skills/medy-gribkov/arcana/monitoring-observability"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/monitoring-observability/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/medy-gribkov/arcana/monitoring-observability"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/monitoring-observability.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.00106 | $0.03301 |
| Opus 5 | $0.00053 | $0.01650 |
| Sonnet 5 | $0.00021 | $0.00660 |
| Haiku 4.5 | $0.00011 | $0.00330 |
Grade A, and why
monitoring-observability 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 9d 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.
2. Check downstream dependencies: `curl -s http://payment-svc:8080/readyz` How it starts
The opening of the file, as written. The whole thing — 414 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior SRE/platform engineer who designs observability systems that make production incidents diagnosable in minutes, not hours.
Use this skill when
- Setting up structured logging, metrics, or tracing in a service
- Designing Grafana dashboards or Prometheus alerting rules
- Implementing health check, readiness, or liveness endpoints
- Debugging production issues with distributed tracing
- Defining SLOs/SLIs or writing on-call runbooks
- Integrating Sentry, OpenTelemetry, or Prometheus client libraries
Structured Logging
Emit JSON logs with consistent fields. Never use fmt.Println or console.log in production.
Required fields on every log line: timestamp, level, message, service, correlation_id.
Go (zerolog)
import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"os"
)
func initLogger(service string) zerolog.Logger {
return zerolog.New(os.Stdout).With().
Timestamp().
Str("service", service).
Caller().
Logger()
}
// Per-request: inject correlation ID from middleware
func handler(w http.ResponseWriter, r *http.Request) {
corrID := r.Header.Get("X-Correlation-ID")
if corrID == "" {
corrID = uuid.NewString()
}
logger := log.With().Str("correlation_id", corrID).Logger()
logger.Info().Str("path", r.URL.Path).Msg("request received")
}
Node.js (pino)
import pino from "pino";
const logger = pino({
level: process.env.LOG_LEVEL ?? "info",
formatters: {
level: (label) => ({ level: label }),
},
base: { service: "order-api" },
timestamp: pino.stdTimeFunctions.isoTime,
});
// Per-request child logger with correlation ID
function createRequestLogger(correlationId: string) {
return logger.child({ correlationId });
}
Log Level Discipline
| Level | Use for | Example |
|---|---|---|
error |
Broken contract, needs human action | DB connection lost, payment failed |
warn |
Degraded but self-healing | Retry succeeded, cache miss fallback |
info |
Business events, request lifecycle | Order placed, user login, deploy started |
debug |
Internal state for troubleshooting | Query params, cache hit ratio, parsed payload |
What ships with it
1 file 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.
- 9d ago First seen · 414 lines · 106 tokens per session scan A 1f199915f65a
monitoring-observability is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 106 tokens to every session and 3,301 once invoked, about $0.0005 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
hue
Meta-skill that generates new design language skills. Works on Claude Code and Codex. Use when the user says 'create a design skill', 'generate design language', 'new design system skill', 'design skill inspired by X', 'design skill from this screenshot', '/hue', or 'use hue'. Also triggers for 'remix my design skill'…
layout-discipline
A set of rules for keeping AI-generated web pages visually consistent, including their text sizes, spacing, alignment, cards, and colors.
ab-test-designer
Design and analyze A/B tests — sample sizes, significance testing, multiple comparisons, and results interpretation.
accessibility-checker
Audit and fix accessibility issues — WCAG 2.2 compliance, ARIA labels, color contrast, keyboard navigation, and screen-reader compatibility.
alerting-config
Design alert configurations — thresholds, severity levels, routing, de-duplication, and escalation policies.
algorithmic-art
Generate creative algorithmic and generative art using code — fractals, parametric patterns, noise fields, and procedural imagery.