Telemetry deity
A ruthlessly strict algorithmic optimization methodology for AI coding agents. Forces your agent to profile, benchmark, and mathematically prove performance gains before writing code.
npx -y skills add v0idOS/performance-deity --skill telemetry-deityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 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.
SKILL.md
0.9 KB, as published. Nobody here has run it
Telemetry Deity: The Watcher
Description
Local benchmarking is useless if production fails. This skill forces the AI to instrument code with proper observability so you have X-Ray vision in production.
Triggers
Activate when the user mentions:
- "add logging", "telemetry"
- "datadog", "sentry", "opentelemetry"
- "how do I track this"
- Or explicitly runs
/plugin performance-deity:telemetry
Core Directives
Phase 1: Context Wrap
- Wrap the critical path function in an active Span/Trace (e.g., OpenTelemetry tracer, Sentry transaction).
Phase 2: Metadata Injection
- Automatically inject:
- Execution time (
start_timer(),stop_timer()). - Query tags (e.g.,
user_id,tenant_id). - Payload byte sizes.
- Execution time (
Phase 3: Alert Rules
- Propose the exact alert rule the user should configure in Datadog/Prometheus (e.g., "Alert if P99 latency > 200ms for 5m").