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

monkeyscode-cli

v0.1.11

Published

MonkeysCode CLI — standalone terminal coding agent. Works independently of the IDE and Agent Manager.

Readme

MonkeysCode CLI

AI-powered coding agent for the terminal. Works on macOS, Linux, and Windows.

npm version GitHub Actions License

Quick Install

# macOS / Linux
curl -fsSL https://monkeyscode.com/install.sh | sh

# Windows (PowerShell)
irm https://monkeyscode.com/install.ps1 | iex

# npm
npm install -g @monkeyscode/cli

# Homebrew
brew install monkeyscode

Usage

# Interactive REPL
mc "refactor the auth module"

# Headless (CI/CD)
mc -p "fix all lint errors" --headless --auto-approve

# Background job with auto-PR
mc -p "write tests" --background --auto-branch --auto-pr

# Pipe mode
echo "explain this error" | mc

# Model selection
mc --model claude-opus "deep architecture review"

Features

🤖 Multi-Model Support

Switch between Claude, GPT-4o, Gemini, and MonkeysCode's own Capuchin model.

mc --model auto "fix the bug"       # Smart model selection
mc --model claude-opus "review PR"  # Specific model

📁 Full Tool Suite

The agent can edit files, run terminal commands, search code, and manage git — all locally.

🔒 Sandboxed Execution

Run agent commands in isolated sandboxes (bubblewrap, sandbox-exec, Docker).

mc --sandbox "run the migration script"
mc --sandbox-network=none "process sensitive data"

🌐 Background Jobs

Submit long-running tasks to the cloud and get notified when done.

mc -p "write comprehensive tests" --background --auto-pr
mc jobs list
mc jobs logs abc123 --follow

🧠 Memory & Conventions

The agent learns your project's conventions and remembers them.

mc memory add "Always use camelCase for variables"
mc memory show
mc dream           # Consolidate session history into memory

⚡ CI/CD Integration

Run headlessly in GitHub Actions, GitLab CI, or any CI system.

# .github/workflows/review.yml
- uses: MonkeysCloud/monkeyscode@main
  with:
    prompt: 'Review this PR'
    mode: plan
    output: github
    api-key: ${{ secrets.MONKEYSCODE_API_KEY }}

🔌 MCP Servers

Extend the agent with custom tools via the Model Context Protocol.

mc mcp add jira npx @monkeyscode/mcp-jira
mc mcp add slack npx @monkeyscode/mcp-slack
mc mcp list

👥 Multi-Agent Teams

Spawn parallel agents to divide and conquer large tasks.

mc team spawn --task "Implement auth, payments, and email modules"
mc team status
mc team merge team-abc123

Output Formats

| Format | Use Case | |--------|----------| | text | Interactive terminal (default) | | json | Structured result for scripts | | jsonl | Streaming events for real-time parsing | | diff | Unified diff (git apply compatible) | | markdown | Clean markdown (for PR descriptions) | | github | GitHub Actions output format | | azure | Azure DevOps format | | sarif | SARIF 2.1.0 for code scanning |

Configuration

mc config set defaultModel claude-sonnet    # Set default model
mc config set theme dark                     # Set theme
mc config list                               # Show all settings
mc config path                               # Show config file locations

Project-level config: .monkeyscode/config.json

Shell Completions

mc completions bash >> ~/.bashrc
mc completions zsh >> ~/.zshrc
mc completions fish > ~/.config/fish/completions/mc.fish
mc completions powershell >> $PROFILE

Slash Commands (REPL)

| Command | Description | |---------|-------------| | /help | Show all commands | | /model <name> | Switch model | | /mode <mode> | Switch mode (agent/plan/ask) | | /compact | Toggle compact output | | /diff | Show session changes | | /undo | Revert last edit | | /commit [msg] | Commit changes | | /files | List touched files | | /cost | Show token usage | | /vim | Toggle Vim keybindings | | /cloud | Hand off to cloud | | /context <file> | Add file to context |

SDK

Build custom integrations with the TypeScript SDK:

npm install @monkeyscode/sdk
import { MonkeysCode } from '@monkeyscode/sdk';

const agent = new MonkeysCode({ apiKey: process.env.MONKEYSCODE_API_KEY });
const result = await agent.run('Fix all TypeScript errors');
console.log(result.summary);

See @monkeyscode/sdk for full documentation.

Accessibility

Screen reader-friendly mode (no ANSI codes, no animations):

mc --accessible "fix the bug"
# or
export MONKEYSCODE_ACCESSIBLE=1

Telemetry

Telemetry is enabled by default and collects anonymous usage data to improve the product.

mc telemetry status    # Check status
mc telemetry disable   # Opt out
mc telemetry show      # See what's collected

Respects the DO_NOT_TRACK=1 environment variable.

Documentation

License

MIT © MonkeysCloud Corp