Agent skill
wax-performance-audit
Benchmarking and performance auditing for the Wax repo. Use when running or interpreting Wax benchmarks, diagnosing CPU, memory, or I/O bottlenecks, or investigating Swift 6.2 concurrency issues such as Sendable, actor isolation, `@unchecked Sendable`, task-group fan-out, and data races.
Install this agent skill to your Project
npx add-skill https://github.com/christopherkarani/Wax/tree/main/Resources/skills/public/wax-performance-audit
SKILL.md
Wax Performance Audit
Overview
Use this skill to benchmark Wax changes, isolate the hottest code path, and separate real regressions from noisy samples.
The repo builds with Swift 6.1 and StrictConcurrency enabled, so audit for Swift 6.2 concurrency risks without assuming 6.2-only language mode.
Workflow
- Name the symptom precisely: latency regression, memory growth, file bloat, or Swift concurrency diagnostics.
- Pick the narrowest benchmark or test file that exercises the path.
- Run a baseline and candidate with the same environment and scale.
- Collect wall time plus memory or file-growth metrics when the issue is not purely CPU-bound.
- Inspect the smallest relevant actor boundary, task group, cache, or I/O path.
- Report the evidence, the bottleneck, and the smallest safe fix.
Benchmark Selection
Use references/benchmark-workflow.md for the command matrix, environment flags, and benchmark map.
Prefer these repo entry points when they match the symptom:
Tests/WaxIntegrationTests/RAGBenchmarkSupport.swiftTests/WaxIntegrationTests/RememberDedupBenchmarks.swiftTests/WaxIntegrationTests/StoreBloatBenchmarks.swiftTests/WaxIntegrationTests/RAGBenchmarks.swiftTests/WaxIntegrationTests/RAGBenchmarksMiniLM.swiftTests/WaxIntegrationTests/BatchEmbeddingBenchmark.swiftTests/WaxIntegrationTests/SessionRuntimeStatsBenchmarks.swiftTests/WaxIntegrationTests/WALCompactionBenchmarks.swiftTests/WaxIntegrationTests/HandoffLookupBenchmarks.swiftTests/WaxIntegrationTests/PayloadLivenessBenchmarks.swiftTests/WaxIntegrationTests/SurrogateSourceBenchmarks.swiftTests/WaxIntegrationTests/AccessStatsBootstrapBenchmarks.swiftTests/WaxIntegrationTests/ConcurrencyStressTests.swiftTests/WaxIntegrationTests/MemoryOrchestratorTests.swiftTests/WaxArcticTests/ArcticPerformanceBenchmark.swiftTests/WaxCoreTests/ReadWriteLockTests.swiftTests/WaxCoreTests/AsyncMutexTests.swift
Bottleneck Triage
- CPU: look for repeated serialization, unnecessary sorting, extra actor hops, and oversized batch work.
- Memory: compare RSS, allocated bytes, dead payload bytes, TOC growth, and frame count.
- I/O: inspect WAL compaction, reopen cost, and close-time rewrite work.
- Embeddings: check compute unit selection, batch sizing, and warmup or prewarm behavior.
- Noise: rerun if caches are cold, an external compiler/service is active, or the benchmark has low sample counts.
- Gated skips: confirm the env flag actually enabled the lane before treating a skip or pass as evidence.
- Harness plumbing:
measureAsyncinRAGBenchmarkSupport.swiftusesDispatchSemaphoreplusTaskbecause XCTest measurement is synchronous; do not confuse that with production concurrency. - ANE/GPU: CPU-only benchmark paths are intentional in some suites, and warm p95/p99 values can be noisy when
ANECompilerServiceor similar background work is active.
Swift 6.2 Concurrency
Use references/concurrency-checklist.md when the change touches actors, task groups, Sendable, or @unchecked Sendable.
Default checks:
- Trace every value that crosses an actor boundary.
- Prefer
@Sendableclosures that capture immutable values. - Treat
@unchecked Sendableas a deliberate exception, not a default. - Watch task groups for hidden fan-out that increases memory pressure.
- Keep blocking I/O off actor executors.
- Verify
@MainActorcrossings in UI-adjacent or Photos code. - Treat
@preconcurrencyinterop and@unchecked Sendablearound CoreML, GRDB, USearch, Photos, and tokenizer internals as review hotspots, not automatic bugs.
Reporting
When you finish, state:
- the benchmark or test you ran,
- the before/after evidence,
- whether the regression was CPU, memory, I/O, or concurrency-related,
- and the exact file or subsystem that caused it.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
wax
Comprehensive guidance for the Wax on-device memory/RAG framework. Use when integrating MemoryOrchestrator, VideoRAGOrchestrator, Wax/WaxSession, embedding providers, hybrid search, maintenance, or when evaluating Wax constraints like offline-only, single-file .wax persistence and deterministic retrieval.
obsidian-clipper-template-creator
Guide for creating templates for the Obsidian Web Clipper. Use when you want to create a new clipping template, understand available variables, or format clipped content.
claude-code-expert
Especialista profundo em Claude Code - CLI da Anthropic. Maximiza produtividade com atalhos, hooks, MCPs, configuracoes avancadas, workflows, CLAUDE.md, memoria, sub-agentes, permissoes e integracao com ecossistemas.
lex
Centralized 'Truth Engine' for cross-jurisdictional legal context (US, EU, CA) and contract scaffolding.
odoo-inventory-optimizer
Expert guide for Odoo Inventory: stock valuation (FIFO/AVCO), reordering rules, putaway strategies, routes, and multi-warehouse configuration.
android_ui_verification
Automated end-to-end UI testing and verification on an Android Emulator using ADB.
Didn't find tool you were looking for?