ln-653-runtime-performance-auditor
npx machina-cli add skill levnikolaevich/claude-code-skills/ln-653-runtime-performance-auditor --openclawPaths: File paths (
shared/,references/,../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root.
Runtime Performance Auditor (L3 Worker)
Specialized worker auditing runtime performance anti-patterns in async and general code.
Purpose & Scope
- Worker in ln-650 coordinator pipeline - invoked by ln-650-persistence-performance-auditor
- Audit runtime performance (Priority: MEDIUM)
- Check async anti-patterns, unnecessary allocations, blocking operations
- Write structured findings to file with severity, location, effort, recommendations
- Calculate compliance score (X/10) for Runtime Performance category
Inputs (from Coordinator)
MANDATORY READ: Load shared/references/task_delegation_pattern.md#audit-coordinator--worker-contract for contextStore structure.
Receives contextStore with: tech_stack, best_practices, codebase_root, output_dir.
Domain-aware: Supports domain_mode + current_domain.
Workflow
-
Parse context from contextStore
- Extract tech_stack, best_practices, output_dir
- Determine scan_path
- Detect async framework: asyncio (Python), Node.js async, Tokio (Rust)
-
Scan codebase for violations
- Grep patterns scoped to
scan_path - For Rules 1, 3, 5: detect
async defblocks first, then check for violations inside them
- Grep patterns scoped to
-
Collect findings with severity, location, effort, recommendation
-
Calculate score using penalty algorithm
-
Write Report: Build full markdown report in memory per
shared/templates/audit_worker_report_template.md, write to{output_dir}/653-runtime-performance.mdin single Write call -
Return Summary: Return minimal summary to coordinator (see Output Format)
Audit Rules (Priority: MEDIUM)
1. Blocking IO in Async
What: Synchronous file/network operations inside async functions, blocking event loop
Detection (Python):
- Find
async deffunctions - Inside them, grep for blocking calls:
- File:
open(,.read_bytes(),.read_text(),.write_bytes(),.write_text(),Path(...).(read|write) - Network:
requests.get,requests.post,urllib.request - Subprocess:
subprocess.run(,subprocess.call(
- File:
- Exclude: calls wrapped in
await asyncio.to_thread(...)orawait loop.run_in_executor(...)
Detection (Node.js):
- Inside
async functionor arrow async, grep forfs.readFileSync,fs.writeFileSync,child_process.execSync
Severity:
- HIGH: Blocking IO in API request handler (blocks entire event loop)
- MEDIUM: Blocking IO in background task/worker
Recommendation: Use aiofiles, asyncio.to_thread(), or loop.run_in_executor() for file operations; use httpx.AsyncClient instead of requests
Effort: S (wrap in to_thread or switch to async library)
2. Unnecessary List Allocation
What: List comprehension where generator expression suffices
Detection:
len([x for x in ...])- allocates list just to count; usesum(1 for ...)any([x for x in ...])- allocates list for short-circuit check; useany(x for ...)all([x for x in ...])- same pattern; useall(x for ...)set([x for x in ...])- use set comprehension{x for x in ...}"".join([x for x in ...])- use generator directly"".join(x for x in ...)
Severity:
- MEDIUM: Unnecessary allocation in hot path (API handler, loop)
- LOW: Unnecessary allocation in infrequent code
Recommendation: Replace [...] with generator (...) or set comprehension {...}
Effort: S (syntax change only)
3. Sync Sleep in Async
What: time.sleep() inside async function blocks event loop
Detection:
- Grep for
time\.sleepinsideasync defblocks - Pattern:
await some_async_call()...time.sleep(N)...await another_call()
Severity:
- HIGH:
time.sleep()in async API handler (freezes all concurrent requests) - MEDIUM:
time.sleep()in async background task
Recommendation: Replace with await asyncio.sleep(N)
Effort: S (one-line change)
4. String Concatenation in Loop
What: Building string via += inside loop (O(n^2) for large strings)
Detection:
- Pattern: variable
result,output,html,textwith+=insidefor/whileloop - Grep for: variable followed by
+=containing string operand inside loop body
Severity:
- MEDIUM: String concat in loop processing large data (>100 iterations)
- LOW: String concat in loop with small iterations (<100)
Recommendation: Use list.append() + "".join(), or io.StringIO, or f-string with "".join(generator)
Effort: S (refactor to list + join)
5. Missing to_thread for CPU-Bound
What: CPU-intensive synchronous code in async handler without offloading to thread
Detection:
- Inside
async def, find CPU-intensive operations:- JSON parsing large files:
json.loads(large_data),json.load(file) - Image processing:
PIL.Image.open,cv2.imread - Crypto:
hashlib,bcrypt.hashpw - XML/HTML parsing:
lxml.etree.parse,BeautifulSoup( - Large data transformation without await points
- JSON parsing large files:
- Exclude: operations already wrapped in
asyncio.to_thread()or executor
Severity:
- MEDIUM: CPU-bound operation in async handler (blocks event loop proportionally to data size)
Recommendation: Wrap in await asyncio.to_thread(func, *args) (Python 3.9+) or loop.run_in_executor(None, func, *args)
Effort: S (wrap in to_thread)
6. Redundant Data Copies
What: Unnecessary .copy(), list(), dict() when data is only read, not mutated
Detection:
data = list(items)wheredatais only iterated (never modified)config = config_dict.copy()whereconfigis only readresult = dict(original)whereresultis returned without modification
Severity:
- LOW: Redundant copy in most contexts (minor memory overhead)
- MEDIUM: Redundant copy of large data in hot path
Recommendation: Remove unnecessary copy; pass original if not mutated
Effort: S (remove copy call)
Scoring Algorithm
MANDATORY READ: Load shared/references/audit_scoring.md for unified scoring formula.
Output Format
MANDATORY READ: Load shared/templates/audit_worker_report_template.md for file format.
Write report to {output_dir}/653-runtime-performance.md with category: "Runtime Performance" and checks: blocking_io_in_async, unnecessary_list_allocation, sync_sleep_in_async, string_concat_in_loop, missing_to_thread, redundant_data_copies.
Return summary to coordinator:
Report written: docs/project/.audit/ln-650/{YYYY-MM-DD}/653-runtime-performance.md
Score: X.X/10 | Issues: N (C:N H:N M:N L:N)
Critical Rules
- Do not auto-fix: Report only
- Async context required: Rules 1, 3, 5 apply ONLY inside async functions
- Exclude wrappers: Do not flag calls already wrapped in
to_thread/run_in_executor - Context-aware: Small files (<1KB) read synchronously may be acceptable
- Exclude tests: Do not flag test utilities or test fixtures
Definition of Done
- contextStore parsed successfully (including output_dir)
- scan_path determined
- Async framework detected (asyncio/Node.js async/Tokio)
- All 6 checks completed:
- blocking IO, unnecessary allocations, sync sleep, string concat, CPU-bound, redundant copies
- Findings collected with severity, location, effort, recommendation
- Score calculated using penalty algorithm
- Report written to
{output_dir}/653-runtime-performance.md(atomic single Write call) - Summary returned to coordinator
Reference Files
- Worker report template:
shared/templates/audit_worker_report_template.md - Audit scoring formula:
shared/references/audit_scoring.md - Audit output schema:
shared/references/audit_output_schema.md
Version: 1.0.0 Last Updated: 2026-02-04
Source
git clone https://github.com/levnikolaevich/claude-code-skills/blob/master/ln-653-runtime-performance-auditor/SKILL.mdView on GitHub Overview
An L3 worker that audits runtime performance anti-patterns in async and general code. It checks for blocking IO inside async functions, unnecessary allocations, sync sleeps in async paths, string concatenation in loops, missing to_thread usage for CPU-bound work, and redundant data copies, returning structured findings plus a compliance score.
How This Skill Works
The worker reads the shared contextStore to locate tech_stack, best_practices, and the scan path, then scans the codebase for violations using language-specific patterns. It aggregates findings with severity, location, and effort, attaches recommendations, writes a markdown audit report, and returns a concise summary to the coordinator.
When to Use It
- Auditing an async API handler for blocking I/O and event-loop blocking.
- Reviewing background workers and tasks for performance anti-patterns.
- Identifying unnecessary list allocations in hot code paths.
- Detecting sync sleeps within async code and replacing them with await asyncio.sleep or equivalents.
- Finding string concatenation in loops and redundant data copies to optimize memory and speed.
Quick Start
- Step 1: Load contextStore (tech_stack, best_practices, output_dir) and determine scan_path.
- Step 2: Run the code scan to detect blocking IO in async, unnecessary allocations, and other anti-patterns.
- Step 3: Generate and write 653-runtime-performance.md to {output_dir} and return the summary to the coordinator.
Best Practices
- Avoid blocking IO inside async functions by using async I/O libraries or to_thread/run_in_executor.
- Replace unnecessary list allocations with generator expressions or appropriate comprehensions.
- Remove sync sleeps inside async code; prefer await asyncio.sleep (Python) or equivalent non-blocking waits.
- Minimize string concatenation in loops; prefer joining or streaming approaches.
- Push CPU-bound work to separate threads/processes (to_thread/spawn_blocking) and minimize redundant data copies.
Example Use Cases
- Python: An async API endpoint uses requests.get inside an async def; migrated to httpx.AsyncClient or to a_thread to avoid blocking.
- Node.js: An async function reads config using fs.readFileSync; replaced with fs.promises.readFile to avoid blocking.
- Python: Using len([x for x in items]) to count items; replaced with sum(1 for x in items) to avoid intermediate lists.
- Python/Node: Building large strings through repeated concatenation inside a loop; switched to accumulating in a list and joining at the end.
- Rust (Tokio): A task calls std::thread::sleep in an async context; moved to tokio::time::sleep or offloaded to spawn_blocking for CPU-bound work.