From coding-agent
A structured 4-step debugging process: reproduce, understand, hypothesize, verify. Use when encountering any bug, test failure, or unexpected behavior before proposing fixes.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
- Capture the **exact error message** and stack trace
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
| Anti-pattern | Why it is harmful |
|---|---|
| Making random changes until it works | Creates new bugs; you do not understand what you fixed |
| Wrapping in try/catch to silence errors | Hides problems; they resurface later in unexpected ways |
| "Works on my machine" | Environment differences are bugs too; make them reproducible |
| Print-only debugging without forming a hypothesis | Generates noise without narrowing the search space |
| Fixing the symptom (e.g., null check) instead of the root cause | The bug reappears in a different form |