outthislife/brooklyn-skills · Archived

runtime-debug

>- Debug broken runtime/environments by checking logs and observability first, then code. Use when a URL, deploy, or ephemeral/CI environment fails at runtime rather than a local code bug.

First seen Aug 10, 2026

Installation

$ npx skills add outthislife/brooklyn-skills --skill runtime-debug

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 outthislife/brooklyn-skills · top by installs.

npx skills add outthislife/brooklyn-skills

Browse all from outthislife/brooklyn-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 185
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,085 B
  • docs SUMMARY.md 206 B

History

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

SKILL.md

Runtime Debug

When something breaks at runtime (a URL 500s, a deploy is down, an ephemeral env misbehaves), look at what actually happened before editing code.

Steps

  1. Reproduce and capture the real failure (status, error, request id, time).
  2. Check observability first: logs, traces, metrics. Use an observability MCP

(e.g. Datadog) if one is available/connected; otherwise fall back to the platform's log stream (CI job, container, Jenkins, cloud logs).

  1. Locate the failing service/line from the evidence, not a guess.
  2. Fix the real cause. Don't add logging-only "fixes" and call it done.
  3. For intentional lab/ephemeral config (test secrets, fail-open), don't raise

false alarms — leave required env in place.

Don't

  • Rewrite code speculatively before reading logs.
  • Report fixed without re-checking the runtime.