memory-leak-audit
SolidAudit code for memory leaks and disposable issues. Use when reviewing event listeners, DOM handlers, lifecycle callbacks, or fixing leak reports. Covers addDisposableListener, Event.once, MutableDisposable, DisposableStore, and onWillDispose patterns.
Install
Quality Score: 82/100
Skill Content
Details
- Author
- chapmanjw
- Repository
- chapmanjw/clawdius
- Created
- 2 months ago
- Last Updated
- 5 days ago
- Language
- TypeScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
memory-leak-audit
Audit code for memory leaks and disposable issues. Use when reviewing event listeners, DOM handlers, lifecycle callbacks, or fixing leak reports. Covers addDisposableListener, Event.once, MutableDisposable, DisposableStore, and onWillDispose patterns.
memory-leaks-and-diagnostics
Review .NET code for managed memory leaks - event handler leaks, static caches, timers, CancellationTokenRegistration, closure captures - and how to diagnose with dotnet-counters/gcdump. Use when reviewing long-lived objects, event subscriptions, or investigating memory growth.
memory-leaks
Find and fix frontend memory leaks — missing teardown, growing caches, detached DOM, and closures holding trees alive. Load when a component subscribes to anything, and when a long-lived SPA degrades over time.