From app-dev
Deep investigation to find actual root cause (not just symptoms)
npx claudepluginhub willsigmon/sigstack --plugin app-devThis skill uses the workspace's default tool permissions.
When a feature is broken, don't just add logging - find and fix the ACTUAL problem.
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.
When a feature is broken, don't just add logging - find and fix the ACTUAL problem.
Understand the Symptom:
Trace the Data Flow:
Check Dependencies:
DIContainer.shared.service)Find the Bug:
Fix It Properly:
Verify:
❌ Bad approach:
// Just add logging
AppLog.info("Search started")
let results = await search(query)
AppLog.info("Search returned \(results.count) results")
✅ Good approach:
// Find WHY search returns nothing:
// 1. Is ScriptureDatabase initialized? → Check init
// 2. Are indexes built? → Check index creation
// 3. Is query being processed? → Check query transformation
// 4. FIX the actual issue (e.g., index not built on first launch)
// THEN add logging to prevent future issues
Return the root cause and the actual fix that solves it.