how-to-example
Doc type: **how-to guide**. Goal-first, assumes you can already run the service locally. For the concepts behind rate limiting, see the explanation doc; for every config field, see the reference.
$ npx -y skills add vanara-agents/skills --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Doc type: **how-to guide**. Goal-first, assumes you can already run the service locally. For the concepts behind rate limiting, see the explanation doc; for every config field, see the reference.
Agent definition
how-to-example.mdHow-to: Add a rate limit to an HTTP endpoint
> Doc type: **how-to guide**. Goal-first, assumes you can already run the service locally. For the > concepts behind rate limiting, see the explanation doc; for every config field, see the reference.
**Goal:** protect a single endpoint with a per-client rate limit so a burst of requests returns `429` instead of overloading the service.
Before you start
- The service runs locally (`npm run dev`) and you can hit `http://localhost:3000`.
- You have write access to `src/middleware/`.
- Redis is reachable at `REDIS_URL` (the limiter stores counters there).
Steps
1. Add the limiter middleware:
// src/middleware/rate-limit.js
import { RateLimiter } from "../lib/rate-limiter.js";
const limiter = new RateLimiter({ windowMs: 60_000, max: 100 }); // 100 req/min/client
export function rateLimit(req, res, next) {
const key = req.ip;
const { allowed, retryAfter } = limiter.hit(key);
if (!allowed) {
res.set("Retry-After", String(retryAfter));
return res.status(429).json({ error: "rate_limited" });
}
next();
}2. Apply it to the endpoint you want to protect (not globally, yet):
import { rateLimit } from "./middleware/rate-limit.js";
app.post("/v1/messages", rateLimit, sendMessage);3. Restart the dev server so the middleware loads:
npm run dev
Verify
Fire more than the limit and confirm the `429`:
for i in $(seq 1 101); do
curl -s -o /dev/null -w "%{http_code}\n" -X POST http://localhost:3000/v1/messages
done | sort | uniq -cExpected output — 100 allowed, then the limiter trips:
100 200
1 429If it goes wrong
- **All requests pass:** the counter store isn't shared. Confirm `REDIS_URL` is set and reachable.
- **Every request is 429:** your client IP is shared (proxy). Key on an API token instead of `req.ip`.
- **Roll back:** remove the `rateLimit` argument from the route and restart.
---
Why this is a good how-to: it states the goal in one line, lists prerequisites *before* the steps, every snippet is runnable, there's an explicit verification with expected output, and a troubleshooting/rollback section. It does **not** explain the token-bucket algorithm — that's linked, not inlined.
Read more
How-to: Add a rate limit to an HTTP endpoint
> Doc type: **how-to guide**. Goal-first, assumes you can already run the service locally. For the > concepts behind rate limiting, see the explanation doc; for every config field, see the reference.
**Goal:** protect a single endpoint with a per-client rate limit so a burst of requests returns `429` instead of overloading the service.
Before you start
- The service runs locally (`npm run dev`) and you can hit `http://localhost:3000`.
- You have write access to `src/middleware/`.
- Redis is reachable at `REDIS_URL` (the limiter stores counters there).
Steps
1. Add the limiter middleware:
// src/middleware/rate-limit.js
import { RateLimiter } from "../lib/rate-limiter.js";
const limiter = new RateLimiter({ windowMs: 60_000, max: 100 }); // 100 req/min/client
export function rateLimit(req, res, next) {
const key = req.ip;
const { allowed, retryAfter } = limiter.hit(key);
if (!allowed) {
res.set("Retry-After", String(retryAfter));
return res.status(429).json({ error: "rate_limited" });
}
next();
}2. Apply it to the endpoint you want to protect (not globally, yet):
import { rateLimit } from "./middleware/rate-limit.js";
app.post("/v1/messages", rateLimit, sendMessage);3. Restart the dev server so the middleware loads:
npm run dev
Verify
Fire more than the limit and confirm the `429`:
for i in $(seq 1 101); do
curl -s -o /dev/null -w "%{http_code}\n" -X POST http://localhost:3000/v1/messages
done | sort | uniq -cExpected output — 100 allowed, then the limiter trips:
100 200
1 429If it goes wrong
- **All requests pass:** the counter store isn't shared. Confirm `REDIS_URL` is set and reachable.
- **Every request is 429:** your client IP is shared (proxy). Key on an API token instead of `req.ip`.
- **Roll back:** remove the `rateLimit` argument from the route and restart.
---
Why this is a good how-to: it states the goal in one line, lists prerequisites *before* the steps, every snippet is runnable, there's an explicit verification with expected output, and a troubleshooting/rollback section. It does **not** explain the token-bucket algorithm — that's linked, not inlined.
🐒 Free agents, skills & packs for Claude Code One subscription. An army of Claude Code agents. 30 production-grade agents, skills, and packs for Claude Code — free, Apache-2.0, install with one command.
Repo: vanara-agents/skills
Other agents on vanara-agents-skills.
- AGENT
Use when designing a new HTTP/GraphQL API or changing an existing one — modeling resources, defining endpoint contracts, choosing status codes, pagination, filtering, error envelopes, versioning, and idempotency. Produces a reviewable API contract plus an OpenAPI snippet, not
Open agent - review-notes
This shows how the api-designer agent reviews a flawed draft. Findings are severity-ranked so the implementer fixes the contract-breakers first. Severity legend: **CRITICAL** (breaks clients / data risk), **HIGH** (real bug or inconsistency), **MEDIUM** (maintainability),
Open agent - contract-and-openapi
The contract is the deliverable. Express it as an **OpenAPI 3.1** document so it is human-readable *and* machine-checkable. This reference covers how to structure that document and what `scripts/lint-openapi.mjs` enforces.
Open agent - design-checklist
Run through this before declaring an API contract done. It is ordered the way you should *design*: resources first, cross-cutting rules last. Every box is a place real APIs go wrong in production.
Open agent - versioning-and-evolution
APIs are forever once published: a consumer you've never met may depend on any field you expose. Design so you can **add without breaking**, and version explicitly when you must break.
Open agent - pr-comment-template
Copy-paste templates for leaving review comments. Keep each comment to one finding: an anchor, the problem, and the fix.
Open agent

