kandown 0.11.2 → 0.13.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 +13 -4
- package/bin/kandown.js +810 -14
- package/bin/tui.js +121 -11
- package/dist/android-chrome-192x192.png +0 -0
- package/dist/android-chrome-512x512.png +0 -0
- package/dist/apple-touch-icon.png +0 -0
- package/dist/favicon-16x16.png +0 -0
- package/dist/favicon-32x32.png +0 -0
- package/dist/favicon-48x48.png +0 -0
- package/dist/favicon.ico +0 -0
- package/dist/favicon.svg +25 -7
- package/dist/index.html +134 -127
- package/dist/kandownlogo.png +0 -0
- package/dist/manifest.json +19 -1
- package/dist/mstile-150x150.png +0 -0
- package/dist/og-image.png +0 -0
- package/package.json +1 -1
- package/templates/AGENT.md +11 -8
- package/templates/AGENT_KANDOWN.md +16 -8
- package/templates/README.md +24 -20
package/README.md
CHANGED
|
@@ -48,16 +48,25 @@ cd my-project
|
|
|
48
48
|
kandown init
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
This creates
|
|
51
|
+
This creates two folders at your project root:
|
|
52
52
|
|
|
53
53
|
```
|
|
54
|
-
.kandown/
|
|
54
|
+
.kandown/ # config + web UI + agent docs
|
|
55
55
|
├── kandown.html # Single-file web app
|
|
56
56
|
├── kandown.json # Project config (columns, appearance)
|
|
57
|
-
├──
|
|
58
|
-
└──
|
|
57
|
+
├── AGENT.md # AI-agent quick reference
|
|
58
|
+
└── AGENT_KANDOWN.md # Full agent reference
|
|
59
|
+
|
|
60
|
+
tasks/ # Task files (source of truth)
|
|
61
|
+
├── t1.md # One .md file per task
|
|
62
|
+
└── archive/ # Archived tasks live here
|
|
59
63
|
```
|
|
60
64
|
|
|
65
|
+
> **Layout note:** tasks live at the project root in `./tasks/`, not inside
|
|
66
|
+
> `.kandown/`. This keeps config and data cleanly separated. If you're
|
|
67
|
+
> upgrading from an older version with tasks in `.kandown/tasks/`, the CLI
|
|
68
|
+
> will move them automatically the first time you run it — nothing to do.
|
|
69
|
+
|
|
61
70
|
### Launch the board
|
|
62
71
|
|
|
63
72
|
```bash
|