Utility Commands
Miscellaneous commands for setup, status, and system management.
astonish setup
Interactive first-run wizard that configures your Astonish installation:
astonish setupWalks you through:
- Selecting a storage backend (SQLite or PostgreSQL)
- Selecting an AI provider and entering API keys
- Choosing a default model
- Configuring web search tools
- Setting up browser automation
- Initializing container sandboxes (optional)
astonish status
Display the current state of all Astonish subsystems:
astonish statusShows provider configuration, daemon status, MCP servers, memory state, and more.
astonish --version
Print version and build information:
astonish --version
# or
astonish -vINFO
This is a flag, not a subcommand. Use --version or -v.
astonish login
Authenticate with a remote platform instance:
astonish loginUsed when connecting the CLI to a cloud-deployed Astonish platform. After login, commands like chat, flows, and scheduler operate against the remote server.
astonish logout
Disconnect from the remote platform:
astonish logoutastonish daemon
Manage the background daemon service and Studio web UI (local-only):
# Install as a system service (auto-starts on login)
astonish daemon install
# Start / stop / restart the service
astonish daemon start
astonish daemon stop
astonish daemon restart
# Check service status
astonish daemon status
# Run in the foreground (starts the Studio HTTP server on :9393)
astonish daemon run
# View logs
astonish daemon logs
# Uninstall the service
astonish daemon uninstallastonish daemon run starts the Studio web interface at http://localhost:9393. The installed service runs this automatically in the background on login.
astonish config
Manage configuration:
astonish configastonish tools
Manage MCP servers and tools:
# List all available tools
astonish tools list
# List MCP servers
astonish tools servers
# Refresh tool cache
astonish tools refresh
# Enable/disable an MCP server
astonish tools enable <name>
astonish tools disable <name>
# Edit MCP configuration
astonish tools edit
# Browse MCP server store
astonish tools store
# Search tools
astonish tools search <query>astonish sessions
Manage chat sessions:
astonish sessionsastonish credentials
Manage the encrypted credential store (local-only):
astonish credentialsastonish sandbox
Manage container sandboxes (local-only):
astonish sandboxDeprecated Commands
astonish memory
Deprecated
The memory CLI command is no longer available. Memory is managed through the agent's built-in memory tools during chat sessions, or via Studio Settings.
See Studio Overview for details on the web interface.