ePalos CLI Documentation
Command-line interface for ePalos platform. Automate tasks, deploy workflows, and manage resources from your terminal.
Installation
curl -LO https://dl.epalos.com/cli/latest/epalo
chmod +x epalo
sudo mv epalo /usr/local/bin
Note: Windows users need to download the .exe from the releases page
Configuration
Configuration File
{
"token": "YOUR_API_TOKEN",
"default_team": "engineering",
"theme": "dark",
"format": "json"
}
Store your configuration in ~/.epalos/config.json
epalo configure --token YOUR_API_TOKEN --team engineering
Command Reference
Core Commands
Command | Description |
---|---|
epalo task list | List all tasks in your active team |
epalo team switch | Switch between available teams |
epalo config set | Update cli configuration settings |
epalo docs | Open full documentation in browser |
View full command list with epalo --help
→ View examplesUsage Examples
Create Task Example
epalo task create --name "Documentation"
--description "Write CLI examples"
--due "2025-09-30"
--team engineering
Success: Created task EP-352 in engineering team