✓ Verified 💻 Development ✓ Enhanced Data

Skill Perstudio

Generate AI images and videos.

Rating
4.1 (221 reviews)
Downloads
12,528 downloads
Version
1.0.0

Overview

Generate AI images and videos.

Complete Documentation

View Source →

Perstudio — AI Image & Video Generation

Generate images, videos, and audio with natural language. Just describe what you want and perstudio routes it to the right model automatically.

All generation costs tokens. Check balance with the balance action. Token packs available at https://perstudio.ai/pricing.

Quick Start

text
perstudio({ action: "generate_sync", intent: "a golden retriever puppy in a field of sunflowers, studio lighting" })

Takes 15-90 seconds.

What You Can Do

CapabilityInput RequiredToken Cost
Text to ImageNone250
Image to ImageImage250
Product PhotographyNone370
Portrait / AvatarNone370
Upscale (4x)Image120
InpaintingImage + Mask250
Style TransferReference Image370
Sticker / IconReference Image250
VideoVaries2200
Text to SpeechVoice Reference490

Examples

Generate an image

text
perstudio({ action: "generate_sync", intent: "a cyberpunk cityscape at sunset, neon lights reflecting on wet streets" })

Transform an existing image

text
perstudio({ action: "upload_asset", file_path: "~/Pictures/input.jpg" })
// Returns: { asset_id: "abc123" }

perstudio({ action: "generate_sync", intent: "transform into a watercolor painting", input_image_asset_id: "abc123" })

Security note: upload_asset only accepts files from allowed directories: ~/Pictures, ~/Downloads, ~/Desktop, ~/.openclaw/workspace, and the system temp directory. Paths outside these directories are rejected.

Generate video

text
perstudio({ action: "generate_sync", intent: "a cat playing piano, cinematic lighting" })

Animate a still image

text
perstudio({ action: "upload_asset", file_path: "~/Pictures/photo.jpg" })
perstudio({ action: "generate_sync", intent: "gentle wind blowing through hair, subtle movement", input_image_asset_id: "abc123" })

Check balance

text
perstudio({ action: "balance" })

Tips

  • Just describe what you want — the system picks the best approach automatically.
  • Be specific — include style, lighting, and composition details for better results.
  • Auto-upscale — pass auto_upscale: true to automatically enhance resolution.

Security

  • File access is restricted. The upload_asset action enforces a directory allowlist — only files in ~/Pictures, ~/Downloads, ~/Desktop, ~/.openclaw/workspace, and the system temp directory can be uploaded. All other paths are rejected. Paths are resolved to their real location (following symlinks) before validation to prevent traversal attacks.
  • API key required. All generation requests require a valid PERSTUDIO_API_KEY. No data is sent to perstudio.ai without authentication.
  • Open source. The plugin source code is available at github.com/montenegronyc/perstudio-openclaw for full review.

Setup

  • Sign up at perstudio.ai
  • Create an API key in your dashboard
  • Install: npm install -g perstudio-openclaw
  • Configure your API key:
text
openclaw config set plugins.entries.perstudio.config.apiKey '"your-api-key"'
  • Start generating!

Installation

Terminal bash

openclaw install skill-perstudio
    
Copied!

💻Code Examples

perstudio({ action: "generate_sync", intent: "a golden retriever puppy in a field of sunflowers, studio lighting" })

perstudio-action-generatesync-intent-a-golden-retriever-puppy-in-a-field-of-sunflowers-studio-lighting-.txt
Takes 15-90 seconds.

## What You Can Do

| Capability | Input Required | Token Cost |
|-----------|----------------|------------|
| Text to Image | None | 250 |
| Image to Image | Image | 250 |
| Product Photography | None | 370 |
| Portrait / Avatar | None | 370 |
| Upscale (4x) | Image | 120 |
| Inpainting | Image + Mask | 250 |
| Style Transfer | Reference Image | 370 |
| Sticker / Icon | Reference Image | 250 |
| Video | Varies | 2200 |
| Text to Speech | Voice Reference | 490 |

## Examples

### Generate an image

perstudio({ action: "generate_sync", intent: "transform into a watercolor painting", input_image_asset_id: "abc123" })

perstudio-action-generatesync-intent-transform-into-a-watercolor-painting-inputimageassetid-abc123-.txt
> **Security note:** `upload_asset` only accepts files from allowed directories: `~/Pictures`, `~/Downloads`, `~/Desktop`, `~/.openclaw/workspace`, and the system temp directory. Paths outside these directories are rejected.

### Generate video

perstudio({ action: "balance" })

perstudio-action-balance-.txt
## Tips

- **Just describe what you want** — the system picks the best approach automatically.
- **Be specific** — include style, lighting, and composition details for better results.
- **Auto-upscale** — pass `auto_upscale: true` to automatically enhance resolution.

## Security

- **File access is restricted.** The `upload_asset` action enforces a directory allowlist — only files in `~/Pictures`, `~/Downloads`, `~/Desktop`, `~/.openclaw/workspace`, and the system temp directory can be uploaded. All other paths are rejected. Paths are resolved to their real location (following symlinks) before validation to prevent traversal attacks.
- **API key required.** All generation requests require a valid `PERSTUDIO_API_KEY`. No data is sent to perstudio.ai without authentication.
- **Open source.** The plugin source code is available at [github.com/montenegronyc/perstudio-openclaw](https://github.com/montenegronyc/perstudio-openclaw) for full review.

## Setup

1. Sign up at [perstudio.ai](https://perstudio.ai)
2. Create an API key in your dashboard
3. Install: `npm install -g perstudio-openclaw`
4. Configure your API key:
example.txt
perstudio({ action: "upload_asset", file_path: "~/Pictures/input.jpg" })
// Returns: { asset_id: "abc123" }

perstudio({ action: "generate_sync", intent: "transform into a watercolor painting", input_image_asset_id: "abc123" })

Tags

#coding_agents-and-ides

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author montenegronyc
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install skill-perstudio