Install
openclaw skills install @mvogt99/resource-leakFiles, sockets, subscriptions, or other finite resources are acquired without a guaranteed release path.
openclaw skills install @mvogt99/resource-leakA resource is opened but not closed. Under low load the process recycles or the OS cleans up on exit, so the bug stays hidden. Under real load, file-descriptor exhaustion, memory bloat, or orphaned connections appear and cascade.
open(...) without a matching close() or with block.with (Python), using / try-with-resources (C#/Java), defer (Go), try/finally (JS/TS).