agentsclimarketplace

Vant skill review performance

Skill dhaupin/vant/models/public/skills/vant-skill-review-performance

Vant: Durable AI memory + cold storage + runtime for agents, with generational evolution, stored passively via GitHub. Built for long-running autonomous sessions, using file based persistence.

Install
npx -y skills add dhaupin/vant --skill vant-skill-review-performance

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Is it fast?

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.6 KB, 458 tokens by cl100k_base, as published. Nobody here has run it

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)
CheckTarget
API < 200ms
Page < 1s
Build < 30s

2. Network

# Check size
curl -s -o /dev/null -w "%{size_download}" URL
SizeRating
> 1MBSLOW
> 500KBMEDIUM
< 100KBFAST

3. Queries

// N+1 query?
items.map(i => db.get(i.id))
PatternIssueFix
query in loopN+1Batch
select *Too muchSelect needed
no cacheRepeatCache

4. Async

// Blocking?
await heavy()
await more()
PatternIssueFix
SequentialSlowPromise.all
No timeoutHangTimeout
No limitOOMLimit

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

PriorityWhen
1Blocks user
2Noticeable delay
3Optimization

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

Measure it. Fix what matters.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.