Skip to main content

Overview

ModelsLab Agent Skills are modular capabilities that extend your coding agents with ModelsLab-specific workflows. Each Skill bundles instructions (and optional resources) so your agent can use ModelsLab APIs consistently without repeating setup across projects.
What you get:
  • Pre-built skills for image, video, audio, 3D, and more
  • A consistent workflow your agent can reuse automatically
  • Easy installation via the Skills CLI

Quick Start

# Install all ModelsLab skills
npx skills add modelslab/skills --all

# Install a specific skill
npx skills add modelslab/skills --skill modelslab-image-generation

# List available skills
npx skills add modelslab/skills --list
Use --all if you want your agent to cover all ModelsLab capabilities.

Available Skills

Generation Skills

SkillDescriptionUse Cases
๐ŸŽจ Image Generation (modelslab-image-generation)Generate high-quality images from text prompts or transform images.Product photos, marketing graphics, concept art
๐ŸŽฌ Video Generation (modelslab-video-generation)Generate videos from text or animate images.Product demos, social media videos, animations
๐ŸŽต Audio Generation (modelslab-audio-generation)Generate speech, music, and sound effects with voice cloning.Audiobooks, podcasts, game audio
โœ‚๏ธ Image Editing (modelslab-image-editing)Background removal, upscaling, and editing tools.E-commerce, real estate, restoration
๐ŸŽฒ 3D Generation (modelslab-3d-generation)Generate 3D models from text or images.Game assets, 3D printing, AR/VR
๐Ÿ  Interior Design (modelslab-interior-design)Room redesign and decoration.Staging, renovation, mockups

Agent Control Plane Skills

SkillDescriptionUse Cases
๐Ÿ”‘ Account Management (modelslab-account-management)Signup, login, tokens, profile, API keys, and team management.Agent bootstrapping, API key rotation, team onboarding
๐Ÿ’ณ Billing & Subscriptions (modelslab-billing-subscriptions)Wallet funding, payment methods, subscriptions, invoices, coupons.Auto-recharge, subscription lifecycle, invoice retrieval
๐Ÿ” Model Discovery (modelslab-model-discovery)Search 50,000+ models and monitor usage analytics.Model selection, usage monitoring, cost tracking

Platform Skills

SkillDescriptionUse Cases
๐Ÿ”” Webhooks (modelslab-webhooks)Handle async work with webhook notifications.Batch jobs, background tasks
๐Ÿ“ฆ SDK Usage (modelslab-sdk-usage)Guidance for ModelsLab SDKs.Type safety, autocomplete, cleaner code

How Skills Work

Skills live on disk as folders containing a SKILL.md file. When your agent sees a matching task, it loads only the relevant Skill instructions and any referenced resources. This keeps context light while still giving your agent expert guidance when it matters.
modelslab-image-generation/
โ”œโ”€โ”€ SKILL.md
โ”œโ”€โ”€ templates/
โ””โ”€โ”€ scripts/

Install to Specific Agents

You can target specific agents that support the Skills CLI:
npx skills add modelslab/skills --all -a claude-code -a cursor

Resources

Next Steps

1

Get an API key

Create a project and grab your key in the dashboard: https://modelslab.com/dashboard
2

Install Skills

Run npx skills add modelslab/skills --all to enable all ModelsLab Skills.
3

Start using your agent

Ask your agent to generate images, videos, audio, or 3D using ModelsLab APIs.