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

jailbreak-code

v2.0.9

Published

AI-powered development assistant for modern software engineering

Readme

Jailbreak Code

AI-powered development assistant for modern software engineering. Interactive CLI tool that helps with coding, debugging, refactoring, and project management.

Installation

npm install -g jailbreak-code

Quick Start

# Start interactive mode
jailbreakcode

# Run with a message
jailbreakcode run "explain this codebase"

# Show help
jailbreakcode --help

Features

AI Development Assistant

  • Interactive CLI with command completion
  • Multi-model support (OpenAI, Anthropic, Google, DeepSeek, Mistral, xAI, Groq, local)
  • Context-aware responses using project files
  • Session persistence and export/import

Built-in Tools

| Tool | Description | |------|-------------| | read | Read files from the filesystem | | write | Write content to files | | edit | Edit files with string replacement | | bash | Execute shell commands | | glob | Find files by glob pattern | | grep | Search file contents with regex | | webfetch | Fetch content from URLs | | task | Launch sub-agents for complex work | | skill | Load specialized skill modules | | todo | Manage task lists |

MCP Server Integration

  • Security scanner for dependency vulnerability detection
  • AI safety testing framework
  • Memory and knowledge persistence

Agent System

Define custom agents using markdown files with YAML front matter:

---
description: My custom coding assistant
mode: primary
---
[agent] You are a specialized coding assistant...

Plugin System

Extend functionality with JavaScript plugins via hooks:

export const MyPlugin = async (ctx) => ({
  event: async ({ event }) => {
    // Handle file events
  }
})

Commands

jailbreakcode [project]          Start interactive TUI
jailbreakcode run [message..]    Run with a message
jailbreakcode mcp                Manage MCP servers
jailbreakcode models [provider]  List available AI models
jailbreakcode providers          Manage AI provider credentials
jailbreakcode agent              Manage agents
jailbreakcode session            Manage sessions
jailbreakcode stats              Show token usage statistics
jailbreakcode export [session]   Export session as JSON
jailbreakcode import <file>      Import session from JSON
jailbreakcode upgrade [version]  Upgrade to latest version
jailbreakcode license            Manage license activation
jailbreakcode wallet             Configure wallets
jailbreakcode admin              Admin dashboard
jailbreakcode debug              Debugging tools
jailbreakcode plugin <module>    Install plugins
jailbreakcode completion         Generate shell completions

Configuration

Jailbreak Code stores configuration in ~/.jailbreakcode/:

~/.jailbreakcode/
├── .jailbreakcode/
│   ├── agents/          # Agent definitions (.md)
│   └── plugins/         # Plugin files (.js)
├── providers.json       # AI provider API keys (encrypted)
├── wallets.json         # Wallet addresses
└── sessions/            # Session data

AI Providers

Set up your AI provider credentials:

jailbreakcode providers set openai sk-your-key-here
jailbreakcode providers set anthropic sk-ant-your-key
jailbreakcode providers set google your-gemini-key

Keys are encrypted locally using AES-256 with machine-specific derivation.

License

Jailbreak Code requires a license key for activation:

  • Get a license from your admin/vendor.
  • Activate with: jailbreakcode license activate <your-key>

System Requirements

  • Node.js 18+
  • Platforms: Linux (x64, arm64), macOS (x64, arm64), Windows (x64, arm64)
  • Optional: Python 3.10+ for native addon compilation

Development

git clone https://github.com/jailbreakcode/jailbreak-code
cd jailbreak-code
npm install
npx tsx src/cli/main.ts

License

MIT License — See LICENSE for details.


Jailbreak Code v1.0.0 — Built for developers who demand more from their tools.