jeremylongshore / klingai-rate-limits
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/klingai-rate-limits && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2748" && unzip -o skill.zip -d .claude/skills/klingai-rate-limits && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/klingai-rate-limits/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Handle Kling AI rate limits with proper backoff strategies. Use when experiencing 429 errors or building high-throughput systems. Trigger with phrases like 'klingai rate limit', 'kling ai 429', 'klingai throttle', 'klingai backoff'.
0 views
0 installs
Skill Content
---
name: klingai-rate-limits
description: |
Handle Kling AI rate limits with proper backoff strategies. Use when experiencing 429 errors
or building high-throughput systems. Trigger with phrases like 'klingai rate limit',
'kling ai 429', 'klingai throttle', 'klingai backoff'.
allowed-tools: Read, Write, Edit, Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
compatible-with: claude-code, codex, openclaw
tags: [saas, kling-ai, klingai-rate]
---
# Klingai Rate Limits
## Overview
This skill teaches rate limit handling patterns including exponential backoff, token bucket algorithms, request queuing, and concurrent job management for reliable Kling AI integrations.
## Prerequisites
- Kling AI integration
- Understanding of HTTP status codes
- Python 3.8+ or Node.js 18+
## Instructions
Follow these steps to handle rate limits:
1. **Understand Limits**: Know the rate limit structure
2. **Implement Detection**: Detect rate limit responses
3. **Add Backoff**: Implement exponential backoff
4. **Queue Requests**: Add request queuing
5. **Monitor Usage**: Track rate limit consumption
## Output
Successful execution produces:
- Rate limit handling without errors
- Smooth request throughput
- Proper backoff behavior
- Concurrent job management
## Error Handling
See `${CLAUDE_SKILL_DIR}/references/errors.md` for comprehensive error handling.
## Examples
See `${CLAUDE_SKILL_DIR}/references/examples.md` for detailed examples.
## Resources
- [Kling AI Rate Limits](https://docs.klingai.com/rate-limits)
- [Exponential Backoff](https://cloud.google.com/iot/docs/how-tos/exponential-backoff)
- [Token Bucket Algorithm](https://en.wikipedia.org/wiki/Token_bucket)