commit
Selectively stages and commits only the changes related to the current session, skipping unrelated modifications.
Use when the person reports broken behaviour or starts a session to file a bug. Reproduces and reports. Never fixes.
$ npx -y skills add dcouple/Pane --skill bug-intake --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/bug-intakeContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the person reports broken behaviour or starts a session to file a bug. Reproduces and reports. Never fixes.
name: bug-intake description: Use when the person reports broken behaviour or starts a session to file a bug. Reproduces and reports. Never fixes.
The goal is a report someone else can act on. The first move is reproduction, not theory.
1. Restate the symptom in one sentence and confirm it with the person. Get the environment, the account or record involved, and when it started. 2. Reproduce it.
3. Interpret the evidence yourself. Classify the failure early: compile, logic, race, state, integration, environment, or interface. Write three to five ranked hypotheses before reading deeply, then test them against the code and its recent history. Compare a broken path with a working one when you can. Drop a theory once the evidence rules it out, and leave choosing the fix to whoever takes the report. If only diagnostic logging would settle it, say exactly what you would add and ask first. 4. Write the success definition: the bug is gone when what is observably true. 5. Choose a route:
6. File the report wherever the person tracks work (a GitHub issue, Linear, or another tracker). With no tracker, save it as `index.html` in a bundle of its own in the format at [references/bug-report.md](references/bug-report.md), rendered with the [`page`](../page/SKILL.md) house standard, then stop.
Hand it on. For `direct-to-implementation`, tell them to start an implementation session with the report as its source. For `options-first`, tell them to take the report to a planning session.
Repo: dcouple/Pane
Selectively stages and commits only the changes related to the current session, skipping unrelated modifications.
Creates a reconciled implementation plan by combining a structured plan draft with a normalized intent brief and a PRP-style research dossier, then…
Have an interactive discussion about a topic, approach, or feature. Researches the codebase as needed, talks through options, and updates ./tmp/context.md with…
Executes an approved plan with one primary implementation stream by default, using bounded parallel sidecars only when the write scopes are truly disjoint.…
Investigates bugs through hypothesis-driven root cause analysis. Automatically invoked when the user reports a bug, error, broken behavior, or something not…
Commits changes grouped by done-plans, rebases main, runs build and quality gates, then creates or updates a PR. Replaces the commit command. Use when you're…