kanbaii 0.2.0 → 0.2.1
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 +45 -9
- package/dashboard/404.html +1 -1
- package/dashboard/_next/static/chunks/app/{page-0cbaeeff2545315a.js → page-55db523c1dae87dd.js} +1 -1
- package/dashboard/_next/static/css/b0704326f821d6ff.css +1 -0
- package/dashboard/index.html +1 -1
- package/dashboard/index.txt +2 -2
- package/package.json +1 -1
- package/dashboard/_next/static/css/7669ae094c660f9a.css +0 -1
- /package/dashboard/_next/static/{U_eLKLn69LJkGH6AtpAhH → kUCtsZqNlK2UlB5GAljVt}/_buildManifest.js +0 -0
- /package/dashboard/_next/static/{U_eLKLn69LJkGH6AtpAhH → kUCtsZqNlK2UlB5GAljVt}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://img.shields.io/badge/kanbaii-v0.
|
|
2
|
+
<img src="https://img.shields.io/badge/kanbaii-v0.2.0-6366f1?style=for-the-badge&labelColor=0a0a0b" alt="Version" />
|
|
3
3
|
<img src="https://img.shields.io/badge/node-%3E%3D18-22c55e?style=for-the-badge&labelColor=0a0a0b" alt="Node" />
|
|
4
4
|
<img src="https://img.shields.io/badge/license-MIT-71717a?style=for-the-badge&labelColor=0a0a0b" alt="License" />
|
|
5
5
|
<img src="https://img.shields.io/badge/AI-Claude-f59e0b?style=for-the-badge&labelColor=0a0a0b" alt="Claude AI" />
|
|
@@ -61,16 +61,49 @@ If you've ever felt overwhelmed by everything you need to do, KANBAII turns that
|
|
|
61
61
|
|
|
62
62
|
## Quick Start
|
|
63
63
|
|
|
64
|
+
### 1. Prerequisites
|
|
65
|
+
|
|
66
|
+
You need [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated:
|
|
67
|
+
|
|
64
68
|
```bash
|
|
65
|
-
|
|
66
|
-
|
|
69
|
+
npm install -g @anthropic-ai/claude-code
|
|
70
|
+
claude login
|
|
71
|
+
```
|
|
67
72
|
|
|
68
|
-
|
|
73
|
+
### 2. Install & Run
|
|
74
|
+
|
|
75
|
+
```bash
|
|
69
76
|
npm install -g kanbaii
|
|
70
|
-
kanbaii
|
|
77
|
+
kanbaii doctor # verify everything works
|
|
78
|
+
kanbaii start # opens browser at localhost:5555
|
|
71
79
|
```
|
|
72
80
|
|
|
73
|
-
|
|
81
|
+
Or without installing: `npx kanbaii start`
|
|
82
|
+
|
|
83
|
+
### 3. Create Your First Project
|
|
84
|
+
|
|
85
|
+
1. Click **+ New** in the sidebar
|
|
86
|
+
2. Name your project (e.g., "My App")
|
|
87
|
+
3. Set the **working directory** — the folder where your code lives
|
|
88
|
+
|
|
89
|
+
### 4. Plan with AI
|
|
90
|
+
|
|
91
|
+
1. Go to the **Planner** tab
|
|
92
|
+
2. Describe what you want to build in plain language
|
|
93
|
+
3. AI generates work items with plans and tasks
|
|
94
|
+
4. Review, edit, approve — your board is populated
|
|
95
|
+
|
|
96
|
+
### 5. Execute
|
|
97
|
+
|
|
98
|
+
**Manual**: Drag tasks across columns as you work.
|
|
99
|
+
|
|
100
|
+
**Ralph** (single work item): Click a work item → Ralph tab → Play. Claude executes tasks sequentially, asks you questions when blocked.
|
|
101
|
+
|
|
102
|
+
**Teams** (multiple work items): Go to Teams tab → select work items → Start. The AI coordinator assigns tasks to workers in parallel.
|
|
103
|
+
|
|
104
|
+
### 6. That's It
|
|
105
|
+
|
|
106
|
+
Your data lives in `./data/projects/` as clean JSON files. No cloud, no accounts. Stop the server with Ctrl+C.
|
|
74
107
|
|
|
75
108
|
---
|
|
76
109
|
|
|
@@ -145,10 +178,13 @@ Select multiple work items. A coordinator assigns each to a worker. Workers exec
|
|
|
145
178
|
## CLI
|
|
146
179
|
|
|
147
180
|
```bash
|
|
148
|
-
kanbaii start # Start the server
|
|
149
|
-
kanbaii
|
|
150
|
-
kanbaii
|
|
181
|
+
kanbaii start # Start the server (opens browser)
|
|
182
|
+
kanbaii start -p 8080 # Custom port
|
|
183
|
+
kanbaii start --no-open # Don't open browser
|
|
184
|
+
kanbaii doctor # Check Claude CLI, Node, auth, dependencies
|
|
185
|
+
kanbaii status # Health check (is server running?)
|
|
151
186
|
kanbaii init # Initialize data directory
|
|
187
|
+
kanbaii stop # Info for stopping the server
|
|
152
188
|
```
|
|
153
189
|
|
|
154
190
|
### Configuration
|
package/dashboard/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/b0704326f821d6ff.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-5c1d03322d6ecf76.js"/><script src="/_next/static/chunks/fd9d1056-1f1f859026f5f0fa.js" async=""></script><script src="/_next/static/chunks/117-93de0183f63af83e.js" async=""></script><script src="/_next/static/chunks/main-app-8162cbdbe21bd040.js" async=""></script><script src="/_next/static/chunks/947-6596e9d0905e814e.js" async=""></script><script src="/_next/static/chunks/23-74779bf2fc2560e3.js" async=""></script><script src="/_next/static/chunks/app/layout-c4919caf1b2a656c.js" async=""></script><meta name="robots" content="noindex"/><meta name="theme-color" content="#6366f1"/><title>KANBAII</title><meta name="description" content="Structure for your ideas. AI to move them forward."/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.svg" type="image/svg+xml"/><link rel="icon" href="/favicon-16x16.svg" sizes="16x16" type="image/svg+xml"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><script src="/_next/static/chunks/webpack-5c1d03322d6ecf76.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/b0704326f821d6ff.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[4707,[],\"\"]\n5:I[6423,[],\"\"]\n6:I[792,[\"947\",\"static/chunks/947-6596e9d0905e814e.js\",\"23\",\"static/chunks/23-74779bf2fc2560e3.js\",\"185\",\"static/chunks/app/layout-c4919caf1b2a656c.js\"],\"AppShell\"]\nc:I[1060,[],\"\"]\n7:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n8:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n9:{\"display\":\"inline-block\"}\na:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nd:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"kUCtsZqNlK2UlB5GAljVt\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"_not-found\"],\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/b0704326f821d6ff.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$7\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$8\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$9\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$a\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$Lb\"],\"globalErrorComponent\":\"$c\",\"missingSlots\":\"$Wd\"}]\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"name\":\"theme-color\",\"content\":\"#6366f1\"}],[\"$\",\"meta\",\"2\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"3\",{\"children\":\"KANBAII\"}],[\"$\",\"meta\",\"4\",{\"name\":\"description\",\"content\":\"Structure for your ideas. AI to move them forward.\"}],[\"$\",\"link\",\"5\",{\"rel\":\"manifest\",\"href\":\"/manifest.json\",\"crossOrigin\":\"use-credentials\"}],[\"$\",\"link\",\"6\",{\"rel\":\"icon\",\"href\":\"/favicon.svg\",\"type\":\"image/svg+xml\"}],[\"$\",\"link\",\"7\",{\"rel\":\"icon\",\"href\":\"/favicon-16x16.svg\",\"sizes\":\"16x16\",\"type\":\"image/svg+xml\"}]]\n3:null\n"])</script></body></html>
|