kandown 0.34.3 → 0.35.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/CHANGELOG.md +30 -2
- package/README.md +215 -185
- package/bin/kandown.js +14 -23
- package/bin/tui.js +1 -1
- package/dist/index.html +182 -182
- package/package.json +6 -2
- package/templates/AGENT_KANDOWN.md +13 -2
- package/templates/kandown.json +16 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kandown",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.1",
|
|
4
4
|
"description": "File-based Kanban engine backed by Markdown. Zero backend, AI-agent friendly.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -41,9 +41,13 @@
|
|
|
41
41
|
"dev:app": "pnpm build && node bin/kandown.js",
|
|
42
42
|
"build": "node scripts/inject-version.js && node scripts/sync-agent-kandown.js && tsc -b && vite build && pnpm build:cli",
|
|
43
43
|
"build:cli": "tsup",
|
|
44
|
+
"build:demo": "node scripts/inject-version.js && vite build --mode demo",
|
|
44
45
|
"preview": "vite preview",
|
|
45
46
|
"typecheck": "tsc --noEmit",
|
|
46
|
-
"sync:agent": "node scripts/sync-agent-kandown.js"
|
|
47
|
+
"sync:agent": "node scripts/sync-agent-kandown.js",
|
|
48
|
+
"codemap": "node scripts/build-codemap.js",
|
|
49
|
+
"codemap:check": "node scripts/build-codemap.js --check",
|
|
50
|
+
"prepare": "node scripts/install-hooks.js"
|
|
47
51
|
},
|
|
48
52
|
"devDependencies": {
|
|
49
53
|
"@tabler/icons-react": "3.41.1",
|
|
@@ -163,6 +163,17 @@ Edge cases, gotchas.
|
|
|
163
163
|
|
|
164
164
|
---
|
|
165
165
|
|
|
166
|
-
## Stack
|
|
166
|
+
## Stack & Deployment
|
|
167
|
+
|
|
168
|
+
- **Stack**: React, Motion, Tailwind, Vite, Zustand, TypeScript, Node.js ESM CLI.
|
|
169
|
+
- **Website deployment (Vercel)**: Whenever you commit and push changes for the website (`website/` folder), **ALWAYS** verify the Vercel deployment status (`cd website && vercel ls` / `vercel inspect`). Ensure the deployment builds and reaches `● Ready` without any error.
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## Brand Colors
|
|
174
|
+
|
|
175
|
+
Kandown has 3 primary brand colors for UI, WebGL backgrounds, and marketing assets:
|
|
176
|
+
- **`#EBEBEB`** (Off-white / Slate light) — Neutral base / secondary highlight
|
|
177
|
+
- **`#F1FFB8`** (Light Lime / Pale Yellow) — Secondary accent / subtle highlight
|
|
178
|
+
- **`#88E138`** (Kandown Green) — Primary product accent / vibrant brand green
|
|
167
179
|
|
|
168
|
-
React, Motion, Tailwind, Vite, Zustand, TypeScript, Node.js ESM CLI.
|
package/templates/kandown.json
CHANGED
|
@@ -14,7 +14,11 @@
|
|
|
14
14
|
"baseRulesMode": "full",
|
|
15
15
|
"includeProjectInstructions": true,
|
|
16
16
|
"includeBoardDigest": true,
|
|
17
|
-
"sectionOrder": [
|
|
17
|
+
"sectionOrder": [
|
|
18
|
+
"baseRules",
|
|
19
|
+
"projectInstructions",
|
|
20
|
+
"boardDigest"
|
|
21
|
+
],
|
|
18
22
|
"rawTemplate": "{{baseRules}}\n\n---\n\n{{projectInstructions}}\n\n---\n\n{{boardDigest}}",
|
|
19
23
|
"boardDigest": {
|
|
20
24
|
"showColumnCounts": true,
|
|
@@ -27,10 +31,19 @@
|
|
|
27
31
|
}
|
|
28
32
|
},
|
|
29
33
|
"board": {
|
|
30
|
-
"columns": [
|
|
34
|
+
"columns": [
|
|
35
|
+
"Backlog",
|
|
36
|
+
"Todo",
|
|
37
|
+
"In Progress",
|
|
38
|
+
"Review",
|
|
39
|
+
"Done"
|
|
40
|
+
],
|
|
31
41
|
"defaultPriority": "P3",
|
|
32
42
|
"defaultOwnerType": "human",
|
|
33
|
-
"stackDefaultState": "collapsed"
|
|
43
|
+
"stackDefaultState": "collapsed",
|
|
44
|
+
"columnColors": {
|
|
45
|
+
"done": "yellow"
|
|
46
|
+
}
|
|
34
47
|
},
|
|
35
48
|
"fields": {
|
|
36
49
|
"priority": false,
|