DAEMORA

CLI Guide

Everything you can do with Daemora from the command line. Click any section to expand.

INSTALL

Get Started

npm install -g daemoraInstall globally from npm
curl -fsSL https://raw.githubusercontent.com/CodeAndCanvasLabs/Daemora/main/install.sh | shOne-liner install via curl
daemora --versionVerify install and print version
daemora helpPrint full command reference
daemora startStart the agent (foreground)
daemora setupInteractive setup wizard
daemora helpShow help
daemora versionShow version
daemora daemon installInstall as OS service (launchd on macOS, systemd on Linux)
daemora daemon uninstallRemove OS service
daemora daemon startStart background daemon
daemora daemon stopStop background daemon
daemora daemon restartRestart daemon
daemora daemon statusShow daemon status (running/stopped, PID, uptime)
daemora daemon logsView daemon logs (last 50 lines)
daemora vault statusShow vault status (exists, locked/unlocked)
daemora vault set mypass123 OPENAI_API_KEY sk-abc123Store encrypted secret
daemora vault set mypass123 ANTHROPIC_API_KEY sk-ant-xyzStore another key
daemora vault get mypass123 OPENAI_API_KEYRetrieve a secret by name
daemora vault list mypass123List all stored key names
daemora vault import mypass123Import all keys from .env into vault
daemora vault import mypass123 /path/to/custom/.envImport from specific .env file
daemora mcp listList all MCP servers with status
daemora mcp addInteractive add (prompts for name, command, env vars)
daemora mcp add github npx -y @modelcontextprotocol/server-githubAdd GitHub MCP server
daemora mcp add postgres npx -y @modelcontextprotocol/server-postgres "postgresql://user:pass@localhost:5432/mydb"Add Postgres MCP server
daemora mcp add notion npx -y @notionhq/notion-mcp-serverAdd Notion MCP server
daemora mcp add stripe npx -y @stripe/mcp --tools=allAdd Stripe MCP server
daemora mcp add myserver "https://api.example.com/mcp?key=123&id=456"Add Streamable HTTP server
daemora mcp add mysse https://api.example.com/sse --sseAdd SSE transport server
daemora mcp env github GITHUB_PERSONAL_ACCESS_TOKEN ghp_abc123Set env var for server
daemora mcp enable notionEnable a disabled server
daemora mcp disable notionDisable without removing
daemora mcp reload githubReconnect live (if agent running)
daemora mcp remove githubRemove server entirely
daemora config listList all env vars
daemora config set OPENAI_API_KEY sk-abc123Set env var in .env
daemora config set DEFAULT_MODEL openai:gpt-4.1Set default model
daemora config set TELEGRAM_BOT_TOKEN 123456:ABC-xyzSet Telegram bot token
daemora config set PORT 3001Change server port
daemora config set PERMISSION_TIER standardSet permission tier (minimal|standard|full)
daemora config get DEFAULT_MODELGet a specific value
daemora config unset TELEGRAM_BOT_TOKENRemove env var from .env
daemora auth tokenShow current API token (for UI/API access)
daemora auth resetGenerate a new random API token
daemora sandbox showShow current allowed/blocked paths and restrict status
daemora sandbox add ~/ProjectsAllow agent to access ~/Projects
daemora sandbox add /var/dataAllow agent to access /var/data
daemora sandbox remove ~/ProjectsRemove from allowed paths
daemora sandbox block ~/Downloads/privateBlock agent from accessing this path
daemora sandbox unblock /etcRemove from blocked paths
daemora sandbox restrictAlso enforce path rules on shell commands
daemora sandbox unrestrictStop enforcing on shell commands
daemora sandbox clearRemove all sandbox rules (back to unrestricted)
daemora crew listList all crew members with status, tools, and config
daemora crew install daemora-crew-weatherInstall a crew member from npm
daemora crew remove weatherRemove an installed crew member
daemora crew reloadHot-reload all crew members without restart
daemora doctorRun security audit (vault, keys, sandbox, permissions, etc.)
daemora cleanupShow current auto-cleanup settings
daemora cleanup set 30Auto-delete logs older than 30 days
daemora cleanup set 0Disable auto-cleanup (keep everything)
daemora channelsShow configured channels (Telegram, WhatsApp, email, etc.)
daemora modelsShow available AI models across all providers
daemora toolsList all tools with descriptions
daemora tools FilesFilter tools by category
daemora tools searchFilter tools matching keyword

<arg> = required  ·  [arg] = optional  ·  Click any section to expand