@stilero/bankan 1.0.20 → 1.1.0
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 +10 -7
- package/client/dist/assets/index-DBbtVfOb.js +50 -0
- package/client/dist/index.html +1 -1
- package/package.json +1 -1
- package/scripts/setup.js +39 -6
- package/server/src/agents.js +4 -1
- package/server/src/agents.test.js +32 -0
- package/server/src/capabilities.js +42 -0
- package/server/src/capabilities.test.js +50 -0
- package/server/src/index.js +67 -1
- package/server/src/index.test.js +65 -0
- package/server/src/orchestrator.js +88 -5
- package/server/src/orchestrator.pr.test.js +177 -0
- package/server/src/store.js +10 -1
- package/server/src/store.test.js +5 -0
- package/server/src/workflow.js +35 -1
- package/server/src/workflow.test.js +51 -2
- package/client/dist/assets/index-loJ8KKB-.js +0 -50
package/README.md
CHANGED
|
@@ -76,20 +76,23 @@ Contributor workflow, TDD expectations, pull request testing guidance, and verif
|
|
|
76
76
|
|
|
77
77
|
## Requirements
|
|
78
78
|
|
|
79
|
-
- Node.js >= 18
|
|
80
|
-
- git
|
|
81
|
-
-
|
|
82
|
-
- claude
|
|
83
|
-
- codex
|
|
79
|
+
- [Node.js](https://nodejs.org/) >= 18
|
|
80
|
+
- [git](https://git-scm.com/)
|
|
81
|
+
- At least one AI CLI tool:
|
|
82
|
+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) (`npm install -g @anthropic-ai/claude-code`)
|
|
83
|
+
- [Codex CLI](https://github.com/openai/codex) (`npm install -g @openai/codex`)
|
|
84
|
+
- [GitHub CLI](https://cli.github.com/) (`gh`) — required only for automatic pull request creation
|
|
84
85
|
|
|
85
86
|
Native build tools may be needed only if `node-pty` has to compile during install.
|
|
86
87
|
|
|
87
|
-
macOS:
|
|
88
|
-
Linux: build-essential
|
|
88
|
+
macOS: `xcode-select --install`
|
|
89
|
+
Linux: `sudo apt-get install build-essential`
|
|
90
|
+
Windows: Install [Visual Studio Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) with the "Desktop development with C++" workload, or run `npm install -g windows-build-tools` from an elevated PowerShell
|
|
89
91
|
|
|
90
92
|
---
|
|
91
93
|
|
|
92
94
|
### Big heads up
|
|
95
|
+
|
|
93
96
|
Ban Kan is in early development.
|
|
94
97
|
|
|
95
98
|
The core workflow works, but bugs and rough edges are expected.
|