npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dodo-ai

v0.1.13

Published

An open-source AI coding agent built in Go

Readme


Dodo is an open-source, terminal-based AI coding environment designed for developers who want the power of an autonomous agent without giving up control or privacy.

This package installs the CLI wrapper that automatically downloads and runs the high-performance Go engine for your operating system.

🚀 Quick Start

Install globally via npm:

npm install -g dodo-ai

Navigate to any project directory:

cd my-project
dodo

🔄 Keep Up to Date

To update to the latest version of Dodo, simply run:

npm install -g dodo-ai@latest

⚙️ Configuration & LLMs

Dodo works with your favorite LLM. You can configure it easily using the built-in wizard:

  1. Run the Setup Wizard: Inside Dodo, type /conf (or select "Start New Session" -> "Configure").

  2. Choose your Provider:

    • OpenAI (GPT-4o, o1-preview)
    • Anthropic (Claude 3.5 Sonnet)
    • Google (Gemini 1.5 Pro)
    • Local Models (Ollama, LM Studio via OpenAI-compatible endpoint)
  3. Enter API Keys: The wizard will securely save your keys locally in ~/.dodo/config.yaml.

✨ Key Features

  • 🛡️ Sandboxed Execution: All agent commands run in a secure, isolated Docker container (or controlled local environment).
  • 🧠 Model Agnostic: Bring your own LLM. Works with Claude 3.5 Sonnet, GPT-4o, Gemini, or local models via Ollama.
  • ⚡ Fast & Native: Core engine written in Go for speed, with a beautiful React-based terminal UI.
  • 🔧 Developer First: Full shell access, file editing, and project indexing capabilities.

🎮 CLI Commands

Once inside Dodo, you have a powerful set of tools at your disposal:

| Command | Description | |---------|-------------| | /conf | Setup Wizard: Configure LLM provider, API keys, and sandbox settings. | | /index | Project Indexing: Scan your codebase to give the agent full context. | | /tools | Tool Viewer: See exactly what capabilities the agent has enabled. | | /mode | Switch Modes: Toggle between Planner, Code, and Architect modes. | | /clear | Clear Context: Start fresh without losing your session settings. | | /exit | Quit: Safely shutdown the session. |

📦 Supported Platforms

The installer automatically fetches the correct binary for:

  • macOS (Apple Silicon + Intel)
  • Linux (AMD64 + ARM64)
  • Windows (AMD64)

🛠️ Troubleshooting

"dodo: command not found" Ensure your npm global bin directory is in your PATH.

export PATH=$PATH:$(npm config get prefix)/bin

"Permission denied" If you installed Node with root/sudo, you might need to fix npm permissions or run with sudo (not recommended).

📄 License

MIT © Chams Bouzaiene