add eco CLI symlink to setup wizard, document all CLI commands
setup.sh now installs eco → ~/.local/bin/eco (symlink to cli.py). README.md updated with full eco command reference. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
30
README.md
30
README.md
@@ -68,14 +68,30 @@ systemctl --user start echo-core
|
||||
|
||||
## CLI Usage
|
||||
|
||||
The setup wizard installs `eco` as a global command (`~/.local/bin/eco`):
|
||||
|
||||
```bash
|
||||
./cli.py status # Bot online/offline, uptime
|
||||
./cli.py doctor # Full diagnostic check
|
||||
./cli.py logs # Tail echo-core.log
|
||||
./cli.py restart # Restart the service
|
||||
./cli.py secrets list # Show stored credentials
|
||||
./cli.py cron list # Show scheduled jobs
|
||||
./cli.py whatsapp status # WhatsApp bridge connection
|
||||
eco status # Bot online/offline, uptime
|
||||
eco doctor # Full diagnostic check
|
||||
eco restart # Restart the service
|
||||
eco restart --bridge # Restart bot + WhatsApp bridge
|
||||
eco stop # Stop the service
|
||||
eco logs # Tail echo-core.log (last 20 lines)
|
||||
eco logs 50 # Last 50 lines
|
||||
eco secrets list # Show stored credentials
|
||||
eco secrets set <name> # Store a secret in keyring
|
||||
eco secrets test # Check required secrets
|
||||
eco sessions list # Active Claude sessions
|
||||
eco sessions clear # Clear all sessions
|
||||
eco channel list # Registered Discord channels
|
||||
eco cron list # Show scheduled jobs
|
||||
eco cron run <name> # Force-run a cron job
|
||||
eco memory search "<query>" # Semantic search in memory
|
||||
eco memory reindex # Rebuild search index
|
||||
eco heartbeat # Run health checks
|
||||
eco whatsapp status # WhatsApp bridge connection
|
||||
eco whatsapp qr # QR code pairing instructions
|
||||
eco send <alias> <message> # Send message via router
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Reference in New Issue
Block a user