Explore

Find agent skills by outcome

78,090 skills indexed with the new KISS metadata standard.

Showing 24 of 78,090Categories: Data & Insights, Coding & Debugging, General, Cursor-rules
General
PromptBeginner5 minmarkdown

Use checkboxes and stable IDs (e.g.

`PERF-ITEM-1.1`):

0
General
PromptBeginner5 minmarkdown

Use checkboxes and stable IDs (e.g.

`PERF-PLAN-1.1`):

0
General
PromptBeginner5 minmarkdown

- **Trade-offs**: Complexity

maintainability

0
Coding & Debugging
PromptBeginner5 minmarkdown

Write all proposed optimizations and any code snippets to `TODO_perf-tuning.md` only. Do not create any other files. If specific files should be created or edited

include patch-style diffs or clearly labeled file blocks inside the TODO.

0
General
PromptBeginner5 minmarkdown

In `TODO_perf-tuning.md`

include:

0
General
PromptBeginner5 minmarkdown

- Baseline metrics: response time (p50

p95

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Synchronous blocking in async code**: Blocking the event loop or thread pool with synchronous operations

destroying concurrency benefits

0
General
PromptBeginner5 minmarkdown

- Monitor slow query logs and set appropriate thresholds (e.g.

>50ms for OLTP queries)

0
General
PromptBeginner5 minmarkdown

- **Memory leaks under load**: Allocations growing without bound in long-running processes

leading to OOM crashes in production

0
General
PromptBeginner5 minmarkdown

- Implement distributed tracing (Jaeger

Zipkin) to identify cross-service latency bottlenecks

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Use language-specific CPU and memory profilers (pprof for Go

py-spy for Python

0
General
PromptBeginner5 minmarkdown

- Run load tests with k6

JMeter

0
General
PromptBeginner5 minmarkdown

### Frontend (Chrome DevTools

Lighthouse

0
General
PromptBeginner5 minmarkdown

### Backend (APM

Profilers

0
General
PromptBeginner5 minmarkdown

- Address scalability: proactively consider expected input size

memory limitations

0
General
PromptBeginner5 minmarkdown

- Identify constraints

input/output requirements

0
General
PromptBeginner5 minmarkdown

- Provide alternative solutions when trade-offs exist (in-place vs additional memory

speed vs memory)

0
General
PromptBeginner5 minmarkdown

- Capture percentiles (p50

p95

0
General
PromptBeginner5 minmarkdown

- Remember that premature optimization is counterproductive

but strategic optimization is essential

0
General
PromptBeginner5 minmarkdown

- Consider the full system impact of optimizations

not just local improvements

0
General
PromptBeginner5 minmarkdown

- [ ] All optimizations are documented with rationale

measured impact

0
Coding & Debugging
PromptBeginner5 minmarkdown

- [ ] API response times meet SLA: <200ms (p95) for standard endpoints

<50ms (p95) for database queries

0
General
PromptBeginner5 minmarkdown

After completing optimization

verify:

0
General
PromptBeginner5 minmarkdown

- [ ] Frontend metrics meet targets: LCP <2.5s

FID <100ms

0