Observability review
Skill nevitonsantana/adaptive-skills/skills/observability-review
38 portable Agent Skills for disciplined, reviewable AI-assisted work across Codex, Claude Code, GitHub Copilot, and compatible agents.
npx -y skills add nevitonsantana/adaptive-skills --skill observability-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Design or review metrics, events, alerts, and diagnostics so they support real decisions and expose real failure.
SKILL.md
2.6 KB, 514 tokens by cl100k_base, as published. Nobody here has run it
Overview
Use this skill when the question is what to measure, how to interpret it, and how to avoid vanity or blind instrumentation.
When to Use
- instrumentation planning
- health metrics
- alerts
- operational dashboards
- diagnostics
When NOT to Use
- when there is no actual decision or operational risk behind the metric
Core Moves
- Name the decision the signal should support.
- Choose the signal type and unit of analysis.
- Define the minimum reading needed.
- State owner, threshold, and action.
Optional Modules
- Coverage gaps — Check whether silence could hide failure.
- Incentive review — Test whether the metric would drive harmful behavior.
- Segmentation pass — Break the signal by source, queue, user type, or time window when averages would hide degradation.
- Born-measurable check (feature governance) — When reviewing a feature being shipped, require that it is born measurable: a single primary metric (with direction), at least one guardrail metric that must not get worse, an owner, and 30/90-day review dates. These map to the
primary_metric,guardrail_metrics,owner, andreview_datesfields of the Feature Value Governance Contract. No primary metric → no broad rollout.
Activation Triggers
- Use coverage gaps when the absence of data could be misread as stability.
- Use incentive review when the metric may influence team behavior.
- Use segmentation when aggregation can hide partial failure.
- Use the born-measurable check whenever the subject is a feature heading to rollout; block broad rollout if primary metric, guardrail, owner, or review dates are missing.
Expected Output
- decision-linked metric or alert
- clear owner and cadence
- misread risk note
Verification
- The signal has an action attached to it.
- The unit of analysis is explicit.
- The reading distinguishes health from value when needed.
Handoff Signals
- Instrumentation depends on engineering changes by another owner.
- A policy or product decision is required before the metric can be finalized.
Pairs Well With
feature-planningqa-reviewbusiness-design
Anti-patterns
- Measuring what is easy instead of what is useful.
- Treating activity as value.
- Hiding partial degradation behind averages.