npx claudepluginhub kiringyj/claude-workbench --plugin pythonThis skill uses the workspace's default tool permissions.
Profile and optimize a slow Python operation.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Profile and optimize a slow Python operation.
Core constraint: never let a single profiling run exceed 2 minutes.
Baseline profiling run — run the target with cProfile:
uv run python -m cProfile -s cumulative <module_or_script> 2>&1 | head -50
Analyze profile — identify:
Identify all optimization opportunities — list everything before implementing:
Implement all optimizations in one pass. Follow existing code conventions.
Verify tests pass:
uv run ruff check . --fix
uv run ruff format .
uv run ty
uv run python -m pytest -q
Measure improvement — re-run profiling, compare to baseline.
Iterate — repeat steps 2-6 until no new opportunities are visible.