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

guidedao-code

v0.1.3

Published

Code Assistant

Downloads

18

Readme

GuideDAO Code

📋 Overview

GuideDAO Code is an intelligent CLI assistant for working with your codebase, designed to simplify development and maintenance processes. Using powerful LLM models, GuideDAO Code helps you analyze, modify, and understand code by responding to your natural language requests.

✨ Features

  • 🔍 Code Analysis - explanation of complex parts of your codebase
  • ✏️ File Modification - editing, creating, and deleting files based on requests
  • 🔄 File Management - moving and renaming files
  • 🐛 Error Fixing - analyzing and fixing browser errors
  • 📚 Documentation - generating explanations and documentation

🚀 Installation

Global Installation

npm install -g guidedao-code

Local Installation

npm install guidedao-code

🖥️ Usage

Running via CLI

guidedao-code

This will launch an interactive CLI interface in your current project directory.

Example Requests

After launching the CLI, you can enter natural language requests:

guidedao-code> Explain the project structure
guidedao-code> Create a new utils/helpers.ts file with date utility functions
guidedao-code> Fix browser errors

🛠️ Commands

GuideDAO Code supports the following commands:

| Command | Description | Example Usage | | -------------------- | ------------------ | -------------------------------------------------------- | | READ_FILE | Read file content | Show me the content of src/index.ts | | EDIT_FILE | Edit a file | Add logging to the login function in auth.js | | CREATE_FILE | Create a new file | Create a Button component in src/components/Button.tsx | | DELETE_FILE | Delete a file | Delete the unused old-utils.js file | | MOVE_FILE | Move/rename a file | Move auth.js to the services folder | | EXPLAIN_FILE | Explain a file | Explain what webpack.config.js does | | FIX_BROWSER_ERRORS | Fix browser errors | Fix errors in the browser console |

🏗️ Architecture

GuideDAO Code uses the following architecture:

System Architecture

Key Components:

  • CLI Interface - user interaction
  • LLM Model - natural language processing and code generation
  • Codebase Manager - scanning and managing project files
  • Action Handlers - performing operations on files

🧩 Integrations

GuideDAO Code integrates with:

  • 🌐 MCP Browser Client - for analyzing browser errors
  • 🤖 Anthropic Claude - for natural language processing
  • 🗄️ SQLite - for local data storage

💻 Development

Requirements

  • Node.js 20+
  • pnpm 9+

System Requirements

This package uses native modules (better-sqlite3) that require compilation during installation:

  • macOS: Make sure you have Xcode or Command Line Tools installed
    xcode-select --install
  • Linux: Ensure you have build tools and SQLite development libraries
    # Ubuntu/Debian
    sudo apt-get install build-essential python3 libsqlite3-dev
    # RHEL/Fedora
    sudo dnf install gcc-c++ make python3 sqlite-devel
  • Windows: Install Visual Studio Build Tools and Python
    npm install --global --production windows-build-tools

Installing Dependencies

pnpm install

Building the Project

pnpm run build

Running in Development Mode

pnpm run dev

🔑 Configuration

To work with different LLM models, create a .env file in the project root:

ANTHROPIC_API_KEY=your-api-key

🤝 Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a branch for your changes
  3. Make changes and create a PR

📄 License

ISC