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

@theforge-ai/forge

v0.2.2

Published

Forge.ai — local coding agent. `npx @theforge-ai/forge` to run.

Readme

Forge.ai

Local coding agent. Reads your files, runs shell commands, edits code, talks to your chosen LLM. Runs entirely on your machine — your code never leaves it.

Install & run

npx @theforge-ai/forge --open

That's it. First run downloads the matching binary (~20 MB) into ~/.forgeai/binaries/, then launches the server and opens http://localhost:8787 in your browser.

Subsequent runs skip the download.

Or install globally so you can just type forge-ai:

npm i -g @theforge-ai/forge
forge-ai --open

(The CLI command is forge-ai — not plain forge — to avoid the common collision with Foundry's forge Ethereum dev tool.)

What you'll see

Forge.ai is ready → http://localhost:8787
Open this URL in your browser. Press Ctrl-C to stop.

In the browser:

  1. Click the gear icon (bottom-left) → Settings
  2. Under Models, paste an API key for any provider (Anthropic / OpenAI / DeepSeek / xAI / etc.)
  3. Top-left folder button → point at the project you want the agent to work on
  4. Type a prompt, hit Enter

Default permission mode is prompt — every tool call surfaces a confirmation. Change it from the MODE badge in the input area once you trust the setup.

Flags

forge-ai --help              # show all flags
forge-ai --open              # auto-open browser
forge-ai --port 0            # auto-pick a free port
forge-ai --port 4000         # bind to a specific port
forge-ai --host 0.0.0.0      # expose on LAN (NOT recommended)

State

  • ~/.claw/state.json — config, providers, MCPs (persists across runs)
  • ~/.claw/libraries/ — RAG library sqlite stores
  • ~/.claw/skills/ — user-level skills
  • ~/.forgeai/binaries/v<version>/ — downloaded binary cache

Updating

npx @theforge-ai/forge@latest --open

To clear the cached binary for a version:

rm -rf ~/.forgeai/binaries/v0.1.0

Supported platforms

  • macOS arm64 (Apple silicon)
  • macOS x86_64 (Intel)
  • Linux x86_64

Other targets: open an issue.

License

Apache-2.0