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

radical-code

v0.8.4

Published

radical-code — Rust AI development framework CLI: setup wizard (config.db + encrypted secrets vault), TUI, REPL, multi-agent dispatch, MCP brain.

Readme

radical-code

Install radical-code — a Rust-based multi-agent AI development framework — from npm.

npm install -g radical-code
radical-code init     # interactive setup wizard
radical-code          # start the TUI

What you get

  • radical-code binary (static musl build; runs on any linux-x64 distro, no OpenSSL/glibc version requirements).
  • Setup wizard (radical-code init): pick providers (Anthropic, OpenAI, Bedrock, Vertex, or custom LiteLLM-style endpoints), pick models, set a default, and bind agent roles — all persisted to an encrypted local store (~/.local/share/radical-code/config.db + secrets vault, keys encrypted at rest, files 0600).

How the wrapper works

The radical-code command is a thin Node shim that locates the bundled static binary and execs it. The shim resolves bin/radical-code-linux-x64 directly, so the package works even on npm installs where postinstall scripts are blocked (e.g. --ignore-scripts). Postinstall is only a convenience copy that duplicates the binary to bin/radical-code; it is not required for the package to function.

Commands

| Command | What it does | |---|---| | radical-code init | Interactive setup wizard (providers, models, defaults, agent bindings) | | radical-code | Terminal UI | | radical-code repl | Simple REPL | | radical-code "<prompt>" | One-shot prompt against the configured default provider | | radical-code dispatch <role> "task" | Dispatch to a specialist agent (planner, developer, reviewer, ...) | | radical-code workflow <name> -i '{}' | Run a workflow (code_development, bug_fix, code_review, refactoring) | | radical-code team <preset> "task" | Run a 2x/4x agent team | | radical-code mcp serve | Expose radical-code as an MCP brain server | | radical-code --version | Print the installed version |

API keys

Keys captured by the wizard are stored encrypted. Environment variables are also honored (env wins over the vault, and is never written to disk): ANTHROPIC_API_KEY, OPENAI_API_KEY, LITELLM_API_KEY.

Platforms

This package currently ships a prebuilt binary for linux-x64. Other platforms: build from source with cargo install --git https://github.com/TheArchitectit/RADICAL-CODE radical-code, or set RADICAL_CODE_BIN=/path/to/radical-code to point this wrapper at any local build.

Configuration locations

  • Config + secrets: ~/.local/share/radical-code/ (override with RADICAL_CODE_CONFIG_DB / RADICAL_CODE_SECRETS_DB)
  • Project agents scaffolded by the wizard: .radco/agents/