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 CHANGED
@@ -48,16 +48,25 @@ cd my-project
48
48
  kandown init
49
49
  ```
50
50
 
51
- This creates a `.kandown/` folder with:
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
- ├── tasks/ # One .md file per task
58
- └── AGENT.md # AI-agent quick reference
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