Reference
CLI
Overview

CLI Reference

The aio command-line interface for managing all AionixOne services.

Installation

# Download binary
curl -L https://releases.aionixone.com/latest/aio -o aio
chmod +x aio
 
# Or via package manager (coming soon)
brew install aionixone/tap/aio

Global Options

aio [command] [flags]
 
Flags:
  --output, -o    Output format: table, json, yaml, wide (default: table)
  --tenant, -t    Tenant name (default: "default")
  --server, -s    Server URL (default: "http://localhost:53000")
  --help, -h      Show help
  --version, -v   Show version

Command Groups

CommandServiceDescription
aio wfStepFlowWorkflow management
aio fnAionixFnFunction management
aio trIgniterTrigger management
aio actOpenActAction execution
aio secCredVaultSecret management
aio paramParamStoreParameter management

TRN Resolution

Commands accept both full TRN and short names:

# Full TRN
aio wf run trn:stepflow:prod:template/order-flow
 
# Short name (uses default tenant)
aio wf run order-flow

Shell Completion

# Bash
aio completion bash > /etc/bash_completion.d/aio
 
# Zsh
aio completion zsh > ~/.zsh/completions/_aio
 
# Fish
aio completion fish > ~/.config/fish/completions/aio.fish

Documentation Export

# Export all docs as markdown
aio docs --format markdown > cli-docs.md
 
# Export specific command
aio docs wf --format markdown

Reference Pages