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

raccoon-dev

v0.2.4

Published

Raccoon — local BYOK coding agent. OpenCode-compatible, minimalist TUI, prompt queue, @/$ input language, VeriLoop & Scope Guard.

Readme

Raccoon


Install

npm install -g raccoon-dev
raccoon

Or from source:

git clone [email protected]:arjunkshah/raccoon.git
cd raccoon && bun install
bun run dev

What is Raccoon?

Raccoon is a local, open-source, BYOK terminal coding agent. It follows OpenCode (MIT) as the primary OSS reference — permissions, task/skill tools, plan/build modes, .opencode/ paths — and adds differentiation on top (VeriLoop, Scope Guard, Worktree Swarm).

See docs/OPENCODE_REFERENCE.md for drop-in compatibility.

Raccoon also integrates patterns from:

| Agent | What Raccoon takes | |-------|-------------------| | OpenCode | Primary reference — permissions, task/skill, apply_patch, .opencode/ | | Codex CLI | Sandbox, approval modes, subagents, exec mode, hooks | | Goose | MCP extensibility, workflow orchestration | | Aider | Auto-commit, git integration, model-agnostic | | Pi Agent | Skills, prompt templates, extensions, session tree, compaction, RPC | | Claude Code | Goal mode, parallel subagents | | Gemini CLI | Web search grounding |

Agent Modes

| Mode | Description | |------|-------------| | 🔨 Build | Full read/write/run access | | 📋 Plan | Read-only exploration | | 🔍 Review | Code review & diffs | | 🎯 Goal | Autonomous subagent orchestration |

Pi Agent Compatibility

Raccoon includes Pi Agent's extensibility model:

# Skills (~/.raccoon/skills/ or .raccoon/skills/)
# Prompt templates — type /review to expand
# Extensions — TypeScript modules in ~/.raccoon/extensions/
# Session tree — /tree, /fork
# Compaction — /compact (auto when context fills)
# Run modes — interactive, print, JSON, RPC

raccoon print "summarize the codebase"
raccoon print --json "list all API routes"
raccoon rpc
raccoon install npm:@scope/raccoon-tools
raccoon skill list
/skill use review

Skills

8 bundled skills with YAML frontmatter (review, debug, test, refactor, security, deploy, mobile-remote, find-skills):

raccoon skill list                    # list all skills
raccoon skill use debug               # persistently activate
/skill use review                     # in TUI
raccoon marketplace search security   # find more skills
raccoon remote skills-install         # copy bundled skills to ~/.raccoon/skills/

Skills auto-trigger on keywords, suggest tools/modes, and inject into the agent context.

Killer features (differentiation)

See docs/MARKET_ROADMAP.md for the full roadmap.

| Feature | CLI / tool | |---------|------------| | VeriLoop — prove tasks with tests/lint/build | verify_task tool · raccoon bench | | Scope Guard — protected paths + scope report | scope_report tool · scopeGuard in config | | Worktree Swarm — subagents in isolated worktrees | worktreeSwarm: true in config | | Repo Brain — symbol/test/route impact | repo_brain tool | | Structured memory | raccoon memory add/list | | Skills marketplace | raccoon install skill:debug |

Approval modes (full customization)

/approval suggest      # ask before every tool (default)
/approval auto-edit    # auto-approve reads + file edits
/approval full-auto    # auto-approve most tools
/approval yolo           # no prompts, full access

raccoon --yolo
raccoon --full-auto
raccoon --allowed-tools read,grep,edit,bash

Per-tool rules in raccoon.jsonpermission block (allow / ask / deny per tool and glob pattern).

Remote access (Tailscale + phone)

Access Raccoon from your phone on your Tailnet:

raccoon remote start                  # binds 0.0.0.0:8787, prints auth token + URLs
raccoon remote start --tailscale      # also configures tailscale serve
raccoon remote status                 # show Tailscale IP + MagicDNS
  1. Run raccoon remote start on your dev machine
  2. Open the Tailscale URL on your phone (same Tailnet)
  3. Enter the auth token in ⚙ settings
  4. Use 🎤 voice input on iOS/Safari — chat with full agent modes + skills

Mobile PWA supports Add to Home Screen for a native-like experience.

Workflows & competitive features

Inspired by gaps in the agent landscape research (Codex, Claude Code, Aider, Goose, Windsurf):

raccoon review                        # dedicated code review mode
raccoon architect "add auth system"   # Aider-style plan → implement
raccoon recipe list                   # Goose/Windsurf workflow templates
raccoon recipe run fix-bug "login 500 error"
raccoon --yolo                        # full-auto, no approvals
raccoon --full-auto                   # auto-approve edits

In the TUI:

  • /recipe run fix-bug … — run a workflow recipe
  • /memory show|init|add — cross-session MEMORY.md
  • ask_user tool — agent asks clarifying questions interactively

Config (~/.raccoon/config.json):

  • 75+ providers — Hermes-compatible catalog auto-detected from env vars
  • Custom providers — named OpenAI-compatible endpoints (customProviders[])
  • Agent backends — use Claude Code, Codex, Copilot subscriptions as model (agentBackends)
  • raccoon config providers — list catalog · raccoon config connect codex
  • fallbackChain / fallbackProviders — auto-failover chain
  • hooks — shell commands on session/tool events
  • lintOnEdit — run eslint/ruff/gofmt after edits
  • testOnEdit — run tests after edits
  • modeTools — per-mode tool allowlists

Vision & notebooks:

  • image_read — load screenshots for vision models
  • notebook_edit / notebook_read — Jupyter support
  • /context — context window usage bar

Sprint 7:

raccoon watch --path=src "fix issues when files change"
raccoon cron add "standup" "0 9 * * 1-5" "Summarize yesterday's commits"
raccoon cron daemon
raccoon cron export | crontab -
raccoon mcp presets                    # list pre-built MCP servers
raccoon mcp add github
/mode audit                            # custom modes from raccoon.json
/search auth bug                       # search past sessions
/clone My forked session

SDK embed:

import { createRaccoonClient } from "@raccoon/sdk";
const client = await createRaccoonClient({ cwd: ".", provider: "anthropic" });
const answer = await client.chat("Explain this codebase");

Quick Start

export OPENAI_API_KEY=sk-...
export ANTHROPIC_API_KEY=sk-ant-...

raccoon
/connect
/init
/mode goal

License

MIT — open source forever. See LICENSE.