Agent Infrastructure Orchestrator — Manage your autonomous agents with surgical precision.
Clawdie CLI is the command-line interface for the Clawdie platform, designed for hackers and developers who need high-throughput control over their agent clusters.
Download the latest release from the Releases page or build from source:
git clone https://github.com/dazeb/clawdie-cli.git
cd clawdie-cli
npm install
npm run buildLink the binary globally (optional):
npm linkclawdie login # Authenticate with your Clawdie credentials
clawdie logout # Securely clear your sessionclawdie agents # List all active agents in your fleet
clawdie status [id] # Deep-dive into agent health and metrics
clawdie restart <id> # Hot-reload an agent instance
clawdie stop <id> # Terminate an agent lifecycleclawdie logs <id> # Dump recent agent logs
clawdie logs <id> --follow # Real-time log stream (3s polling)clawdie deploy # Interactive deployment wizardLaunch the high-fidelity TUI dashboard for real-time monitoring.
clawdie nexusHotkeys:
TAB— Cycle views (Agents, Telemetry, Logs)j/k— Navigate selectionq— Exit Nexus
Persistence is handled at ~/.clawdie/config.json.
{
"apiUrl": "https://api.clawdie.ai",
"cookie": "session=...",
"user": { "id": "...", "email": "...", "name": "..." }
}CLAWDIE_API_URL: Direct the CLI to a custom Nexus endpoint.
This CLI operates under the Sentinel Protocol. Session cookies are stored locally with user-level permissions. Always logout on shared machines.
ISC © dazeb