Woozlit CLI v2.0.1

Command line interface for Woozlit AI an agentic coding assistant.

Installation

# Standalone binaries are coming soon, or install via npm
npm install -g woozlit

Core Features

  • Agentic AI: Executes complex tasks (coding, testing, deployment) autonomously without stopping to ask permission.
  • Global Theming: Switch the entire CLI's color palette on the fly (/theme). Supports: Woozlit Blue, Classic Purple, Hacker Green, Sunset Orange, Dracula Pink, and Monochrome Silver.
  • MCP Protocol: Deep integration with Model Context Protocol to hook into external servers.
  • Auto-Correction: Automatically detects, reads stderr, and attempts to fix errors during execution loops.
  • Rollback: Undo AI file changes with /rollback.
  • History: Local conversation history with 1-week retention.
  • Cross-Platform: Windows, macOS, and Linux support with platform-aware commands.

Usage

Start Chat

woozlit
# or
woozlit chat

Login

woozlit login

Opens browser for authentication. Required before using chat.

Logout

woozlit logout

Check Current User

woozlit whoami

Single Question

woozlit ask "create a hello world file"

Select Model

woozlit config model

Manage Rules

woozlit rules list
woozlit rules add "always use typescript"
woozlit rules clear

Initialize Project

woozlit init

Creates .woozlit/ folder with rules.md and context.md.

Chat Commands

Inside chat session:

CommandDescription
/exitExit chat
/clearClear conversation
/modelSwitch AI model (default is Woozie)
/themeSwitch UI color theme dynamically
/mcpList connected external tools
/telegramControl the remote Telegram bot
/usageCheck token usage
/rollbackUndo last AI file change
/helpShow help

Available Models

  • Woozie - Default & Recommended for speed/autonomy
  • Llama 3.3 70B / 4 Maverick
  • Qwen3 235B / Coder
  • Mistral Small 3.2
  • DeepSeek V3 / R1
  • Kimi K2
  • and more...

MCP Support

Woozlit CLI supports the Model Context Protocol (MCP), allowing the AI to use external tools.

Manage MCP Servers:

Install servers from GitHub or built-in presets:

# Install specific tools (e.g. Chrome Control)
woozlit mcp install browsermcp
woozlit mcp install mcp-chrome-bridge
# Follow the on-screen instructions to finish setup

# Install any MCP server from GitHub
woozlit mcp install https://github.com/owner/repo.git

2. Manual Configuration

You can also manually add servers via CLI or config file.

CLI:

# Add standard MCP server (stdio)
woozlit mcp add sqlite uvx mcp-server-sqlite --db test.db

# Add HTTP MCP server (e.g. for bridges)
woozlit mcp add-http mcp-chrome http://127.0.0.1:12306/mcp

# Remove a server
woozlit mcp remove mcp-chrome

# Remove ALL servers
woozlit mcp remove-all

Config File (mcp.json): Create a mcp.json file in your project root or home directory (~/.woozlit/mcp.json):

{
  "mcpServers": {
    "mcp-chrome": {
      "type": "streamable-http",
      "url": "http://127.0.0.1:12306/mcp"
    },
    "my-server": {
      "type": "stdio",
      "command": "node",
      "args": ["./server.js"]
    }
  }
}

Once added, the AI can automatically discover and use tools provided by these servers.

Use /mcp in the chat to see currently active tools.