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

@proxysoul/soulforge

v2.4.0

Published

Graph-powered code intelligence — multi-agent coding with codebase-aware AI

Readme

         

Why SoulForge?

Every AI coding tool starts blind. It reads files, greps around, slowly builds a mental model of your codebase. You wait. You pay. The agent is doing orientation work, not real work.

SoulForge already knows. On startup it builds a live dependency graph of your entire codebase: every file, symbol, import, and export, ranked by PageRank importance, enriched with git co-change history, updated in real-time as files change. The agent knows which files matter, what depends on what, and how far an edit will ripple before it writes a single line. It's faster. It's more accurate. And it costs less.

Faster, smarter, cheaper

How it compares

Verified March 29, 2026. Report inaccuracies.

Installation

macOS and Linux. First launch checks for prerequisites and offers to install Neovim and Nerd Fonts.

Homebrew (recommended)

brew tap proxysoul/tap
brew install soulforge
curl -fsSL https://bun.sh/install | bash
bun install -g @proxysoul/soulforge
soulforge

Download from Releases:

tar xzf soulforge-*.tar.gz && cd soulforge-*/ && ./install.sh

Installs to ~/.soulforge/, adds to PATH.

Ships Neovim 0.11, ripgrep, fd, lazygit, tree-sitter grammars, Nerd Font symbols. Zero system deps.

git clone https://github.com/ProxySoul/soulforge.git && cd soulforge && bun install
./scripts/bundle.sh              # macOS ARM64
./scripts/bundle.sh x64          # Intel Mac
./scripts/bundle.sh x64 linux    # Linux x64
./scripts/bundle.sh x64-baseline linux  # Linux x64 (older CPUs)
./scripts/bundle.sh arm64 linux  # Linux ARM64
cd dist/bundle/soulforge-*/ && ./install.sh

Requires Bun >= 1.0 and Neovim >= 0.11.

git clone https://github.com/ProxySoul/soulforge.git && cd soulforge && bun install
bun run dev          # development mode
# or
bun run build && bun link && soulforge

Quick start

soulforge                                  # launch, pick a model with Ctrl+L
soulforge --set-key anthropic sk-ant-...   # save a key
soulforge --headless "your prompt here"    # non-interactive

See GETTING_STARTED.md for a full walkthrough.

Usage

soulforge                                    # TUI
soulforge --headless "prompt"               # stream to stdout
soulforge --headless --json "prompt"        # structured JSON
soulforge --headless --chat                 # multi-turn
soulforge --headless --model provider/model # override model
soulforge --headless --mode architect       # read-only
soulforge --headless --diff "fix the bug"   # show changed files

Full CLI reference

Providers

Amazon Bedrock uses AWS IAM credentials. Set AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION (defaults us-east-1). Supports AWS_SESSION_TOKEN for temporary creds.

GitHub Copilot: sign in via IDE, copy oauth_token from ~/.config/github-copilot/apps.json, save with /keys or --set-key copilot. Full guide.

GitHub Models: free playground API, per-token billing. Fine-grained PAT with models:read. Lower rate limits than Copilot.

Ollama: auto-detected at localhost:11434. Override with OLLAMA_HOST.

LM Studio: auto-detected at localhost:1234. Override with LM_STUDIO_URL. Optional auth via LM_API_TOKEN.

Custom providers via config:

{
  "providers": [{
    "id": "my-provider",
    "name": "My Provider",
    "baseURL": "https://api.example.com/v1",
    "envVar": "MY_PROVIDER_API_KEY",
    "models": ["model-a", "model-b"]
  }]
}

Custom providers / Provider options

Configuration

Layered: global (~/.soulforge/config.json) + project (.soulforge/config.json).

{
  "defaultModel": "anthropic/claude-sonnet-4-6",
  "thinking": { "mode": "adaptive" },
  "repoMap": true,
  "taskRouter": {
    "spark": "anthropic/claude-sonnet-4-6",
    "ember": "anthropic/claude-opus-4-6",
    "webSearch": "anthropic/claude-haiku-4-5",
    "desloppify": "anthropic/claude-haiku-4-5",
    "compact": "google/gemini-2.0-flash"
  },
  "instructionFiles": ["soulforge", "claude", "cursorrules"]
}

Drop a SOULFORGE.md in your project root for conventions, architecture notes, preferences. Also reads CLAUDE.md, .cursorrules, AGENTS.md. Toggle via /instructions.

See GETTING_STARTED.md for the full config reference.

Documentation

Roadmap

Extracting the intelligence layer into reusable packages:

  • @soulforge/intelligence : graph intelligence, tools, agent orchestration as a library
  • @soulforge/mcp : Soul Map tools as MCP servers for Claude Code, Cursor, Copilot, any MCP client
  • sf --headless : shipped. Docs

Inspirations

  • Aider : tree-sitter repo maps with PageRank. SoulForge adds cochange, blast radius, clone detection, live updates.
  • Everything Claude Code : enforce behavior with code, not prompts.
  • Vercel AI SDK : multi-provider abstraction.
  • Neovim : embedded via msgpack-RPC. Your config and muscle memory intact.

License

Business Source License 1.1. Free for personal and internal use. Commercial use requires a commercial license. Converts to Apache 2.0 on March 15, 2030.