Files
piebald-ai--claude-code-sys…/system-prompts/skill-code-review-efficiency-dimension.md
2026-07-13 12:49:20 +08:00

743 B

Efficiency

Flag wasted work the diff introduces: redundant computation or repeated I/O, independent operations run sequentially, blocking work added to startup or hot paths. Also flag long-lived objects built from closures or captured environments — they keep the entire enclosing scope alive for the object's lifetime (a memory leak when that scope holds large values); prefer a class/struct that copies only the fields it needs. Name the cheaper alternative.