KaibanJS is a free, open source project & work management project written in TypeScript and released under MIT. It has 1,478 GitHub stars, 158 forks and 78 open issues, and was last pushed 4 months ago. On this registry it ranks #44 of 62 tracked projects in Project & Work Management, with 5 head-to-head comparisons available. It gained 1 stars over the last 3 tracked days.

What is KaibanJS?

What it is

KaibanJS is an MIT-licensed, TypeScript-written JavaScript-native framework for building and managing multi-agent systems with a Kanban-inspired approach. It lives in the JavaScript ecosystem and provides a way to create, visualize, and coordinate AI agents, tasks, tools, and teams.

The concrete problem it addresses is the difficulty of organizing and tracking work performed by multiple AI agents. Tasks can depend on one another, move through stages, and require visible progress. KaibanJS adapts Kanban concepts from tools such as Trello, Jira, and ClickUp to AI agent management, so users can see tasks move through workflow stages and review results as agents complete them.

Key capabilities

  • Lets developers create and configure agents with a name, role, and goal using the Agent class.
  • Lets developers define tasks with descriptions, assigned agents, expected outputs, and deliverables using the Task class.
  • Lets developers group agents and tasks into a Team object that starts with an initial input and manages information flow between tasks.
  • Supports orchestration of AI workflows by starting a team and returning the workflow result through a Promise-based API.
  • Provides a Kaiban Board that visualizes agent workflows in real time and shows progress as tasks move through stages.
  • Can be integrated directly into JavaScript projects, used with custom user interfaces, or run without a user interface.

Who uses it and how

  • Developers building AI agent prototypes can run the default example on the Kaiban Board, click Start Workflow, and watch agents complete tasks.
  • Teams managing agent-based projects can use the board to track task progress and view the final output in a Results Overview.
  • JavaScript developers can import Agent, Task, and Team in ES6 or CommonJS files and embed the framework into existing applications.
  • React and Node.js developers can follow the documented integration tutorials to connect agents to custom interfaces or Node.js projects.

Getting started

Typical setup uses npx kaibanjs@latest init, adding an OpenAI API key to .env, and restarting the board with npm run kaiban. Manual installation uses npm install kaibanjs and imports Agent, Task, and Team.

When to use it — and when not to

KaibanJS fits JavaScript projects that need visible multi-agent orchestration and task tracking, especially when a Kanban-style board helps users understand agent progress. It requires an AI service API key, shown as VITE_OPENAI_API_KEY, and self-hosters must manage the JavaScript application, environment variables, and any external AI service dependency. The facts do not indicate built-in database, storage, or SMTP requirements, and the excerpt does not describe production deployment, authentication, scaling, or comparison with paid products.

project readme (upstream, from github) — read inline

KaibanJS

The JavaScript Framework for Building Multi-agent Systems.

Star on GitHub GitHub license npm version stability-beta Tests PRs Welcome


Kanban for AI Agents? 🤖📋

KaibanJS is inspired by the tried-and-true Kanban methodology, which is well-known for helping teams organize and manage their work. We've adapted these concepts to meet the unique challenges of AI agent management.

If you've used tools like Trello, Jira, or ClickUp, you'll be familiar with how Kanban helps manage tasks. Now, KaibanJS uses that same system to help you manage AI agents and their tasks in real time.

With KaibanJS, you can:

  • 🔨 Create, visualize, and manage AI agents, tasks, tools, and teams
  • 🎯 Orchestrate AI workflows seamlessly
  • 📊 Visualize workflows in real-time
  • 🔍 Track progress as tasks move through different stages
  • 🤝 Collaborate more effectively on AI projects

Try It Out

Explore the Kaiban Boardit's like Trello or Asana, but for AI Agents and humans.

Quick Start

Get started with KaibanJS in under a minute:

Quick Start Video

Setup

1. Run the KaibanJS initializer in your project directory:

npx kaibanjs@latest init

2. Add your AI service API key to the .env file:

VITE_OPENAI_API_KEY=your-api-key-here

3. Restart your Kaiban Board:

npm run kaiban

Using Your Kaiban Board

  1. Click "Start Workflow" to run the default example.
  2. Watch agents complete tasks in real-time on the Task Board.
  3. View the final output in the Results Overview.

Flexible Integration

KaibanJS isn't limited to the Kaiban Board. You can integrate it directly into your projects, create custom UIs, or run agents without a UI. Explore our tutorials for React and Node.js integration to unleash the full potential of KaibanJS in various development contexts.

Manual Installation and Usage

If you prefer to set up KaibanJS manually follow these steps:

1. Install KaibanJS via npm:
npm install kaibanjs
2. Import KaibanJS in your JavaScript file:
// Using ES6 import syntax for NextJS, React, etc.
import { Agent, Task, Team } from 'kaibanjs';
// Using CommonJS syntax for NodeJS
const { Agent, Task, Team } = require('kaibanjs');
3. Basic Usage Example
// Define an agent
const researchAgent = new Agent({
  name: 'Researcher',
  role: 'Information Gatherer',
  goal: 'Find relevant information on a given topic',
});

// Create a task
const researchTask = new Task({
  description: 'Research recent AI developments',
  agent: researchAgent,
});

// Set up a team
const team = new Team({
  name: 'AI Research Team',
  agents: [researchAgent],
  tasks: [researchTask],
  env: { OPENAI_API_KEY: 'your-api-key-here' },
});

// Start the workflow
team
  .start()
  .then((output) => {
    console.log('Workflow completed:', output.result);
  })
  .catch((error) => {
    console.error('Workflow error:', error);
  });

Basic Concepts

Agents Agents are autonomous entities designed to perform specific roles and achieve goals based on the tasks assigned to them. They are like super-powered LLMs that can execute tasks in a loop until they arrive at the final answer.

Tasks Tasks define the specific actions each agent must take, their expected outputs, and mark critical outputs as deliverables if they are the final products.

Team The Team coordinates the agents and their tasks. It starts with an initial input and manages the flow of information between tasks.

Watch this video to learn more about the concepts: KaibanJS Concepts

Key Features

The Kaiban Board

Kanban boards are excellent tools for showcasing team workflows in real time, providing a clear and interactive snapshot of each member's progress.

We've adapted this concept for AI agents.

Now, you can visualize the workflow of your AI agents as team members, with tasks moving from "To Do" to "Done" right before your eyes. This visual representation simplifies understanding and managing complex AI operations, making it accessible to anyone, anywhere.

Role-Based Agent Design

Harness the power of specialization by configuring AI agents to excel in distinct, critical functions within your projects. This approach enhances the effectiveness and efficiency of each task, moving beyond the limitations of generic AI.

In this example, our software development team is powered by three specialized AI agents: Dave, Ella, and Quinn. Each agent is expertly tailored to its specific role, ensuring efficient task handling and synergy that accelerates the development cycle.

import { Agent } from 'kaibanjs';

const daveLoper = new Agent({
  name: 'Dave Loper',
  role: 'Developer',
  goal: 'Write and review code',
  background: 'Experienced in JavaScript, React, and Node.js',
});

const ella = new Agent({
  name: 'Ella',
  role: 'Product Manager',
  goal: 'Define product vision and manage roadmap',
  background: 'Skilled in market analysis and product strategy',
});

const quinn = new Agent({
  name: 'Quinn',
  role: 'QA Specialist',
  goal: 'Ensure quality and consistency',
  background: 'Expert in testing, automation, and bug tracking',
});
Tool Integration

Just as professionals use specific tools to excel in their tasks, enable your AI agents to utilize tools like search engines, calculators, and more to perform specialized tasks with greater precision and efficiency.

In this example, one of the AI agents, Peter Atlas, leverages the Tavily Search Results tool to enhance his ability to select the best cities for travel. This tool allows Peter to analyze travel data considering weather, prices, and seasonality, ensuring the most suitable recommendations.

import { Agent, Tool } from 'kaibanjs';

const tavilySearchResults = new Tool({
  name: 'Tavily Search Results',
  maxResults: 1,
  apiKey: 'ENV_TRAVILY_API_KEY',
});

const peterAtlas = new Agent({
  name: 'Peter Atlas',
  role: 'City Selector',
  goal: 'Choose the best city based on comprehensive travel data',
  background: 'Experienced in geographical data analysis and travel trends',
  tools: [tavilySearchResults],
});

KaibanJS supports all LangchainJS-compatible tools, offering a versatile approach to tool integration. For further details, visit the documentation.

Task Result Passin

readme truncated — read the full docs on github

Frequently asked questions

Is KaibanJS free to use?

KaibanJS is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does KaibanJS do?

KaibanJS is a JavaScript-native framework for building and managing multi-agent systems with a Kanban-inspired approach.

What is KaibanJS written in?

KaibanJS is primarily written in TypeScript. Its source is publicly available at https://github.com/kaiban-ai/KaibanJS, and it has 1,478 GitHub stars.