CLI Installation
Install the Torale command-line interface.
Requirements
- Python 3.9 or higher
- pip or uv package manager
Installation
Using pip
bash
pip install toraleUsing uv
bash
uv tool install toraleVerify Installation
bash
torale --versionQuick Setup
1. Get API Key
- Log in to torale.ai
- Navigate to Settings → API Keys
- Generate new key
- Copy key (shown only once)
2. Configure Authentication
bash
torale auth set-api-key
# Paste your API key when prompted3. Test Connection
bash
torale auth statusOutput:
✓ Authenticated as user@example.comCommand Overview
bash
# Authentication
torale auth set-api-key
torale auth status
torale auth logout
# Task management
torale task create
torale task list
torale task get <id>
torale task update <id>
torale task delete <id>
torale task execute <id>
torale task logs <id>
# Preview
torale task previewShell Completion
Bash
bash
# Add to ~/.bashrc
eval "$(_TORALE_COMPLETE=bash_source torale)"Zsh
bash
# Add to ~/.zshrc
eval "$(_TORALE_COMPLETE=zsh_source torale)"Fish
bash
# Add to ~/.config/fish/completions/torale.fish
_TORALE_COMPLETE=fish_source torale | sourceNext Steps
- Set up Authentication
- Learn Task Commands
- Configure Settings