TensorLab Skills are AI task definitions for Claude Code, focusing on multimedia generation and processing using TensorsLab's AI models. It provides comprehensive capabilities including text-to-image and image-to-image generation, advanced image editing (avatar generation, watermark removal, object erasure, face replacement), as well as text-to-video and image-to-video generation.
Skills are self-contained folders that package instructions, scripts, and resources together for Claude Code to use on specific use cases. Each folder includes a SKILL.md file with YAML frontmatter (name and description) followed by guidance for Claude Code to follow while the skill is active.
TensorLab skills are compatible with Claude Code.
- Register the repository as a plugin marketplace:
/plugin marketplace add https://github.com/tensorslab/skills
- To install a skill, run:
/plugin install <skill-name>@https://github.com/tensorslab/skills
For example:
/plugin install tl-image@https://github.com/tensorslab/skills
use the following command to install skills:
npx skills add tensorslab/skills -g -y| Name | Description | Documentation |
|---|---|---|
tl-image |
Generate images using TensorsLab's AI image generation models. Supports text-to-image and image-to-image generation with automatic prompt enhancement, progress tracking, and local file saving. | SKILL.md |
tl-video |
Generate videos using TensorsLab's AI video generation models. Supports text-to-video and image-to-video generation with automatic prompt enhancement, progress tracking, and local file saving. | SKILL.md |
Before using TensorsLab skills, configure your API key:
Get your API Key at TensorsLab Console.
# Windows (PowerShell)
$env:TENSORSLAB_API_KEY="your-api-key"
# Mac/Linux
export TENSORSLAB_API_KEY="your-api-key"Once a skill is installed, mention it directly while giving Claude Code instructions:
- "Generate an image of an astronaut on the moon."
- "Animate this scenery picture into a 10s video."
Claude Code automatically loads the corresponding SKILL.md instructions and helper scripts while completing the task.
Browse the latest instructions and scripts at tensorslab/skills.