Skip to content
OpenSmartRoute
Skillv1.0.0

klingai-prod-checklist

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 checklis

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/klingai-pack/skills/klingai-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill klingai-prod-checklist. Copyright stays with the author (MIT).

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
# 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 retry
  • Video URLs downloaded promptly (Kling CDN URLs expire)

Content Safety

  • Prompts validated before API submission
  • User-generated prompts sanitized
  • Default negative prompt includes safety terms
  • Content moderation on user-facing apps
  • Policy violation errors handled gracefully

Security

  • API keys never logged (redacted in debug output)
  • Video URLs treated as temporary (store on own CDN)
  • Webhook endpoints HTTPS-only
  • Rate limiting on your API layer
  • No sensitive data in prompt strings

Monitoring

  • API latency tracked per endpoint
  • Success/failure rate dashboard
  • Credit consumption metrics
  • Alert on >5% failure rate
  • Structured JSON logs for all API calls

Performance

  • Connection pooling via requests.Session()
  • Concurrent tasks within API tier limit
  • Video downloads async/background
  • Generated videos CDN-cached
# Connection pooling
session = requests.Session()
adapter = requests.adapters.HTTPAdapter(pool_connections=5, pool_maxsize=10)
session.mount("https://", adapter)

Pre-Launch Smoke Test

from kling_client import KlingClient

c = KlingClient()
result = c.text_to_video("test: blue sky with clouds", duration=5, mode="standard")
assert result["videos"][0]["url"], "No video URL"
print("READY FOR PRODUCTION")

Prerequisites

  • A signed release change, approved production workspace, rights-cleared or synthetic smoke-test brief, policy review, budget ceiling, draft-only canary route, and tested rollback/removal procedure.

Instructions

  1. Run the smoke test in staging first with a synthetic, watermarked draft; reject literal credentials, unapproved sources, or public destinations.
  2. Verify health, task completion, policy/rights outcome, credit usage, access scope, retention, and draft-only behavior before production approval.
  3. Release one bounded production canary only after owner sign-off; halt and remove outputs on policy, rights, quality, scope, or budget drift.
  4. Promote in stages, preserving a redacted receipt and the rollback reference; delete temporary assets at the retention boundary.

Output

Produce a production receipt with release ID, environment, smoke-test brief classification, aggregate health/task result, policy/rights/budget checks, draft destination, approver, retention/removal proof, and rollback reference. Exclude prompts, asset URLs, and credentials.

Examples

release=r31; env=staging; brief=synthetic-smoke; policy=pass; rights=pass; destination=draft-only; approval=pending; rollback=r30 supports canary approval.

Resources

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-klingai-prod-eb836f/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-klingai-prod-eb836f.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-klingai-prod-eb836f",
  "kind": "skill",
  "name": "klingai-prod-checklist",
  "description": "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'.",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "kling-ai",
      "production",
      "deployment",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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'."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/klingai-pack/skills/klingai-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/klingai-pack/skills/klingai-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/klingai-pack/skills/klingai-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Kling AI Production Checklist\n\n## Overview\n\nChecklist covering authentication, error handling, cost controls, monitoring, security, and content policy before deploying Kling AI video generation to production.\n\n## Authentication\n\n- [ ] AK/SK stored in secrets manager (not `.env` in repo)\n- [ ] JWT auto-refresh with 5-min buffer before 30-min expiry\n- [ ] Separate API keys per environment (dev/staging/prod)\n- [ ] Key rotation schedule (quarterly minimum)\n- [ ] `Authorization: Bearer <token>` format verified\n\n## Error Handling\n\n- [ ] HTTP 400/401/402/403/429/5xx all handled\n- [ ] Exponential ba",
  "cost": {
    "context_tokens": 1104
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-klingai-prod-eb836f/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.