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 woozlitCore 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 chatLogin
woozlit loginOpens browser for authentication. Required before using chat.
Logout
woozlit logoutCheck Current User
woozlit whoamiSingle Question
woozlit ask "create a hello world file"Select Model
woozlit config modelManage Rules
woozlit rules list
woozlit rules add "always use typescript"
woozlit rules clearInitialize Project
woozlit initCreates .woozlit/ folder with rules.md and context.md.
Chat Commands
Inside chat session:
| Command | Description |
|---|---|
/exit | Exit chat |
/clear | Clear conversation |
/model | Switch AI model (default is Woozie) |
/theme | Switch UI color theme dynamically |
/mcp | List connected external tools |
/telegram | Control the remote Telegram bot |
/usage | Check token usage |
/rollback | Undo last AI file change |
/help | Show 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:
1. Easy Install (Recommended)
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.git2. 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-allConfig 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.