skills$openclaw/rate-limit-gen
lxgicstudios5.8k

by lxgicstudios

rate-limit-gen – OpenClaw Skill

rate-limit-gen is an OpenClaw Skills integration for coding workflows. Generate rate limiting configuration. Use when protecting APIs from abuse.

5.8k stars2.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namerate-limit-gen
descriptionGenerate rate limiting configuration. Use when protecting APIs from abuse. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/rate-limit-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/rate-limit-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains rate-limit-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
472 B
SKILL.md
2.1 KB
SKILL.md

name: rate-limit-gen description: Generate rate limiting configuration. Use when protecting APIs from abuse.

Rate Limit Generator

Rate limiting is essential but the config is fiddly. Describe your limits in plain English and get working configuration.

One command. Zero config. Just works.

Quick Start

npx ai-rate-limit "100 requests per minute per IP"

What It Does

  • Generates rate limit configuration
  • Supports IP, user, and API key based limiting
  • Includes sliding window and fixed window options
  • Works with Express, Fastify, and more

Usage Examples

# Basic IP rate limiting
npx ai-rate-limit "100 requests per minute per IP"

# Login protection
npx ai-rate-limit "10 login attempts per hour, block for 30 min"

# API tier limits
npx ai-rate-limit "free tier 100/day, pro 10000/day"

Best Practices

  • Return headers - let clients know their quota
  • Use sliding windows - smoother than fixed
  • Have escape hatches - allow bursts for legitimate use
  • Log rate limit hits - detect abuse patterns

When to Use This

  • Protecting API from abuse
  • Implementing usage tiers
  • Preventing brute force attacks
  • Adding fair use policies

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-rate-limit --help

How It Works

Takes your plain English rate limit rules and generates configuration for rate limiting middleware. Includes Redis setup for distributed rate limiting when needed.

License

MIT. Free forever. Use it however you want.


Built by LXGIC Studios

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-rate-limit --help ```

FAQ

How do I install rate-limit-gen?

Run openclaw add @lxgicstudios/rate-limit-gen in your terminal. This installs rate-limit-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/rate-limit-gen. Review commits and README documentation before installing.