klingai-prod-checklist

Featured

Production readiness checklist for Kling AI integrations. Use before going live or during deployment review. Trigger with phrases like 'klingai production ready', 'kling ai go live', 'klingai checklist', 'deploy klingai'.

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Kling AI Production Checklist ## Overview Checklist covering authentication, error handling, cost controls, monitoring, security, and content policy before deploying Kling AI video generation to production. ## Authentication - [ ] AK/SK stored in secrets manager (not `.env` in repo) - [ ] JWT auto-refresh with 5-min buffer before 30-min expiry - [ ] Separate API keys per environment (dev/staging/prod) - [ ] Key rotation schedule (quarterly minimum) - [ ] `Authorization: Bearer <token>` format verified ## Error Handling - [ ] HTTP 400/401/402/403/429/5xx all handled - [ ] Exponential backoff with jitter for 429/5xx retries - [ ] Max retry limit set (3-5, not infinite) - [ ] `task_status: "failed"` logs `task_status_msg` - [ ] 30s timeout on all HTTP calls - [ ] `duration` sent as string `"5"` not integer `5` ## Cost Controls - [ ] Daily credit budget enforced in code - [ ] Alert at 80% daily budget consumption - [ ] `standard` mode used for non-final renders - [ ] Max poll attempts cap (no infinite loops) - [ ] Credit estimate before batch submission ```python # Pre-batch credit check credits_needed = len(prompts) * 10 # 10 credits per 5s standard if credits_needed > DAILY_BUDGET: raise RuntimeError(f"Batch needs {credits_needed}, budget is {DAILY_BUDGET}") ``` ## Task Management - [ ] All task_ids logged with timestamp - [ ] Stuck task detection (>10 min in processing) - [ ] `callback_url` used instead of polling in production - [ ] Failed tasks queued for r...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

klingai-compliance-review

Security and compliance review framework for Kling AI integrations. Use when preparing for audits or reviewing security posture. Trigger with phrases like 'klingai compliance', 'kling ai security review', 'klingai audit prep', 'video generation compliance'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-prod-checklist

Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klingai-common-errors

Diagnose and fix common Kling AI API errors. Use when troubleshooting failed video generation or API issues. Trigger with phrases like 'kling ai error', 'klingai not working', 'fix klingai', 'klingai failed'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-prod-checklist

Execute AssemblyAI production deployment checklist and rollback procedures. Use when deploying AssemblyAI integrations to production, preparing for launch, or implementing go-live procedures for transcription services. Trigger with phrases like "assemblyai production", "deploy assemblyai", "assemblyai go-live", "assemblyai launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

langchain-prod-checklist

Production readiness checklist for LangChain applications. Use when preparing for launch, validating deployment readiness, or auditing existing production LangChain systems. Trigger: "langchain production", "langchain prod ready", "deploy langchain", "langchain launch checklist", "go-live langchain".

2,266 Updated today
jeremylongshore