agent-rate-limiter
Intelligent rate limiting and throttling system for AI agents to prevent API abuse and ensure fair resource usage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Intelligent rate limiting and throttling system for AI agents to prevent API abuse and ensure fair resource usage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
A library of 150 brand and aesthetic design systems (Apple, Stripe, Linear, Vercel, Notion, GitHub, Figma, Spotify, Tesla, and more, plus styles like brutalism, glassmorphism, neumorphism, editorial, minimal). Use when the user wants a UI to look like a brand, match a brand's style or vibe, or adopt a named aesthetic. Read references/<brand>.md for that brand's colors, typography, spacing, radii, and component style before generating any UI.
Apply Anthropic's official brand colors and typography to artifacts for consistent visual identity and professional design standards. A reference for shaping your own.
Create beautiful visual art in PNG and PDF documents using design philosophy and aesthetic principles for posters, illustrations, and static pieces.
Frontend design and UI/UX development tools for shipping production-ready interfaces with strong typographic and layout discipline.
Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.
Orchestrates UI and page design. Use when the user asks to design a page, screen, UI, landing page, dashboard, login flow, pricing page, invoice, resume, FAQ, article, slide deck, social card, or any web layout; to make it look like a brand (Apple, Stripe, Linear, Vercel, Notion, ...); or to build a mockup, prototype, wireframe, or HTML preview. Picks a matching layout skill, optionally adopts a brand design system, then writes a single self-contained HTML file to <project>/.devspace/preview/ so DevSpace can preview it.
| name | agent-rate-limiter |
| description | Intelligent rate limiting and throttling system for AI agents to prevent API abuse and ensure fair resource usage |
This built-in skill provides intelligent rate limiting and throttling capabilities for AI agents to prevent API abuse, ensure fair resource usage, and maintain system stability.
tool: agent-rate-limiter
action: enforce_limit
service: "github_api"
max_requests: 5000
time_window: "3600s"
strategy: "token_bucket"
tool: agent-rate-limiter
action: apply_throttling
service: "openai_api"
base_rate: 10
error_multiplier: 2.0
success_multiplier: 0.9
min_rate: 1
max_rate: 50
tool: agent-rate-limiter
action: check_quota
service: "custom_service"
quota_type: "daily"
quota_limit: 10000
current_usage: "{{current_usage}}"
The agent-rate-limiter skill can be configured with the following parameters:
default_strategy: Default rate limiting strategy (token_bucket, leaky_bucket, fixed_window)global_max_concurrent: Global maximum concurrent requests (default: 100)service_configs: Service-specific configuration overridesalert_threshold: Percentage of quota usage that triggers alerts (default: 80%)backoff_strategy: Backoff strategy for failed requests (exponential, linear, random)monitoring_enabled: Enable real-time monitoring and alerting (default: true)This skill is essential for any agent that makes external API calls, manages multiple services, or needs to ensure stable and fair resource usage. It protects both the agent and the services it interacts with from abuse and overload.