Skip to content

CLI Commands

Michael Elliott edited this page Mar 14, 2026 · 2 revisions

CLI Commands

titan <command> [options]

Commands

Command Description
titan gateway Start Gateway server (HTTP + WS + SSE + Mission Control v2)
titan agent Standalone terminal agent
titan send <msg> Send one message, get response
titan onboard Interactive setup wizard (onboarding)
titan doctor System health check (providers, channels, deps)
titan model Model management (discover, alias, list, set)
titan pairing Device pairing for channels
titan agents List running agents
titan skills List/search skills (--scaffold, --test)
titan create-skill Scaffold a new skill (JS/TS/YAML templates)
titan config View/edit configuration (config get <key>, config set <key> <value>)
titan update Check for and install updates
titan mesh Mesh networking (init, join, peers, approve, revoke)
titan graphiti Memory graph management
titan mcp-server Start MCP Server mode (JSON-RPC 2.0, stdio or HTTP)
titan teams Team management (create, invite, roles, list)

Skill Scaffolding

titan create-skill my-tool              # Interactive: choose JS, TS, or YAML template
titan skills --scaffold my-tool         # Alternative scaffold command
titan skills --test my-tool             # Test a skill in isolation

MCP Server Mode

titan mcp-server                        # Start via stdio (for integration with other agents)
titan mcp-server --http --port 3100     # Start via HTTP transport

Exposes TITAN's tools to other AI agents and MCP-compatible clients via JSON-RPC 2.0.

Doctor

titan doctor

Checks: Node.js version, optional dependencies, provider connectivity, channel status, disk space, memory.

Config Management

titan config get agent.model            # Read a config value
titan config set agent.model "openai/gpt-4o"  # Set a config value

Slash Commands (In-Chat)

Command Description
/model [name] View or switch model
/think [on|off] Toggle extended thinking
/usage Token usage and costs
/compact Compact conversation context
/verbose [on|off] Toggle verbose output
/reset Reset current session
/new New conversation
/status System status
/autopilot [on|off] Toggle autopilot mode
/goals View/manage goals
/team Team management
/vault Secrets vault operations

Clone this wiki locally