rushdino-cli
Installation
SKILL.md
rushdino CLI Reference
Use the bash tool to invoke these commands. Add --json for machine-readable output — always use --json in automated or agentic contexts.
If the server is not running, commands exit non-zero with a clear error on stderr.
Sessions
| Command | Purpose | Example |
|---|---|---|
rushdino sessions list [--json] |
List all sessions | rushdino sessions list --json |
rushdino sessions create --title <title> [--json] |
Create a new session | rushdino sessions create --title "Research task" --json |
rushdino sessions get <id> [--json] |
Get session details | rushdino sessions get abc123 --json |
rushdino sessions message <id> <message> [--json] |
Send a message to a session | rushdino sessions message abc123 "Start analysis" --json |
rushdino sessions archive <id> |
Archive a session | rushdino sessions archive abc123 |
rushdino sessions delete <id> |
Delete a session | rushdino sessions delete abc123 |