antigravity-agents: Skill for Claude Code

.agents/skills/observability/SKILL.md

observability is a skill for Claude Code, Codex from rafaelghif/antigravity-agents. It costs 25 tokens per session (979 once invoked), scanned A, original, MIT.

A set of rules for adding logs, measurements, and request traces to an application. Observability means collecting information that helps explain what software is doing, especially in production.

In plain words
What is it for?
Use it when implementing structured logs, OpenTelemetry data, request-rate/error/latency measurements, and tracing across services or AI-agent workflows.
Why use it?
It makes failures and slow requests easier to investigate while requiring sensitive personal data and credentials to be hidden.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is rafaelghif/antigravity-agents's own configuration. It tells Claude Code and Codex how to work on antigravity-agents itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything antigravity-agents configures →

Reuse

Borrowing it

Nothing to install: this file belongs to rafaelghif/antigravity-agents. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/rafaelghif/antigravity-agents/main/.agents/skills/observability/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/rafaelghif/antigravity-agents

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/rafaelghif/antigravity-agents/observability.svg)](https://agentmods.dev/skills/rafaelghif/antigravity-agents/observability)
Your own site
<a href="https://agentmods.dev/skills/rafaelghif/antigravity-agents/observability"><img src="https://agentmods.dev/badge/skills/rafaelghif/antigravity-agents/observability.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 979 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.00025 $0.00979
Opus 5 $0.00013 $0.00490
Sonnet 5 $0.00005 $0.00196
Haiku 4.5 $0.00003 $0.00098

Measured today against content hash ab5b266073d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

observability 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 today.

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.

.agents/skills/observability/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, Telemetry & Distributed Tracing Protocol

Role: Staff Site Reliability & Observability Engineer.

Overview & Trigger Conditions

Activate this skill when implementing application logging, system metrics, distributed tracing, OpenTelemetry (OTel) instrumentation, service health checks, or agentic audit reporting.

Trigger Scenarios & Keywords:

  • Distributed tracing, structured logging, Prometheus metrics, OpenTelemetry, audit logs.
  • Keywords: logging, metrics, tracing, opentelemetry, otel, telemetry, monitor, alerting, grafana, prometheus, red method.

Core Standards & Invariants

  1. OpenTelemetry (OTel) Standardization:

    • Standardize strictly on OpenTelemetry SDKs and OTLP exporters for Logs, Metrics, and Tracing.
    • Do NOT bind directly to proprietary, vendor-locked SDKs. Emit vendor-neutral OTLP data over gRPC/HTTP.
    • Enforce distributed context propagation across HTTP/gRPC boundaries using standard W3C traceparent and tracestate headers.
  2. Structured JSON Logging:

    • All production logs MUST be serialized as structured JSON emitted to stdout/stderr. Arbitrary string concatenation is strictly prohibited.
    • Mandatory JSON schema fields: timestamp (ISO-8601 UTC), level (DEBUG/INFO/WARN/ERROR/FATAL), message, service_name, trace_id, span_id, and context.
    • Never leak raw stack traces or internal query strings to public error responses; correlate internally via trace_id.
  3. RED Metrics Method (Rate, Errors, Duration):

    • For every HTTP endpoint or RPC handler, expose:
      • Rate: Inbound requests per second (http_requests_total counter).
      • Errors: Number of failed requests partitioned by HTTP status code (5xx, 4xx).
      • Duration: Latency distributions using exponential histogram buckets (p50, p95, p99).
    • Cardinality Protection: Never include unbounded identifiers (user IDs, emails, order IDs, timestamps) as Prometheus metric tag labels.

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. today Changed ab5b266073d5
  2. yesterday Changed · +45 lines b7d91c68df22
  3. 3d ago Changed · +7 lines 5f3d008a912c
  4. 8d ago First seen · 26 lines · 25 tokens per session scan A 5c17305501fb

Subscribe to this mod's changes

observability is a skill published in the GitHub repository rafaelghif/antigravity-agents (5 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 979 once invoked, about $0.0001 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

cicd

Automated CI/CD pipeline scaffolding, multi-job quality gates, Dependabot smart auto-merge, and CD release workflows for projects in PARA workspace.

pageel/para-workspace · 34 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

masrisystems/dot-agents · 41 tokens

ci-cd-and-automation

Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.

addyosmani/agent-skills · 45 tokens

agentic-actions-auditor

Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches. AI agents running in CI/CD pipelines.

sickn33/agentic-awesome-skills · 63 tokens

godot-export

Export and build a Godot 4.7 project for distribution: install export templates, define export presets (Windows/macOS/Linux/Web/Android), run headless command-line exports for CI, and handle web (HTML5) COOP/COEP and dedicated-server/headless builds. Use when exporting a Godot game, configuring exportpresets.cfg…

gamedev-skills/awesome-gamedev-agent-skills · 92 tokens

nx-workspace-patterns

Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands.

rmyndharis/antigravity-skills · 35 tokens