npx skills add https://github.com/letz-ai/letzai-skill --skill letzai-apiCLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。
A Claude skill that enables AI-powered image and video generation using the LetzAI API.
This repository contains a Claude skill that teaches Claude how to effectively use the LetzAI API. When this skill is active, Claude can help you:
@modelname syntaxletzai-skill/
├── SKILL.md # Main skill file (required by Claude)
├── api_reference.md # Detailed API documentation
├── examples/
│ ├── image_generation.js # JavaScript examples
│ ├── video_generation.py # Python examples
│ └── polling_pattern.md # Async polling guide
├── LICENSE.txt # MIT License
└── README.md # This file
Install with a single command using skills.sh:
npx skills add Letz-AI/letzai-skill
Place this skill in your project's .claude/skills/letzai-api/ directory.
Go to Settings → Features → Add custom skill (requires Pro/Max/Team/Enterprise).
Upload via the Skills API. See Anthropic's Skills documentation for details.
Once the skill is installed, you can ask Claude things like:
| Endpoint | Purpose |
|---|---|
POST /images |
Generate images |
POST /videos |
Generate videos from images |
POST /image-edits |
Edit existing images |
POST /upscales |
Upscale images |
GET /models |
List custom trained models |
All generation is asynchronous - poll the GET endpoints until status is "ready".
| Model | API Value | Resolutions |
|---|---|---|
| Nano Banana Pro | gemini-3-pro-image-preview |
default, 2k, 4k |
| Flux2 Max | flux2-max |
1k, hd |
| SeeDream 4.5 | seedream-4-5-251128 |
2k, 4k |
| Model | API Value | Duration |
|---|---|---|
| Default | default |
2-6 sec |
| VEO 3.1 | veo31 |
8 sec |
| Kling 2.6 | kling26 |
5-10 sec |
| Wan 2.5 | wan25 |
5-10 sec |
LetzAI supports custom trained models for persons, objects, and styles. Use them in prompts with the @modelname syntax:
@john_doe on the beach at sunset
A product photo featuring @my_product
Portrait in @vintage_style aesthetic
Train models via the LetzAI web interface.
This skill is released under the MIT License. See LICENSE.txt for details.
This skill is provided to help integrate with the LetzAI API. Always test thoroughly in your own environment. API behavior and pricing may change - refer to the official LetzAI documentation for the most current information.