List recently uploaded images on PixelVault with their CDN URLs. Use when the user asks to "see my uploads", "find that image URL", "what images have I hoste...
Data & analysis
PixelLab
Try itPixelLab (pixellab.ai). Use this skill for ANY PixelLab request — reading, creating, updating, and deleting data. Whenever a task involves PixelLab, use this skill instead of calling the API directly.
What it does
PixelLab (pixellab.ai). Use this skill for ANY PixelLab request — reading, creating, updating, and deleting data. Whenever a task involves PixelLab, use this skill instead of calling the API directly.
The skill document
PixelLab
Operate PixelLab through your OOMOL-connected account. This skill calls the pixellab connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.
Running an action
Assume the user has already installed the oo CLI, signed in, and connected PixelLab. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.
1. Inspect the contract to get the authoritative input/output schema before building a payload:
oo connector schema "pixellab" --action ""
2. Run the action with a JSON payload that matches the input schema:
oo connector run "pixellab" --action "" --data '' --json
--datatakes a JSON object string or@path/to/file.json; omit it to send{}.- The response is
{ "data": ..., "meta": { "executionId": "..." } }; the execution id lives undermeta.executionId.
Each action is listed below with a one-line description; actions that change state carry a [write] or [destructive] tag. Before constructing --data, fetch the action's live schema with oo connector schema to get its authoritative input fields.
Available actions
animate_with_skeleton— Generate synchronous PixelLab animation frames from a reference character image and per-frame skeleton keypoints.animate_with_text_legacy— Generate four animation frames synchronously with PixelLab's original text animation model.convert_to_pixel_art— Convert a PNG or JPEG image to pixel art synchronously.create_pixen_image— Generate one pixel-art image synchronously with the PixelLab Pixen model. [write]create_pixflux_image— Generate one pixel-art image synchronously with the PixelLab Pixflux model. [write]delete_character— Delete a persisted PixelLab character and its associated animations. [destructive]delete_object— Delete one persisted PixelLab object. [destructive]delete_ui_asset— Delete one saved PixelLab UI asset. [destructive]dismiss_object_review— Discard all candidate frames for a one-direction object awaiting review.download_character_zip— Export one persisted PixelLab character as a ZIP transit file.enhance_animation_prompt— Expand a motion description using the visible content of one or two animation frames.enhance_character_prompt— Expand a short description into a model-ready PixelLab v3 character prompt.enhance_pixen_prompt— Expand a short description into a model-ready PixelLab Pixen image prompt.estimate_skeleton— Estimate PixelLab skeleton keypoints from a PNG or JPEG character image.get_background_job— Poll a PixelLab background animation job and store completed image frames in OOMOL file transit.get_balance— Retrieve the current PixelLab USD credit and subscription generation balances.get_character— Retrieve one persisted PixelLab character with rotations and animations.get_object— Retrieve one persisted PixelLab object with rotations, review frames, and animations.get_ui_asset— Retrieve one saved PixelLab UI asset and its generation status.inpaint_image_legacy— Inpaint a masked area synchronously with PixelLab's original image model.list_characters— List persisted PixelLab characters with offset pagination.list_objects— List persisted PixelLab objects with offset pagination.list_ui_assets— List saved PixelLab UI assets with offset pagination.remove_background— Remove a pixel-art image background synchronously and return a transparent PNG. [destructive]resize_image— Resize pixel art synchronously while preserving its pixel-art appearance.rotate_image— Rotate or tilt a pixel-art character or object synchronously.select_object_frames— Keep selected candidate frames from a one-direction object review as individual objects.start_animate_object— Submit one or more directional animation jobs for an existing PixelLab object. [write]start_convert_to_pixel_art_pro— Start Pro conversion of a PNG or JPEG image to automatically scaled pixel art. [write]start_create_character_4_directions— Start creation of a persisted PixelLab character with four directional rotations. [write]start_create_character_8_directions— Start creation of a persisted PixelLab character with eight directional rotations. [write]start_create_character_animation— Start one or more background jobs that add an animation to a persisted character. [write]start_create_character_pro— Start Pro creation of a persisted eight-direction PixelLab character. [write]start_create_character_state— Start creation of an edited state for an existing persisted character. [write]start_create_character_v3— Start v3 creation or rotation of a persisted eight-direction PixelLab character. [write]start_create_object_1_direction— Start creation of a persisted one-direction PixelLab object. [write]start_create_object_8_directions— Start creation of a persisted PixelLab object with eight directional rotations. [write]start_create_object_state— Start creation of an edited state for an existing PixelLab object. [write]start_create_ui_asset— Start creation of a saved PixelLab Pro UI panel asset. [write]start_edit_animation— Start a consistent Pro text-guided edit across animation frames. [write]start_edit_image_legacy— Start PixelLab's original text-guided image editing operation. [write]start_edit_images— Start a consistent Pro edit across one or more pixel-art images. [write]start_generate_image— Start Pro text-to-pixel-art generation with optional subject and style reference images. [write]start_generate_rotations— Start generation of eight directional rotations from one reference character frame. [write]start_generate_rotations_pro— Start Pro generation of eight directional rotations using a reference, style, or concept image. [write]start_generate_ui— Start Pro generation of a pixel-art game UI element. [write]start_generate_with_style— Start Pro pixel-art generation that matches one to four supplied style images. [write]start_inpaint— Start Pro mask-guided inpainting of a pixel-art image. [write]start_interpolation— Start Pro interpolation between two pixel-art keyframes. [write]start_pixflux_background— Start asynchronous Pixflux pixel-art image generation. [write]start_portrait_character_conversion— Start Pro conversion between a bust portrait and a full-body character sprite. [write]start_text_animation— Start an asynchronous PixelLab animation from a first frame and a text description of the character motion. [write]start_text_animation_pro— Start Pro text-guided animation from a reference character image. [write]start_transfer_outfit— Start Pro transfer of an outfit or appearance across animation frames. [write]update_character_tags— Replace the user-defined tags on a persisted PixelLab character. [write]update_object_tags— Replace the user-defined tags on a persisted PixelLab object. [write]
Safety
- Untagged actions are reads (get / list / search) — safe to run directly.
- Actions tagged
[write]change PixelLab state — confirm the exact payload and effect with the user before running. - Actions tagged
[destructive]remove or overwrite data — always confirm the target and get explicit approval first.
First-time setup
These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.
-
oo: command not found— install the oo CLI (other platforms: ):curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linuxirm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell -
Not signed in / authentication error — sign in to your OOMOL account once:
oo auth login -
scope_missing/credential_expired/app_not_ready/app_not_found— PixelLab is not connected, or the connection expired or lacks a scope. Connect once (auth type: API key) at:https://console.oomol.com/app-connections?provider=pixellab -
HTTP 402 /
OOMOL_INSUFFICIENT_CREDIT— billing stop. Recharge athttps://console.oomol.com/billing/token-rechargebefore retrying.
Resources
- PixelLab homepage: https://www.pixellab.ai/
Related skills
Use for PixelLab/Pip setup, auth, MCP/API routing, asset generation, editing, animation, talking portraits, lip sync, skeleton/template/preset animations, multi-shot/looping cinematics, docs/troubleshooting, bark completion sounds, and explicit PixelLab cost/budget/credit questions across MCP, REST v2/API, website/editor Pixelorama, Aseprite, and legacy v1. Trigger only when PixelLab (Pixel Lab) context is present, including PixelLab setup, MCP/API setup, PIXELLAB_SECRET, bearer-token auth, PixelLab sprites, sprite sheets, characters, portrait characters, vocal animations, talking GIFs, lip-sync plans, fonts, objects, tiles, tilesets, tilemaps, maps, UI, icons, backgrounds, palettes, image edits, animations, skeletons, template animations, preset animations, cinematics, looping or seamless-loop scenes, multi-shot scenes, endpoint choice, SDK integration, blueprints/recipes, recreating/replaying `*.blueprint.json` generations, troubleshooting, or PixelLab credits/cost/budget. Do not tri
PixelLab AI asset workflow and API helper for generating pixel-art images, conversions, rotations, animations, layered sprites, modular outfits/equipment, ti...
Label Studio (labelstud.io). Use this skill for ANY Label Studio request — reading, creating, and updating data. Whenever a task involves Label Studio, use t...
One CLI that turns a prompt into images, video, voice, music, sound effects, and full podcast episodes.
Transform a real product photo into a studio-quality ecommerce image, lifestyle scene, or marketplace-ready hero shot. This AI product photography tool replaces backgrounds, improves lighting, and stages scenes while using the source photo and confirmed product details as the visual anchor. Create clean white-background listings, contextual lifestyle compositions, and premium ad visuals from a single phone snap for Amazon, Taobao, Shopify, and social media. Start from one product photo, combine several references, or refine a selected draft toward a polished listing image.