JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 66
  • Score
    100M100P100Q110163F
  • License MIT

Woozlit AI - Agentic Coding Assistant

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (woozlit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Woozlit CLI

    Command-line interface for Woozlit AI - an agentic coding assistant.

    Installation

    cd cli
    pnpm install
    pnpm build
    pnpm link --global

    Features

    • Agentic AI: Executes complex tasks (coding, testing, deployment) autonomously.
    • MCP Support: Use external tools (Computer Use, Filesystem, etc.) via Model Context Protocol.
    • System Control: Full access to shell commands, file system, and background processes.
    • Auto-Correction: Automatically detects and attempts to fix errors during execution.
    • CLI Integration: Works directly in your terminal with rich UI and interactive prompts.

    Usage

    Start Chat

    woozlit
    # or
    woozlit chat

    Login

    woozlit login

    Opens browser for Google 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:

    • /exit - Exit chat
    • /clear - Clear conversation
    • /model - Switch AI model
    • /usage - Check token usage
    • /help - Show help

    Available Models

    All models are provided via OpenRouter:

    • MiMo V2 (default)
    • Qwen3 235B
    • Qwen3 Coder
    • Llama 3.3 70B
    • Llama 4 Maverick
    • Devstral Small
    • Mistral Small 3.2
    • Nemotron Nano 12B
    • Kimi K2
    • GLM 4.5 Air
    • Kat Coder Pro
    • DeepSeek R1T Chimera

    Security

    • Requires Google authentication
    • Uses Firebase auth tokens
    • No secrets stored in CLI code
    • All requests verified server-side

    MCP Support (New in v1.2.0)

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

    Manage MCP Servers:

    # Add an MCP server
    woozlit mcp add sqlite uvx mcp-server-sqlite --db test.db
    
    # List connected servers
    woozlit mcp list
    
    # Remove a server
    woozlit mcp remove sqlite

    Once added, the AI can automatically discover and use tools provided by these servers (e.g., querying a database).

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