Agent Skills: integrate-rate-limit

Add rate limiting protection to endpoints. Use for throttling API requests.

UncategorizedID: Oungseik/gakom/integrate-rate-limit

Install this agent skill to your local

pnpm dlx add-skill https://github.com/MonDevHub/gakom/tree/HEAD/.claude/skills/integrate-rate-limit

Skill Files

Browse the full folder contents for integrate-rate-limit.

Download Skill

Loading file tree…

.claude/skills/integrate-rate-limit/SKILL.md

Skill Metadata

Name
integrate-rate-limit
Description
Add rate limiting protection to endpoints. Use for throttling API requests.

Integrate rate limiting into SvelteKit routes or ORPC handlers.

Update:

  • Hook into rate-limit.ts instance
  • Add rate limiter check before processing
  • Throw appropriate errors for exceeded limits

Rate limiting conventions:

  • Use 20 req/sec default based on rateLimiterMemory
  • Differentiate by IP or session in production
  • Handle rate-limit errors gracefully in UI
  • Log or monitor excessive requests