@stilero/bankan 1.0.16 → 1.0.17
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 +17 -1
- 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 +124 -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 +284 -102
- package/server/src/orchestrator.test.js +431 -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 +23 -7
- package/server/src/workflow.test.js +216 -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
|
|
@@ -342,6 +356,8 @@ Useful scripts:
|
|
|
342
356
|
|
|
343
357
|
- `npm run build` – build client bundle
|
|
344
358
|
- `npm run dev` – run server + Vite client
|
|
359
|
+
- `npm run lint` – run ESLint across the repo
|
|
360
|
+
- `npm run lint:fix` – apply safe ESLint autofixes
|
|
345
361
|
- `npm run setup` – interactive setup wizard for local runtime config
|
|
346
362
|
- `npm run install:all` – install all dependencies
|
|
347
363
|
|
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) {
|