From app-dev
Find and fix unsafe error handling in Leavn - try! force unwraps, empty catch blocks, silent try? failures
npx claudepluginhub willsigmon/sigstack --plugin app-devThis skill is limited to using the following tools:
Fix unsafe error handling:
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.
Fix unsafe error handling:
AppLog.error("Context: \(error)")Patterns:
// Fix try!
do {
result = try riskyOperation()
} catch {
AppLog.error("Operation failed: \(error)")
result = fallbackValue
}
// Fix empty catch
} catch {
AppLog.error("Failed to save: \(error)", category: .persistence)
}
Use when: Crash risks, silent failures, debugging issues, error handling audit