kanbaii 0.2.1 → 0.2.3

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 CHANGED
@@ -1,284 +1,284 @@
1
- <p align="center">
2
- <img src="https://img.shields.io/badge/kanbaii-v0.2.0-6366f1?style=for-the-badge&labelColor=0a0a0b" alt="Version" />
3
- <img src="https://img.shields.io/badge/node-%3E%3D18-22c55e?style=for-the-badge&labelColor=0a0a0b" alt="Node" />
4
- <img src="https://img.shields.io/badge/license-MIT-71717a?style=for-the-badge&labelColor=0a0a0b" alt="License" />
5
- <img src="https://img.shields.io/badge/AI-Claude-f59e0b?style=for-the-badge&labelColor=0a0a0b" alt="Claude AI" />
6
- </p>
7
-
8
- <h1 align="center">
9
- <br />
10
- ◈ KANBAII
11
- <br />
12
- </h1>
13
-
14
- <p align="center">
15
- <strong>Your ideas deserve structure. AI gives them momentum.</strong>
16
- <br />
17
- <sub>For creators, founders, students, teams, and anyone with a plan to execute.</sub>
18
- </p>
19
-
20
- <p align="center">
21
- <a href="#quick-start">Quick Start</a> ·
22
- <a href="#who-is-it-for">Who Is It For</a> ·
23
- <a href="#concepts">Concepts</a> ·
24
- <a href="#wizard">Wizard</a> ·
25
- <a href="#ralph--teams">Ralph & Teams</a> ·
26
- <a href="#cli">CLI</a>
27
- </p>
28
-
29
- ---
30
-
31
- ## What Is KANBAII
32
-
33
- A local-first project board powered by AI. No accounts, no subscriptions, no cloud. Install it, open it, organize anything — from a product launch to a thesis, from a startup MVP to a home renovation plan.
34
-
35
- KANBAII gives you structure when you need it and an AI that can actually execute work for you.
36
-
37
- ```bash
38
- npx kanbaii
39
- ```
40
-
41
- That's it. Opens in your browser.
42
-
43
- ---
44
-
45
- ## Who Is It For
46
-
47
- **Everyone.** You don't need to be a programmer.
48
-
49
- | You are... | KANBAII helps you... |
50
- |---|---|
51
- | A **founder** with 10 ideas and no process | Break each idea into clear steps and prioritize |
52
- | A **student** planning a thesis or project | Turn a vague goal into a structured plan with tasks |
53
- | A **freelancer** juggling clients | Separate projects, track what's active, what's done |
54
- | A **developer** building software | Execute tasks with AI agents that write code for you |
55
- | A **team lead** coordinating work | Run multiple work streams in parallel with Teams |
56
- | A **creator** launching something | Plan, track, and ship — without spreadsheet chaos |
57
-
58
- If you've ever felt overwhelmed by everything you need to do, KANBAII turns that noise into a clear board.
59
-
60
- ---
61
-
62
- ## Quick Start
63
-
64
- ### 1. Prerequisites
65
-
66
- You need [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated:
67
-
68
- ```bash
69
- npm install -g @anthropic-ai/claude-code
70
- claude login
71
- ```
72
-
73
- ### 2. Install & Run
74
-
75
- ```bash
76
- npm install -g kanbaii
77
- kanbaii doctor # verify everything works
78
- kanbaii start # opens browser at localhost:5555
79
- ```
80
-
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.
107
-
108
- ---
109
-
110
- ## Concepts
111
-
112
- ### The Hierarchy
113
-
114
- KANBAII organizes work in two levels:
115
-
116
- ```
117
- Project (your big goal)
118
- └── Work Items (the pieces to build)
119
- ├── Plan (context, strategy, notes)
120
- └── Tasks (concrete steps on a kanban board)
121
- ```
122
-
123
- **Work Items** are the meaningful chunks: a feature to build, a bug to fix, a section to refactor. Each one gets its own 5-column kanban board.
124
-
125
- ### Work Item Types
126
-
127
- | Type | When to use | Color |
128
- |------|------------|-------|
129
- | **Feature** | Something new to create | Indigo |
130
- | **Bug** | Something broken to fix | Red |
131
- | **Refactor** | Something existing to improve | Amber |
132
-
133
- ### Two Levels of Kanban
134
-
135
- - **Level 1 — Work Items Board**: Drag work items across `Planning → Active → Review → Done`
136
- - **Level 2 — Task Board**: Each work item has its own `Backlog → Todo → In Progress → Review → Done`
137
-
138
- Click a work item to enter its board. Breadcrumb to navigate back. Simple.
139
-
140
- ---
141
-
142
- ## Wizard
143
-
144
- The AI wizard turns a sentence into a structured plan:
145
-
146
- 1. Pick a type (Feature / Bug / Refactor)
147
- 2. Describe what you need in plain language
148
- 3. AI generates a plan — you review and approve
149
- 4. AI generates tasks from the plan — you review and approve
150
- 5. Your board is populated and ready
151
-
152
- Skip any step. Edit anything. The wizard accelerates — it never locks you in.
153
-
154
- ---
155
-
156
- ## Ralph & Teams
157
-
158
- ### Ralph — Single Executor
159
-
160
- Select one work item. Ralph handles it end to end:
161
-
162
- - Reads the plan for context
163
- - Resolves task dependencies
164
- - Executes tasks in order (parallel where safe)
165
- - Moves completed work to Review
166
- - Reports back with summaries
167
-
168
- **Think of Ralph as a focused assistant** — one work item, full attention.
169
-
170
- ### Teams — Parallel Execution
171
-
172
- Select multiple work items. A coordinator assigns each to a worker. Workers execute simultaneously — one work item per worker.
173
-
174
- **Think of Teams as a squad** — multiple work items, all moving at once.
175
-
176
- ---
177
-
178
- ## CLI
179
-
180
- ```bash
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?)
186
- kanbaii init # Initialize data directory
187
- kanbaii stop # Info for stopping the server
188
- ```
189
-
190
- ### Configuration
191
-
192
- | Setting | Default | Description |
193
- |---------|---------|-------------|
194
- | `port` | `5555` | Server port |
195
- | `dataDir` | `~/.kanbaii/data` | Where project data lives |
196
- | `openBrowser` | `true` | Auto-open on start |
197
-
198
- ```bash
199
- kanbaii init --port 8080 --data ~/my-projects
200
- ```
201
-
202
- ---
203
-
204
- ## How Data Works
205
-
206
- No database. Clean JSON files on disk, fully git-friendly:
207
-
208
- ```
209
- data/projects/my-project/
210
- project.json
211
- work-items/
212
- feat-auth-system.json
213
- bug-login-crash.json
214
- ```
215
-
216
- Your data stays on your machine. Always.
217
-
218
- ---
219
-
220
- ## Architecture
221
-
222
- For contributors and the curious:
223
-
224
- ```
225
- Express + Socket.IO ──── Single port (default: 5555)
226
-
227
- ├── /api/* REST endpoints
228
- ├── /socket.io Real-time events
229
- └── /* Static frontend (Next.js export)
230
- ```
231
-
232
- | Component | Technology |
233
- |-----------|-----------|
234
- | Backend | Express 4 + Socket.IO 4 |
235
- | Frontend | Next.js 14 (static export) |
236
- | State | Zustand |
237
- | Drag & Drop | @atlaskit/pragmatic-drag-and-drop |
238
- | Animations | Framer Motion |
239
- | AI Engine | Claude CLI |
240
- | CLI | Commander.js |
241
- | Validation | Zod |
242
- | Testing | Vitest |
243
-
244
- ---
245
-
246
- ## Development
247
-
248
- ```bash
249
- git clone https://github.com/martinmsaavedra/kanbaii.git
250
- cd kanbaii
251
-
252
- npm install
253
- cd frontend && npm install && cd ..
254
-
255
- # Dev mode
256
- npm run dev:server # Express on :5555
257
- npm run dev:frontend # Next.js on :3000
258
-
259
- # Test
260
- npm test
261
-
262
- # Build
263
- npm run build
264
- ```
265
-
266
- ---
267
-
268
- ## Philosophy
269
-
270
- > Structure without ceremony. AI without lock-in. Your data, your machine.
271
-
272
- KANBAII is for anyone who wants to:
273
- - Turn ideas into action without overthinking the process
274
- - Stay organized without paying for another SaaS
275
- - Let AI do the heavy lifting while you stay in control
276
- - Work locally, own your data, move fast
277
-
278
- ---
279
-
280
- <p align="center">
281
- <sub>Built by <a href="https://github.com/martinmsaavedra">Martín Saavedra</a></sub>
282
- <br />
283
- <sub>Powered by <a href="https://anthropic.com">Claude</a> · Licensed under MIT</sub>
284
- </p>
1
+ <p align="center">
2
+ <img src="https://img.shields.io/badge/kanbaii-v0.2.0-6366f1?style=for-the-badge&labelColor=0a0a0b" alt="Version" />
3
+ <img src="https://img.shields.io/badge/node-%3E%3D18-22c55e?style=for-the-badge&labelColor=0a0a0b" alt="Node" />
4
+ <img src="https://img.shields.io/badge/license-MIT-71717a?style=for-the-badge&labelColor=0a0a0b" alt="License" />
5
+ <img src="https://img.shields.io/badge/AI-Claude-f59e0b?style=for-the-badge&labelColor=0a0a0b" alt="Claude AI" />
6
+ </p>
7
+
8
+ <h1 align="center">
9
+ <br />
10
+ ◈ KANBAII
11
+ <br />
12
+ </h1>
13
+
14
+ <p align="center">
15
+ <strong>Your ideas deserve structure. AI gives them momentum.</strong>
16
+ <br />
17
+ <sub>For creators, founders, students, teams, and anyone with a plan to execute.</sub>
18
+ </p>
19
+
20
+ <p align="center">
21
+ <a href="#quick-start">Quick Start</a> ·
22
+ <a href="#who-is-it-for">Who Is It For</a> ·
23
+ <a href="#concepts">Concepts</a> ·
24
+ <a href="#wizard">Wizard</a> ·
25
+ <a href="#ralph--teams">Ralph & Teams</a> ·
26
+ <a href="#cli">CLI</a>
27
+ </p>
28
+
29
+ ---
30
+
31
+ ## What Is KANBAII
32
+
33
+ A local-first project board powered by AI. No accounts, no subscriptions, no cloud. Install it, open it, organize anything — from a product launch to a thesis, from a startup MVP to a home renovation plan.
34
+
35
+ KANBAII gives you structure when you need it and an AI that can actually execute work for you.
36
+
37
+ ```bash
38
+ npx kanbaii
39
+ ```
40
+
41
+ That's it. Opens in your browser.
42
+
43
+ ---
44
+
45
+ ## Who Is It For
46
+
47
+ **Everyone.** You don't need to be a programmer.
48
+
49
+ | You are... | KANBAII helps you... |
50
+ |---|---|
51
+ | A **founder** with 10 ideas and no process | Break each idea into clear steps and prioritize |
52
+ | A **student** planning a thesis or project | Turn a vague goal into a structured plan with tasks |
53
+ | A **freelancer** juggling clients | Separate projects, track what's active, what's done |
54
+ | A **developer** building software | Execute tasks with AI agents that write code for you |
55
+ | A **team lead** coordinating work | Run multiple work streams in parallel with Teams |
56
+ | A **creator** launching something | Plan, track, and ship — without spreadsheet chaos |
57
+
58
+ If you've ever felt overwhelmed by everything you need to do, KANBAII turns that noise into a clear board.
59
+
60
+ ---
61
+
62
+ ## Quick Start
63
+
64
+ ### 1. Prerequisites
65
+
66
+ You need [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated:
67
+
68
+ ```bash
69
+ npm install -g @anthropic-ai/claude-code
70
+ claude login
71
+ ```
72
+
73
+ ### 2. Install & Run
74
+
75
+ ```bash
76
+ npm install -g kanbaii
77
+ kanbaii doctor # verify everything works
78
+ kanbaii start # opens browser at localhost:5555
79
+ ```
80
+
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.
107
+
108
+ ---
109
+
110
+ ## Concepts
111
+
112
+ ### The Hierarchy
113
+
114
+ KANBAII organizes work in two levels:
115
+
116
+ ```
117
+ Project (your big goal)
118
+ └── Work Items (the pieces to build)
119
+ ├── Plan (context, strategy, notes)
120
+ └── Tasks (concrete steps on a kanban board)
121
+ ```
122
+
123
+ **Work Items** are the meaningful chunks: a feature to build, a bug to fix, a section to refactor. Each one gets its own 5-column kanban board.
124
+
125
+ ### Work Item Types
126
+
127
+ | Type | When to use | Color |
128
+ |------|------------|-------|
129
+ | **Feature** | Something new to create | Indigo |
130
+ | **Bug** | Something broken to fix | Red |
131
+ | **Refactor** | Something existing to improve | Amber |
132
+
133
+ ### Two Levels of Kanban
134
+
135
+ - **Level 1 — Work Items Board**: Drag work items across `Planning → Active → Review → Done`
136
+ - **Level 2 — Task Board**: Each work item has its own `Backlog → Todo → In Progress → Review → Done`
137
+
138
+ Click a work item to enter its board. Breadcrumb to navigate back. Simple.
139
+
140
+ ---
141
+
142
+ ## Wizard
143
+
144
+ The AI wizard turns a sentence into a structured plan:
145
+
146
+ 1. Pick a type (Feature / Bug / Refactor)
147
+ 2. Describe what you need in plain language
148
+ 3. AI generates a plan — you review and approve
149
+ 4. AI generates tasks from the plan — you review and approve
150
+ 5. Your board is populated and ready
151
+
152
+ Skip any step. Edit anything. The wizard accelerates — it never locks you in.
153
+
154
+ ---
155
+
156
+ ## Ralph & Teams
157
+
158
+ ### Ralph — Single Executor
159
+
160
+ Select one work item. Ralph handles it end to end:
161
+
162
+ - Reads the plan for context
163
+ - Resolves task dependencies
164
+ - Executes tasks in order (parallel where safe)
165
+ - Moves completed work to Review
166
+ - Reports back with summaries
167
+
168
+ **Think of Ralph as a focused assistant** — one work item, full attention.
169
+
170
+ ### Teams — Parallel Execution
171
+
172
+ Select multiple work items. A coordinator assigns each to a worker. Workers execute simultaneously — one work item per worker.
173
+
174
+ **Think of Teams as a squad** — multiple work items, all moving at once.
175
+
176
+ ---
177
+
178
+ ## CLI
179
+
180
+ ```bash
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?)
186
+ kanbaii init # Initialize data directory
187
+ kanbaii stop # Info for stopping the server
188
+ ```
189
+
190
+ ### Configuration
191
+
192
+ | Setting | Default | Description |
193
+ |---------|---------|-------------|
194
+ | `port` | `5555` | Server port |
195
+ | `dataDir` | `~/.kanbaii/data` | Where project data lives |
196
+ | `openBrowser` | `true` | Auto-open on start |
197
+
198
+ ```bash
199
+ kanbaii init --port 8080 --data ~/my-projects
200
+ ```
201
+
202
+ ---
203
+
204
+ ## How Data Works
205
+
206
+ No database. Clean JSON files on disk, fully git-friendly:
207
+
208
+ ```
209
+ data/projects/my-project/
210
+ project.json
211
+ work-items/
212
+ feat-auth-system.json
213
+ bug-login-crash.json
214
+ ```
215
+
216
+ Your data stays on your machine. Always.
217
+
218
+ ---
219
+
220
+ ## Architecture
221
+
222
+ For contributors and the curious:
223
+
224
+ ```
225
+ Express + Socket.IO ──── Single port (default: 5555)
226
+
227
+ ├── /api/* REST endpoints
228
+ ├── /socket.io Real-time events
229
+ └── /* Static frontend (Next.js export)
230
+ ```
231
+
232
+ | Component | Technology |
233
+ |-----------|-----------|
234
+ | Backend | Express 4 + Socket.IO 4 |
235
+ | Frontend | Next.js 14 (static export) |
236
+ | State | Zustand |
237
+ | Drag & Drop | @atlaskit/pragmatic-drag-and-drop |
238
+ | Animations | Framer Motion |
239
+ | AI Engine | Claude CLI |
240
+ | CLI | Commander.js |
241
+ | Validation | Zod |
242
+ | Testing | Vitest |
243
+
244
+ ---
245
+
246
+ ## Development
247
+
248
+ ```bash
249
+ git clone https://github.com/martinmsaavedra/kanbaii.git
250
+ cd kanbaii
251
+
252
+ npm install
253
+ cd frontend && npm install && cd ..
254
+
255
+ # Dev mode
256
+ npm run dev:server # Express on :5555
257
+ npm run dev:frontend # Next.js on :3000
258
+
259
+ # Test
260
+ npm test
261
+
262
+ # Build
263
+ npm run build
264
+ ```
265
+
266
+ ---
267
+
268
+ ## Philosophy
269
+
270
+ > Structure without ceremony. AI without lock-in. Your data, your machine.
271
+
272
+ KANBAII is for anyone who wants to:
273
+ - Turn ideas into action without overthinking the process
274
+ - Stay organized without paying for another SaaS
275
+ - Let AI do the heavy lifting while you stay in control
276
+ - Work locally, own your data, move fast
277
+
278
+ ---
279
+
280
+ <p align="center">
281
+ <sub>Built by <a href="https://github.com/martinmsaavedra">Martín Saavedra</a></sub>
282
+ <br />
283
+ <sub>Powered by <a href="https://anthropic.com">Claude</a> · Licensed under MIT</sub>
284
+ </p>
@@ -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/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>
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-2f313c3206a6e049.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-3466de5187c06e06.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-3466de5187c06e06.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\":\"kke8d-U-rxVHhNFkjCbIh\",\"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>