tjboudreaux/cc-engineering-skills · Archived

eng-observability

Design every change with traceability, diagnostics, and fast incident triage in mind across mobile, web, and web3 stacks.

First seen May 26, 2026

Installation

$ npx skills add tjboudreaux/cc-engineering-skills --skill eng-observability

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tjboudreaux/cc-engineering-skills · top by installs.

npx skills add tjboudreaux/cc-engineering-skills

Browse all from tjboudreaux/cc-engineering-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,705 B
  • docs SUMMARY.md 146 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 11 installs

SKILL.md

Observability and Debugging Discipline

Intent

  • Make it trivial to answer “what is happening” and “why” without attaching a debugger in production.
  • Ensure logs, metrics, events, and traces capture user intent, environment, and failure context while protecting sensitive data.

Guiding Principles

  1. Prefer structured logs + correlation IDs over ad-hoc strings.
  2. Emit signals at every boundary (client, API, worker, contract invocation).
  3. Include context (user/session/network/chain) necessary to reproduce issues.
  4. Keep signal cost reasonable—throttle chatty paths, sample intelligently.
  5. Build fast local debugging loops (trace replay, state inspectors, dev wallets).

Workflow

  1. Identify critical paths affected and define success/error signals per path.
  2. Add/extend tracing spans or log blocks with consistent field names.
  3. Validate observability locally by simulating successes, errors, and timeouts; ensure signals reach the sink (console, APM, analytics, chain explorer).
  4. Document dashboards, queries, or CLI commands useful for post-deploy verification.
  5. For on-chain logic, emit events with canonical schema so downstream indexers can consume them.

Verification

  • Run the code with verbose logging/tracing enabled; inspect outputs for clarity and privacy.
  • Confirm metrics/counters appear where expected (APM, telemetry pipeline, analytics, chain explorer).
  • Dry-run incident response: can you locate a test failure or simulated outage using only emitted signals? If not, iterate.