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

business-os

v0.3.1

Published

Business OS installer, docs, and workflow package

Readme

Business OS

Business OS is a BMAD-style business workflow system for AI agents.

It packages:

  • a modular business framework
  • installable Codex skills
  • matching Claude Code commands
  • project-local docs and configuration
  • a CLI installer with profile and component selection

Published package:

npx business-os install

What It Does

Business OS helps a user move from vague business intent to structured business artifacts through reusable workflows such as:

  • start a new business
  • pivot an existing business
  • launch a product or service
  • improve sales or marketing
  • evaluate expansion
  • run SaaS, local-service, premium D2C, and partner-channel specialist paths

The system is designed to work with:

  • Codex via .agents/skills
  • Claude Code via .claude/commands

Quick Start

Install the full published package into the current project:

npx business-os install --yes --project .

Preview before writing files:

npx business-os install --plan --project .

Check an installed project:

npx business-os doctor --project .

Update an installed project using its saved manifest:

npx business-os update --project .

Install Modes

Full

Installs the whole workflow set.

npx business-os install --yes --project . --profile full

Core

Installs the main start, pivot, launch, growth, and expansion paths.

npx business-os install --yes --project . --profile core

Custom

Installs only the components you choose.

npx business-os install --yes --project . --profile custom --components saas,premium-d2c-launch

Installed Structure

Business OS installs into a project like this:

project/
  .business-os/
    docs/
    _cfg/
    install-manifest.json
  .agents/
    skills/
  .claude/
    commands/

Meaning:

  • .business-os/docs is the locked baseline document layer
  • .business-os/_cfg is the local override and notes layer
  • .agents/skills is the Codex execution layer
  • .claude/commands is the Claude execution layer

Components

Available component ids for --profile custom:

  • start-core
  • pivot
  • launch
  • growth
  • expansion
  • saas
  • local-service
  • wholesale-readiness
  • partner-rollout
  • premium-d2c-launch
  • premium-d2c-audit

The installer always includes:

  • business-os-router

so routing remains available even in custom installs.


CLI

business-os install [--target codex|claude|both] [--profile core|full|custom] [--components LIST] [--project PATH] [--no-docs] [--force] [--yes] [--plan] [--dry-run]
business-os doctor [--project PATH]
business-os update [--project PATH] [--plan] [--dry-run]

Key options:

  • --target: install for Codex, Claude, or both
  • --profile: choose core, full, or custom
  • --components: comma-separated component ids for custom installs
  • --plan: show file actions without writing files
  • --no-docs: skip .business-os/docs
  • --yes: noninteractive install

Interactive Installer

If you run install in a TTY without --yes, Business OS opens a guided menu flow for:

  • project path
  • install target
  • install mode
  • component selection for custom installs
  • docs on/off
  • confirmation

This is the current BMAD-like installer layer. It is not a full TUI, but it is now a real guided CLI rather than a flat flag-only installer.


Local Overrides

Project-local overrides live in:

  • .business-os/_cfg/README.md
  • .business-os/_cfg/local-notes.md

These are scaffolded automatically and are intended to survive updates.

Use them for:

  • project-specific routing notes
  • local workflow adjustments
  • experimental extensions before promoting them into the package

Current Status

Current package version in this repo:

  • 0.3.1

Verified:

  • interactive install
  • noninteractive install
  • core/full/custom profiles
  • tarball packaging
  • real post-publish npx [email protected] install
  • real post-publish doctor

Release references:


Repo Map

Primary docs:

Doc index:


Development

Run locally from the repo:

node ./bin/business-os.js install --yes --project /tmp/business-os-dev-smoke
node ./bin/business-os.js doctor --project /tmp/business-os-dev-smoke
node ./bin/business-os.js update --project /tmp/business-os-dev-smoke --plan

Package checks:

npm run pack:check
npm run publish:check