Use the Abyssale CLI from KosmoKrator to call Abyssale tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Abyssale can be configured headlessly with `kosmokrator integrations:configure abyssale`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure abyssale --set access_token="$ABYSSALE_ACCESS_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor abyssale --jsonkosmokrator integrations:status --json
Credentials
Authentication type: Bearer tokenbearer_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
access_token
ABYSSALE_ACCESS_TOKEN
Secret secret
yes
Access Token
url
ABYSSALE_URL
URL url
no
API Base URL
Call Abyssale Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Abyssale.
abyssale.abyssale_list_generations
Read read
List image generation jobs from Abyssale. Returns a paginated list of generations, optionally filtered by status (e.g., "finished", "processing", "failed").
Generate images from an Abyssale template. Specify the template, one or more output format IDs, and element modifications (text, images, colors) to customize the output.
List available output formats from Abyssale. Formats define the size and dimensions of generated images (e.g., 1200x628 Facebook post, 1080x1080 Instagram square).
Use these parameter tables when building CLI payloads without calling integrations:schema first.
abyssale.abyssale_list_generations
List image generation jobs from Abyssale. Returns a paginated list of generations, optionally filtered by status (e.g., "finished", "processing", "failed").
Generate images from an Abyssale template. Specify the template, one or more output format IDs, and element modifications (text, images, colors) to customize the output.
Array of format UUIDs to generate (e.g., ["fmt_abc123", "fmt_def456"]). Use abyssale_list_formats to discover available formats.
modifications
object
no
Element modifications as a JSON object. Keys are element names, values define overrides (e.g., {"title": {"payload": "New Headline"}, "background": {"payload": "https://example.com/bg.jpg"}}).
abyssale.abyssale_list_templates
List available design templates from Abyssale. Returns a paginated list of templates with their IDs and names.
List available output formats from Abyssale. Formats define the size and dimensions of generated images (e.g., 1200x628 Facebook post, 1080x1080 Instagram square).
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.