AgentStack
SKILL verified MIT Self-run

Review Performance

skill-dhaupin-vant-vant-skill-review-performance · by dhaupin

Is it fast?

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-dhaupin-vant-vant-skill-review-performance

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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 Used
  • 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.

Are you the author of Review Performance? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Performance Review

> Is it fast?


Rule #1

Measure. Don't guess.

# Profile before you optimize
node --prof app.js

What To Check

1. Time

// Time operations
const start = Date.now()
doThing()
console.log(Date.now() - start)

| Check | Target | |---------|--------| | API 1MB | SLOW | | > 500KB | MEDIUM | | db.get(i.id))


| Pattern | Issue | Fix |
|---------|-------|-----|
| query in loop | N+1 | Batch |
| select * | Too much | Select needed |
| no cache | Repeat | Cache |

### 4. Async

```javascript
// Blocking?
await heavy()
await more()

| Pattern | Issue | Fix | |---------|-------|-----| | Sequential | Slow | Promise.all | | No timeout | Hang | Timeout | | No limit | OOM | Limit |


Output

## Performance - [endpoint]

### Timing
- [TIME] [endpoint]: [ms]ms
- Target: [target]ms

### Network
- [SIZE] [kb]kb

### Queries
- [COUNT] queries for [records]
- Issue: [pattern]

### Recommendations
1. [fix 1]
2. [fix 2]

Fix Priority

| Priority | When | |----------|------| | 1 | Blocks user | | 2 | Noticeable delay | | 3 | Optimization |


Role: Performance Reviewer Input: Code or endpoint Output: Is fast?

> Measure it. Fix what matters.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.