Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bumblebee-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
bumblebee-cli
npm wrapper for the Bumblebee CLI — dev task management + Claude Code automation.
Install
npm install -g bumblebee-cliRequires Python 3.12+. The postinstall script will automatically set up a Python virtual environment if bb is not already installed.
Usage
bb --help
bb login
bb item list
bb agent suggest BB-42
bb agent run BB-42 # Full cycle: verify → execute → test → merge
bb agent daemon start # Long-running daemon for web-initiated sessionsHow it works
This is a thin Node.js wrapper around the Python CLI. It resolves bb in this order:
- System
bbon PATH (if you installed viapip install bumblebee-cli) - Local
.venvcreated by the npm postinstall script python -m bb_clias a fallback
Manual Python install
If the automatic setup doesn't work, install the Python CLI directly:
pip install bumblebee-cliProject-local config
Initialize a project-local config:
cd your-project
bb init --project my-appThis creates .bumblebee/config.toml which overrides ~/.bumblebee/config.toml settings (except credentials).