Bugscope
Description
Claude Code / Codex / Copilot skill suite that scopes a bug before fixing it. bugscope-finder diagnoses the issue from a report (text + screenshots) and produces a structured execution plan; bugscope-resolver executes only that plan. Framework-agnostic — reads your project's own agent config to adapt.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
BugScope
**A two-skill suite that scopes a bug before fixing it.** `bugscope-finder` turns a bug report into a written, falsifiable plan on disk; `bugscope-resolver` executes that plan and nothing else — and stops when the diagnosis turns out to be wrong.
Works with **Claude Code**, **OpenAI Codex**, and **GitHub Copilot**. Framework-agnostic: it reads your project's own agent configuration instead of guessing at your stack.
The problem it addresses
The common failure mode of a coding agent on a bug is not that it can't find the cause. It is that it finds *a* cause and fixes it in the same breath: nine files touched, the original symptom possibly still there, and no way to tell which change was the fix. The reasoning that justified the diff evaporates the moment the diff exists.
BugScope splits the two halves and puts a document between them.
bug report ──► bugscope-finder ──► .bugscope/plan-.md ──► bugscope-resolver ──► diff
text ▲ │
screenshot │ you read it, │ hypothesis
stack trace │ edit it, reject it │ refuted?
issue │ ▼
└──────────────── status: invalidated
(no code changed)
The plan is a file, not conversation state. You can read it, argue with it, hand-edit it, or hand it to a different agent tomorrow. And because the plan names a scope, the diff you get is the diff you approved.
The two skills
`bugscope-finder` — diagnose, don't fix
- Phase 0 — detect the project. Reads
AGENTS.md,.claude/CLAUDE.md,.github/copilot-instructions.md,.cursor/rules/and friends first, because they carry intent no file-sniffing recovers ("tests run viamake check", "never editgenerated/").
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11