auraflow

Generates images from text prompts via the Auraflow model on the Pixazo API gateway.

Updated May 2, 2026
One-click install
npx skills add https://github.com/Pixazo-AI/skills --skill auraflow-pixazo-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: auraflow
Source: https://github.com/Pixazo-AI/skills/tree/main/skills/auraflow
Command: npx skills add https://github.com/Pixazo-AI/skills --skill auraflow-pixazo-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It lets a coding agent call the Auraflow text-to-image model through the Pixazo API without the user writing any HTTP code, handling API key setup, request construction, and error handling automatically. ## Core Features & Use Cases - Text-to-Image Generation: Sends a prompt to the Auraflow v0.3 endpoint and returns image URLs synchronously, with tunable guidance scale, inference steps, and prompt expansion. - Managed Authentication: Walks the user through obtaining a Pixazo API key once and saving it to ~/.pixazo/api-key so it is never requested again. - Structured Error Handling: Maps 401, 402, 429, 4xx, and 5xx responses to clear user-facing messages with retry guidance. - Use Case: Ask your agent to generate a hyper-realistic product concept image, and it builds the request, calls the Pixazo gateway, and shows you the resulting image URL. ## Quick Start Ask your agent to generate an image with Auraflow, for example: create a portrait of a fox in dramatic studio lighting using Auraflow.

Frequently Asked Questions about auraflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate an image with the Auraflow API?▼

Send a POST request to the Pixazo gateway endpoint with your prompt, num_images, guidance_scale, and num_inference_steps in the JSON body. The response is synchronous and returns image URLs you can display or download.

Where do I get a Pixazo API key for Auraflow?▼

Sign in at https://api-console.pixazo.ai/api_keys, click Create new key, and copy it. The skill saves it to ~/.pixazo/api-key so you only provide it once.

Does Auraflow support image-to-image editing?▼

The documented operation for this skill is Auraflow v0.3 text-to-image only. For editing workflows, the skill points to other Pixazo image-editing models and the full reference at pixazo.ai/models/auraflow.

Why am I getting a 401 or 402 error from the Pixazo API?▼

A 401 means the API key is missing or invalid, so generate a fresh key at the API console. A 402 means your account is out of credits and needs a top-up at the Pixazo dashboard.

How many images can Auraflow generate per request?▼

The num_images parameter controls variations, typically 1 to 4 per call, with 1 as the default. Generation is synchronous, so results return in the same response without polling.