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

@garygentry/feature-forge

v0.3.6

Published

Cross-agent installer for the feature-forge skill suite — installs the canonical forge pipeline into Claude, Codex, Copilot, Cursor, Gemini, or Pi.

Readme

@garygentry/feature-forge

Cross-agent installer for the feature-forge skill suite — an end-to-end feature-development pipeline that runs on any coding agent (Claude, Codex, Copilot, Cursor, Gemini, or Pi).

This package installs the canonical forge skills into the agents detected on your machine. It is dependency-free and performs sandboxed, manifest-tracked writes.

Usage

# Install into every detected agent:
npx @garygentry/feature-forge install

# Scope to one agent:
npx @garygentry/feature-forge install -a codex

# Preview the plan without writing anything:
npx @garygentry/feature-forge install --dry-run --json

Commands

| Command | Description | | ------------------ | ----------------------------------------------------------------- | | install (add) | Install feature-forge into the target agent(s). | | update | Reconcile an existing install to the current adapters. | | uninstall (remove) | Remove a prior install (manifest-tracked files only). | | list (ls) | Report per-agent detected / installed / up-to-date status. |

Common flags

| Flag | Description | | ------------------- | --------------------------------------------------------------------- | | -a, --agent <id> | Scope to one agent (claude/codex/copilot/cursor/gemini/pi). | | -g, --global | Install into the user-level config dir (default: project-local). | | --symlink | Symlink the bundle instead of copying (Windows always copies). | | --dry-run | Print the planned actions without changing anything. | | --json | Emit the run report as JSON. | | --skip-rauf | Skip the rauf resolvability preflight (records raufPin: null). |

Per-agent install layout

Each agent's bundle is installed where that agent actually loads it (project scope shown; --global resolves the same paths under ~):

| Agent | Primary bundle | Second-root placement | | ------- | ------------------------------------ | ------------------------------------------------------- | | claude | .claude/skills/feature-forge/ | — | | codex | .agents/skills/feature-forge/ | .codex/agents/*.toml (custom agents, mirrored flat) | | copilot | .github/feature-forge/ | managed block in .github/copilot-instructions.md | | cursor | .cursor/rules/feature-forge/ | — | | gemini | .gemini/extensions/feature-forge/ | — | | pi | .pi/skills/feature-forge/ | — |

For Pi, --global installs to ~/.pi/agent/skills/feature-forge/ and project scope installs to ./.pi/skills/feature-forge/. The Pi bundle includes real package.json metadata plus the AskUserQuestion compatibility extension; run /trust (or use --approve in non-interactive tests) before relying on project-local Pi resources.

The Copilot block is delimited by <!-- feature-forge:managed:start --> / <!-- feature-forge:managed:end --> sentinels and merged without disturbing the rest of the file. update refreshes it (a hand-edited block is left alone unless --force); uninstall strips only the block, deleting the file only if nothing else remains.

Claude

Claude Code users can alternatively install via the plugin marketplace:

/plugin marketplace add garygentry/feature-forge
/plugin install feature-forge@feature-forge

Notes

The default loop runner is rauf, published as @garygentry/rauf. The installer runs a read-only resolvability preflight on the pin (@garygentry/[email protected]) and records it; pass --skip-rauf to defer the check (e.g. offline installs). Install the rauf CLI itself with npx @garygentry/rauf or its binary script. See the feature-forge README for the full pipeline documentation and per-agent setup guides.

The installer never writes a forge.config.json — it deploys only the bundled skills and runtime helpers. Configuration authorship belongs to /feature-forge:forge-init, which creates the config and surfaces the auto-verify opt-in (whether to run forge-verify automatically after each stage) at setup time.

License

MIT