JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 28
  • Score
    100M100P100Q69117F
  • License MIT

Bumblebee CLI — Dev task management + Claude Code automation

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-cli

    Requires 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 sessions

    How it works

    This is a thin Node.js wrapper around the Python CLI. It resolves bb in this order:

    1. System bb on PATH (if you installed via pip install bumblebee-cli)
    2. Local .venv created by the npm postinstall script
    3. python -m bb_cli as a fallback

    Manual Python install

    If the automatic setup doesn't work, install the Python CLI directly:

    pip install bumblebee-cli

    Project-local config

    Initialize a project-local config:

    cd your-project
    bb init --project my-app

    This creates .bumblebee/config.toml which overrides ~/.bumblebee/config.toml settings (except credentials).