JSPM

  • Created
  • Published
  • Downloads 1392
  • Score
    100M100P100Q148259F
  • License MIT

Dokobot CLI - Connect your Chrome browser to AI agents

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 (@dokobot/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @dokobot/cli

    Connect your Chrome browser to AI agents. Powered by Dokobot.

    Install

    npm i -g @dokobot/cli

    Quick Start

    # Configure your API key
    dokobot config
    
    # Read any web page through your browser
    dokobot doko read https://example.com
    
    # Search the web
    dokobot doko search "latest AI news"
    
    # Connect your Chrome browser for full MCP control
    dokobot doko connect

    Commands

    doko

    Manage doko devices — connect your Chrome browser so AI agents can access real web pages, including SPAs, login-gated sites, and dynamic content.

    doko connect

    dokobot doko connect                              # Interactive setup
    dokobot doko connect --name "Work Chrome"         # Name your doko
    dokobot doko connect --browser-url http://127.0.0.1:9222  # Custom Chrome instance
    dokobot doko connect --device-id <id>             # Reconnect an existing doko

    Prerequisites: Chrome with remote debugging enabled:

    1. Open chrome://inspect/#remote-debugging
    2. Check "Allow remote debugging for this browser instance"

    doko list

    List all registered doko devices on this machine.

    doko read <url>

    Read a web page through your connected browser and output clean Markdown text.

    dokobot doko read https://example.com
    dokobot doko read https://example.com --screens 3 --timeout 30
    Option Description
    --screens <n> Number of screens to capture (default: auto)
    --timeout <seconds> Read timeout in seconds (default: 60)
    --reuse-tab Reuse existing tab instead of opening a new one

    doko search <query>

    Search the web and return results.

    dokobot doko search "dokobot mcp integration"
    dokobot doko search "latest AI news" --num 10
    Option Description
    --num <n> Number of results, 1-10 (default: 5)

    doko remove <id>

    Remove a registered doko device.

    Other commands

    dokobot config      # Configure API key and server URL
    dokobot update      # Check for updates

    Global Options

    Option Description
    --api-key <key> API key (or set DOKO_API_KEY env)
    --server <url> Server URL (default: https://dokobot.ai)
    --verbose Enable verbose logging

    License

    MIT