Install
openclaw skills install elixir-performance-reviewReviews Elixir code for performance issues including GenServer bottlenecks, memory usage, and concurrency patterns. Use when reviewing high-throughput code or investigating performance issues.
openclaw skills install elixir-performance-review| Issue Type | Reference |
|---|---|
| Mailbox overflow, blocking calls | references/genserver-bottlenecks.md |
| When to use ETS, read/write concurrency | references/ets-patterns.md |
| Binary handling, large messages | references/memory.md |
| Task patterns, flow control | references/concurrency.md |
| Issue | Flag ONLY IF |
|---|---|
| GenServer bottleneck | Handles > 1000 req/sec OR blocking I/O in callbacks |
| Use streams | Processing > 10k items OR reading large files |
| Use ETS | Read:write ratio > 10:1 AND concurrent access |
Do these in order for the performance review. Do not publish findings until each step passes.
path:line (or line range), or Module.function/arity plus a short quoted snippet from the file.grep/search scope)—otherwise downgrade to question / suspected with what was not verified.Complete Gates — before reporting (section above) first; the verification protocol is mandatory input to those gates.