🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

bizi

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bizi

Terminal UI for bizi

latest
Source
npmnpm
Version
0.7.0
Version published
Maintainers
1
Created
Source

https://github.com/user-attachments/assets/5478763d-57c5-4201-8ee7-a4e6239a8bcf

bizi

bizi is a better way to manage dependent concurrent tasks.

[!WARNING] This is still in early development breaking changes are likely.

Why?

If you have ever worked in a monorepo with multiple different tasks that depend on each other (for instance running your API in dev and running your web app in dev). Initially you might reach for something like concurrently to run this tasks in parallel. This works great until the moment where you need to restart one of the tasks, at which point you have no choice but to restart both tasks.

This is where bizi comes in. bizi allows you to define concurrent dependent tasks so and run them separately so that you can cancel, and restart them without effecting the other tasks.

The benefits go beyond just that though... Have you ever had that problem working with llms where they want to run their own dev server? bizi solves this by allowing llms to hook into the logs of your existing dev server run instead of spinning up their own.

Getting Started

Install the server

This will install the server and start it as a background service.

curl -fsSL https://getbizi.dev/install | bash

Install a client

Currently the only client is the TUI.

pnpm install -g bizi

Setup your task.config.json

{
  "$schema": "https://getbizi.dev/schemas/task.config.json",
  "tasks": {
    "dev": {
      "tasks": {
        "api": {
          "cwd": "./apps/api",
          "command": "dotnet run"
        },
        "site": {
          "cwd": "./apps/site",
          "command": "pnpm dev"
        },
      }
    },
  }
}

Use the client

Start the TUI from your project directory (where your task.config.json is):

bizi

Or specify a working directory:

bizi -cwd /path/to/project

You can also use CLI commands instead of the TUI (Perfect for your agents):

bizi run <task>     # Run a task
bizi cancel <task> # Cancel a running task
bizi stat <task>   # Show task status

FAQs

Package last updated on 30 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts