kanban-lite 1.0.29 → 1.0.31

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +9 -2
  3. package/dist/cli.js +32720 -704
  4. package/dist/extension.js +56 -13
  5. package/dist/standalone-webview/favicon.svg +105 -0
  6. package/dist/standalone-webview/{icons-Bv4jE7zW.js → icons-DqI3jXv3.js} +61 -41
  7. package/dist/standalone-webview/icons-DqI3jXv3.js.map +1 -0
  8. package/dist/standalone-webview/index.js +53 -53
  9. package/dist/standalone-webview/index.js.map +1 -1
  10. package/dist/{webview/react-vendor-DTa8ZTpE.js → standalone-webview/react-vendor-K4aqks7O.js} +2 -2
  11. package/dist/{webview/react-vendor-DTa8ZTpE.js.map → standalone-webview/react-vendor-K4aqks7O.js.map} +1 -1
  12. package/dist/standalone-webview/style.css +1 -1
  13. package/dist/standalone.js +371 -367
  14. package/dist/webview/favicon.svg +105 -0
  15. package/dist/webview/{icons-Bv4jE7zW.js → icons-DqI3jXv3.js} +61 -41
  16. package/dist/webview/icons-DqI3jXv3.js.map +1 -0
  17. package/dist/webview/index.js +60 -60
  18. package/dist/webview/index.js.map +1 -1
  19. package/dist/{standalone-webview/react-vendor-DTa8ZTpE.js → webview/react-vendor-K4aqks7O.js} +2 -2
  20. package/dist/{standalone-webview/react-vendor-DTa8ZTpE.js.map → webview/react-vendor-K4aqks7O.js.map} +1 -1
  21. package/dist/webview/style.css +1 -1
  22. package/package.json +1 -1
  23. package/src/cli/index.ts +17 -0
  24. package/src/extension/KanbanPanel.ts +40 -0
  25. package/src/standalone/server.ts +5 -0
  26. package/src/webview/App.tsx +137 -5
  27. package/src/webview/components/BulkActionsBar.tsx +310 -0
  28. package/src/webview/components/CardEditor.tsx +130 -11
  29. package/src/webview/components/CardItem.tsx +2 -2
  30. package/src/webview/components/CreateCardDialog.tsx +1 -1
  31. package/src/webview/components/KanbanBoard.tsx +25 -5
  32. package/src/webview/components/KanbanColumn.tsx +16 -3
  33. package/src/webview/components/LabelPicker.tsx +132 -0
  34. package/src/webview/components/Toolbar.tsx +48 -123
  35. package/src/webview/public/favicon.svg +105 -0
  36. package/src/webview/standalone.html +1 -0
  37. package/src/webview/store/index.ts +59 -1
  38. package/dist/standalone-webview/icons-Bv4jE7zW.js.map +0 -1
  39. package/dist/webview/icons-Bv4jE7zW.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Added
11
+ - **Multi-select cards**: Cmd/Ctrl+click to toggle individual cards, Shift+click to select a range, "Select All" in column menu
12
+ - **Bulk actions bar**: floating toolbar when multiple cards are selected with Move to, Priority, Assign, Labels, and Delete actions
13
+ - Multi-card drag & drop to move selected cards to another column
14
+ - `kl mcp` CLI command — starts the MCP server over stdio, allowing `kanban-lite` to be used as the `command` in MCP client config (e.g. `npx kanban-lite mcp`)
15
+
10
16
  ### Changed
11
17
  - Renamed all internal "Feature" terminology to "Card" across the entire codebase (types, functions, variables, components, CLI, MCP, REST API, extension commands)
12
18
  - `FeatureCard` component → `CardItem`, `FeatureEditor` → `CardEditor`, `CreateFeatureDialog` → `CreateCardDialog`, `FeatureHeaderProvider` → `CardHeaderProvider`
package/README.md CHANGED
@@ -172,6 +172,10 @@ kl pwd # Print workspace root p
172
172
  kl serve # Start on port 3000
173
173
  kl serve --port 8080 --no-browser # Custom port, no auto-open
174
174
 
175
+ # Start MCP server (stdio transport for AI agent integrations)
176
+ kl mcp # Auto-detect directory
177
+ kl mcp --dir .kanban # Explicit directory
178
+
175
179
  # Initialize features directory
176
180
  kl init
177
181
 
@@ -454,8 +458,9 @@ Add to your `.claude/settings.json`:
454
458
  {
455
459
  "mcpServers": {
456
460
  "kanban": {
461
+ "type": "stdio",
457
462
  "command": "npx",
458
- "args": ["kanban-lite", "kanban-mcp"],
463
+ "args": ["kanban-lite", "mcp"],
459
464
  "env": {
460
465
  "KANBAN_DIR": "/path/to/your/project/.kanban"
461
466
  }
@@ -467,7 +472,9 @@ Add to your `.claude/settings.json`:
467
472
  Or run directly:
468
473
 
469
474
  ```bash
470
- kanban-mcp --dir .kanban
475
+ kl mcp # Auto-detect directory
476
+ kl mcp --dir .kanban # Explicit directory
477
+ kanban-mcp --dir .kanban # Via dedicated binary
471
478
  ```
472
479
 
473
480
  ### Available Tools