← All plugins
api-rate-limiter
v1.25.0Implement rate limiting with token bucket, sliding window, and Redis
Claude Code1 skill
by Jeremy LongshoreMIT2.6kupdated 10 hours ago
Source
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/api-development/api-rate-limiter/ inside the repository.
Layout
plugins/api-development/api-rate-limiter/
├── .claude-plugin/plugin.json└── skills/rate-limiting-apis/SKILL.md
Skills1
rate-limiting-apisskills/rate-limiting-apis/SKILL.md
Implement sophisticated rate limiting with sliding windows, token buckets, and quotas. Use when protecting APIs from excessive requests. Trigger with phrases like "add rate limiting", "limit API requests", or "implement rate limits".
Manifests1
plugins/api-development/api-rate-limiter/.claude-plugin/plugin.json
{
"name": "api-rate-limiter",
"version": "1.25.0",
"description": "Implement rate limiting with token bucket, sliding window, and Redis",
"author": {
"name": "Jeremy Longshore",
"email": "[email protected]"
},
"repository": "https://github.com/jeremylongshore/claude-code-plugins",
"license": "MIT",
"keywords": [
"rate-limiting",
"throttling",
"api",
"redis"
]
}