klingai-team-setup

Featured

Configure Kling AI for teams with per-project API keys, usage quotas, and role-based access. Trigger with phrases like 'klingai team', 'kling ai organization', 'klingai multi-user', 'shared klingai access'.

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 Team Setup ## Overview Manage team access to the Kling AI API using separate API keys, environment-based routing, usage quotas per team member, and centralized credential management. ## Per-Environment API Keys Create separate API key pairs in the [Kling AI developer console](https://app.klingai.com/global/dev/api-key) for each environment: | Environment | Key Naming Convention | Purpose | |------------|----------------------|---------| | Development | `dev-<project>` | Local testing, free tier | | Staging | `staging-<project>` | Integration testing | | Production | `prod-<project>` | Live traffic | ```bash # .env.development KLING_ACCESS_KEY="ak_dev_..." KLING_SECRET_KEY="sk_dev_..." # .env.production KLING_ACCESS_KEY="ak_prod_..." KLING_SECRET_KEY="sk_prod_..." ``` ## Team Configuration ```python from dataclasses import dataclass from typing import Optional @dataclass class TeamMember: name: str email: str role: str # admin, editor, viewer daily_credit_limit: int allowed_models: list[str] @dataclass class TeamConfig: name: str members: list[TeamMember] total_daily_limit: int = 1000 default_model: str = "kling-v2-master" default_mode: str = "standard" def get_member(self, email: str) -> Optional[TeamMember]: return next((m for m in self.members if m.email == email), None) # Example team configuration team = TeamConfig( name="marketing", total_daily_limit=5000, members=[ TeamMembe...

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-install-auth

Set up Kling AI API authentication with JWT tokens. Use when starting a new Kling AI integration or troubleshooting auth issues. Trigger with phrases like 'kling ai setup', 'klingai api key', 'kling ai authentication', 'configure klingai'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

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 checklist', 'deploy klingai'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

klingai-rate-limits

Handle Kling AI API rate limits with backoff and queuing strategies. Use when hitting 429 errors or planning high-volume workflows. Trigger with phrases like 'klingai rate limit', 'kling ai 429', 'klingai throttle', 'kling api limits'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

klingai-ci-integration

Integrate Kling AI video generation into CI/CD pipelines. Use when automating video content in GitHub Actions or GitLab CI. Trigger with phrases like 'klingai ci', 'kling ai github actions', 'klingai automation', 'automated video generation'.

2,266 Updated today
jeremylongshore
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