performance

Diagnose slowness and reduce context, tool, and build overhead in coding workflows.

Updated Dec 1, 2025
One-click install
npx skills add https://github.com/Boulea7/ohmyclaude --skill performance-boulea7
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: performance
Source: https://github.com/Boulea7/ohmyclaude/tree/main/src/ohmyclaude/templates/skills/performance
Command: npx skills add https://github.com/Boulea7/ohmyclaude --skill performance-boulea7

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Slow coding agents, bloated context windows, and redundant build or test runs waste time and tokens. This Skill provides a structured checklist for finding the real bottleneck before optimizing, so you avoid wasted micro-optimizations. ## Core Features & Use Cases - Bottleneck Identification: Classify whether slowness comes from I/O, build tooling, context size, or algorithmic work. - Overhead Reduction: Cut broad scans, redundant tool calls, and oversized payloads from agent workflows. - Targeted Validation: Prefer focused test runs over full-suite reruns when safe, and verify behavior is unchanged. - Use Case: A coding agent takes minutes per task because it re-reads the entire repository each turn. Use this Skill to narrow context surfaces and validate the speedup without changing behavior. ## Quick Start Use the performance skill to diagnose why my build pipeline and coding agent workflow feel slow and suggest targeted fixes.

Frequently Asked Questions about performance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I diagnose slowness in a coding agent workflow?▼

Start by measuring the slow path or high-cost loop, then classify the bottleneck as I/O, build tooling, context size, or algorithmic work. Only optimize after identifying which category dominates, and verify behavior stays unchanged.

How to reduce context and tool overhead for AI coding agents?▼

Keep context surfaces small and relevant by removing broad repository scans, redundant tool calls, and oversized payloads. Prefer targeted file reads and focused validation over full-suite reruns when it is safe to do so.

When should I avoid performance micro-optimizations?▼

Avoid micro-optimizations when you have no measurement evidence showing they address the actual bottleneck. Prefer changes that improve both clarity and speed, and remove unnecessary work before optimizing any code.

Can I skip full test suite runs when optimizing build pipelines?▼

Yes, targeted validation is preferred over full-suite reruns when it is safe. Run only the tests covering the changed path, but confirm the optimization did not alter behavior before relying on the reduced scope.

What are the limitations of checklist-based performance tuning?▼

A checklist guides investigation but does not replace profiling tools or benchmarks. It works best for workflow and context overhead; deep algorithmic or systems-level issues still require dedicated measurement tooling.