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

@sdk451/vibeforge

v0.1.0

Published

BMAD-style agent context installer: npx @sdk451/vibeforge install (AGENTS.md + Claude, Cursor, Gemini, …)

Readme

Vibeforge

Vibeforge is BMAD-style interactive installer for versioned agent context: AGENTS.md, Claude / Cursor / Cline / Gemini / Codex / Copilot / Kimi layouts, optional skills, and docs — all with paths relative to your project root.

Quick start

From your repository root (terminal with TTY):

npx @sdk451/vibeforge install

You’ll get checkbox prompts for target agents (Step 1), stack, eight instruction domains (Foundation → Orchestration, aligned with CODING_AGENT_INSTRUCTION_ELEMENTS.md), optional skills, and packs; then files are written under the current directory (or --project-root). Emitted docs/FORGE-INSTALL-PROFILE.json and docs/FORGE-AGENTIC-ASSEMBLY.md support a follow-up agent pass to fill in project-specific detail. If something like AGENTS.md already exists and does not match the new output, you are asked before overwriting (use **--force** to skip that prompt).

Global CLI

npm install -g @sdk451/vibeforge
vibeforge install

Automation (no TUI)

vibeforge write --yes --project-root .
vibeforge write --answers answers.json --project-root .

Commands

  • **install** — Interactive only; same output as write after prompts. Optional: --project-root, --dry-run, --force (overwrites differing files without confirmation).
  • **write** — Scripting / CI: --answers, --yes, --dry-run, --force. Interactive write (no --answers / --yes) also prompts before overwriting files that differ.
  • **blueprint** — No file writes: prints one JSON object ($schema: forge-blueprint/1) with profile (same shape as docs/FORGE-INSTALL-PROFILE.json), agentic_prompt, and path references. Use --answers / --yes, or run interactively (TTY) for the full prompt flow including optional domain_requirements notes. --json emits a single line.
  • **assemble** — After a write/install: reads the install profile, creates a temp assembly workspace (prompt + doc copies under OS temp), then tries Claude, Cursor (cursor agent), GitHub Copilot CLI (copilot), Gemini, or Codex when on PATH and enabled in the profile (--agent auto). On CLI exit 0, that folder is removed. **--no-invoke**, missing CLIs, or failed spawn prints a copy-paste IDE chat (temp path + delete after success) for Cline, Kimi, IDE Copilot chat, etc. Requires vendor CLI auth/network when spawning.
  • **load**, **check**, **resolve-defaults** — Inspect or verify planned files.

Run **vibeforge --help** for the full list.

Package layout

This npm package ships **dist/** (CLI), **packs/** (templates), and **schemas/** (JSON Schema for --answers).

Source monorepo: vibeforge (development and full documentation live there).