Install
$ agentstack add skill-ao92265-claude-code-playbook-perf-check ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Performance Investigation
Systematic approach to finding and fixing performance issues. Profile first, optimize second.
Steps
- Define the problem:
- What's slow? (endpoint, page load, build, test suite, query)
- How slow is it? Get a baseline measurement
- What's the target? (e.g., "API response under 200ms")
- When did it start? (recent regression vs. always slow)
- Profile before optimizing:
- Node.js:
--profflag,clinic.js, or0xfor flamegraphs - Frontend: Chrome DevTools Performance tab, Lighthouse
- Database:
EXPLAIN ANALYZEon slow queries - General: time the operation with
console.time()or equivalent - Record the baseline numbers precisely
- Identify the bottleneck:
- Where is time actually being spent? (CPU, I/O, network, database)
- Is it a single slow operation or death by a thousand cuts?
- Look for: N+1 queries, missing indexes, unnecessary re-renders, blocking I/O, large payloads
- Prioritize fixes:
- Fix the biggest bottleneck first — often one fix solves 80% of the problem
- Estimate effort vs. impact for each potential fix
- Don't optimize things that aren't in the hot path
- Implement the fix:
- Make ONE change at a time
- Common fixes: add database index, add caching, reduce payload, batch queries, lazy load, debounce
- Keep the code readable — clever optimizations that nobody can understand aren't worth it
- Measure after:
- Run the same profile/benchmark as step 2
- Compare before/after numbers precisely
- Did it meet the target? If not, go back to step 3
- Document the result:
- What was the bottleneck?
- What was the fix?
- Before/after numbers
- Any trade-offs made (memory vs. speed, complexity vs. performance)
Important
- Profile before optimizing. Guessing at bottlenecks wastes time on the wrong thing.
- Measure before AND after. "It feels faster" is not evidence. Numbers are evidence.
- One change at a time. Multiple simultaneous changes make it impossible to know what helped.
- Don't optimize prematurely. If it's fast enough, leave it alone.
- Readability > cleverness. A 10% speedup that makes code unreadable isn't worth it unless you're in a hot loop.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ao92265
- Source: ao92265/claude-code-playbook
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.