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

vibe-fabric

v0.4.2

Published

AI-Collaborative Development Coordination Framework

Readme

vibe-fabric

npm version npm downloads License: MIT Node.js GitHub stars

AI-Collaborative Development Coordination Framework

A CLI tool that helps you coordinate software development across multiple repositories using AI assistance. Create a planning hub where you manage requirements, create work scopes, and track implementation progress.

Features

  • Planning Hub - Central coordination point for multi-repo projects
  • AI-Powered PRD Management - Create and maintain living requirements documents
  • Scope Management - Break requirements into actionable work packages
  • Repository Sync - Track implementation progress across repositories
  • Gap Analysis - Identify what's implemented vs. what's planned
  • Claude Code Integration - Slash commands and multi-session AI runner

Quick Start

# Install globally
npm install -g vibe-fabric

# Create a planning hub
vibe init my-project
cd my-project

# Add a repository to coordinate
vibe repo add https://github.com/your-org/your-repo

# Create/manage PRD with AI assistance
vibe prd

# Create scopes from requirements
vibe scope

# Send scopes to dev repos
vibe send SCOPE-001

# Check project status
vibe status

Prerequisites

| Requirement | Purpose | |-------------|---------| | Node.js 18+ | Runtime for CLI | | Claude Code | AI-powered commands | | GitHub Token | Repository operations | | UV (optional) | Python runner for AI scripts |

Install UV (for AI commands)

curl -LsSf https://astral.sh/uv/install.sh | sh

Commands

Core Commands

| Command | Description | |---------|-------------| | vibe init [name] | Initialize a planning hub | | vibe repo add <url> | Add repository to hub | | vibe prd | AI-powered PRD management | | vibe scope | AI-powered scope management | | vibe send [scope-id] | Send scopes to repositories | | vibe sync | Sync progress from repositories | | vibe status | Show project status overview | | vibe coverage | PRD coverage analysis | | vibe gaps | Gap analysis (PRD vs implementation) | | vibe doctor | Health check and diagnostics | | vibe claude commands | Manage Claude Code slash commands |

Examples

# Initialize and set up
vibe init my-project
vibe repo add https://github.com/org/backend
vibe repo add https://github.com/org/frontend

# AI-assisted workflow
vibe prd                      # Create/update requirements
vibe scope                    # Generate work scopes
vibe send SCOPE-001           # Send to dev repo

# Monitor progress
vibe sync                     # Pull progress from repos
vibe status                   # Overview dashboard
vibe coverage                 # Detailed coverage report
vibe gaps                     # Find implementation gaps

Architecture

PLANNING HUB (your-project/)
├── docs/prd/           Product requirements
├── docs/scopes/        Work packages (drafts/completed)
├── docs/sync-cache/    Synced data from repositories
├── .claude/            AI commands and scripts
└── vibe-fabric.toml    Configuration
        │
        │  vibe send              vibe sync
        ▼                              ▲
┌─────────────────┐          ┌─────────────────┐
│   DEV REPO 1    │          │   DEV REPO 2    │
│   (backend)     │          │   (frontend)    │
├─────────────────┤          ├─────────────────┤
│ vibe/           │          │ vibe/           │
│ ├── incoming/   │          │ ├── incoming/   │
│ └── impl-plans/ │          │ └── impl-plans/ │
└─────────────────┘          └─────────────────┘

Documentation

Development

# Clone the repository
git clone https://github.com/jneaimi/vibe-fabric.git
cd vibe-fabric

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Run CLI locally
node dist/cli/index.js --help

Project Structure

vibe-fabric/
├── src/
│   ├── cli/           CLI commands (Clipanion)
│   ├── core/          Core business logic
│   └── types/         TypeScript types
├── tests/             Test suite (Vitest)
├── docs/
│   ├── prd/           Product requirements
│   ├── scopes/        Implementation scopes
│   └── wiki/          User documentation
└── .claude/           Claude Code integration

Contributing

See CONTRIBUTING.md for guidelines.

License

MIT

Support