@stilero/bankan 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -11
- package/bin/bankan.js +1 -1
- package/client/dist/assets/{index-CYt4B_1K.js → index-CHxyLFN_.js} +17 -15
- package/client/dist/index.html +1 -1
- package/docs/images/workflow/taskflow_animated.gif +0 -0
- package/package.json +14 -2
- package/scripts/setup.js +1 -5
- package/server/src/agents.js +129 -8
- package/server/src/agents.test.js +462 -76
- package/server/src/config.js +11 -4
- package/server/src/config.test.js +170 -0
- package/server/src/index.js +11 -2
- package/server/src/linting.test.js +37 -0
- package/server/src/orchestrator.js +331 -114
- package/server/src/orchestrator.test.js +486 -0
- package/server/src/paths.test.js +49 -0
- package/server/src/sessionHistory.test.js +39 -0
- package/server/src/store.js +2 -3
- package/server/src/store.test.js +186 -0
- package/server/src/workflow.js +39 -7
- package/server/src/workflow.test.js +260 -71
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Ban Kan
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>
|
|
8
|
+
<strong>Handle 10+ AI coding agents without losing control.</strong>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -20,6 +20,10 @@ Plan → Implement → Review → Pull Request
|
|
|
20
20
|
Bring order to parallel AI development without leaving your local workflow.
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
|
+
<p align="center">
|
|
24
|
+
<img src="https://raw.githubusercontent.com/stilero/bankan/HEAD/docs/images/workflow/taskflow_animated.gif" alt="Ban Kan workflow showing planning, implementation, and review progressing across the board" width="1200" />
|
|
25
|
+
</p>
|
|
26
|
+
|
|
23
27
|
<p align="center">
|
|
24
28
|
<img src="https://raw.githubusercontent.com/stilero/bankan/HEAD/docs/images/bankan_screenshot.png" alt="Ban Kan dashboard showing backlog, planning, implementation, review, and done columns" width="1200" />
|
|
25
29
|
</p>
|
|
@@ -66,6 +70,8 @@ npm run dev
|
|
|
66
70
|
|
|
67
71
|
Ban Kan starts a local server, opens your browser automatically, and serves the dashboard from the same process.
|
|
68
72
|
|
|
73
|
+
Contributor workflow, TDD expectations, pull request testing guidance, and verification commands live in [CONTRIBUTING.md](./CONTRIBUTING.md).
|
|
74
|
+
|
|
69
75
|
---
|
|
70
76
|
|
|
71
77
|
## Requirements
|
|
@@ -83,6 +89,14 @@ Linux: build-essential
|
|
|
83
89
|
|
|
84
90
|
---
|
|
85
91
|
|
|
92
|
+
### Big heads up
|
|
93
|
+
Ban Kan is in early development.
|
|
94
|
+
|
|
95
|
+
The core workflow works, but bugs and rough edges are expected.
|
|
96
|
+
Feedback is extremely valuable at this stage.
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
86
100
|
## Quick Start
|
|
87
101
|
|
|
88
102
|
1. Launch Ban Kan
|
|
@@ -131,19 +145,16 @@ All in one dashboard.
|
|
|
131
145
|
|
|
132
146
|
## Why Ban Kan Exists
|
|
133
147
|
|
|
134
|
-
|
|
148
|
+
When developers levels up running multiple AI coding agents they often end up juggling multiple terminals:
|
|
135
149
|
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
-
|
|
140
|
-
- parallel development becomes chaos
|
|
150
|
+
- Agent 1 planning a feature
|
|
151
|
+
- Agent 2 implementing code
|
|
152
|
+
- Agent 3 reviewing changes
|
|
153
|
+
- Agent 4 generating tests
|
|
141
154
|
|
|
142
|
-
|
|
155
|
+
Keeping track of everything quickly becomes overwhelming.
|
|
143
156
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
Each stage has a clear responsibility, and tasks move forward only when the previous step succeeds.
|
|
157
|
+
In practice most developers struggle to manage more than 3–4 agents at once.
|
|
147
158
|
|
|
148
159
|
<table>
|
|
149
160
|
<tr>
|
|
@@ -164,6 +175,12 @@ Each stage has a clear responsibility, and tasks move forward only when the prev
|
|
|
164
175
|
</tr>
|
|
165
176
|
</table>
|
|
166
177
|
|
|
178
|
+
Ban Kan provides a control center that lets you coordinate 10+ agents simultaneously with full visibility of tasks, stages and activity.
|
|
179
|
+
|
|
180
|
+
**a Kanban board with specialized AI agents.**
|
|
181
|
+
|
|
182
|
+
Each stage has a clear responsibility, and tasks move forward only when the previous step succeeds.
|
|
183
|
+
|
|
167
184
|
---
|
|
168
185
|
|
|
169
186
|
## Built for Agile Development
|
|
@@ -342,6 +359,8 @@ Useful scripts:
|
|
|
342
359
|
|
|
343
360
|
- `npm run build` – build client bundle
|
|
344
361
|
- `npm run dev` – run server + Vite client
|
|
362
|
+
- `npm run lint` – run ESLint across the repo
|
|
363
|
+
- `npm run lint:fix` – apply safe ESLint autofixes
|
|
345
364
|
- `npm run setup` – interactive setup wizard for local runtime config
|
|
346
365
|
- `npm run install:all` – install all dependencies
|
|
347
366
|
|
package/bin/bankan.js
CHANGED
|
@@ -42,7 +42,7 @@ function parseArgs(argv) {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
function printHelp() {
|
|
45
|
-
process.stdout.write(
|
|
45
|
+
process.stdout.write('Ban Kan\n\nUsage:\n bankan [--port <number>] [--no-open]\n');
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
function isPortAvailable(port, host) {
|