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.
- package/CHANGELOG.md +6 -0
- package/README.md +9 -2
- package/dist/cli.js +32720 -704
- package/dist/extension.js +56 -13
- package/dist/standalone-webview/favicon.svg +105 -0
- package/dist/standalone-webview/{icons-Bv4jE7zW.js → icons-DqI3jXv3.js} +61 -41
- package/dist/standalone-webview/icons-DqI3jXv3.js.map +1 -0
- package/dist/standalone-webview/index.js +53 -53
- package/dist/standalone-webview/index.js.map +1 -1
- package/dist/{webview/react-vendor-DTa8ZTpE.js → standalone-webview/react-vendor-K4aqks7O.js} +2 -2
- package/dist/{webview/react-vendor-DTa8ZTpE.js.map → standalone-webview/react-vendor-K4aqks7O.js.map} +1 -1
- package/dist/standalone-webview/style.css +1 -1
- package/dist/standalone.js +371 -367
- package/dist/webview/favicon.svg +105 -0
- package/dist/webview/{icons-Bv4jE7zW.js → icons-DqI3jXv3.js} +61 -41
- package/dist/webview/icons-DqI3jXv3.js.map +1 -0
- package/dist/webview/index.js +60 -60
- package/dist/webview/index.js.map +1 -1
- package/dist/{standalone-webview/react-vendor-DTa8ZTpE.js → webview/react-vendor-K4aqks7O.js} +2 -2
- package/dist/{standalone-webview/react-vendor-DTa8ZTpE.js.map → webview/react-vendor-K4aqks7O.js.map} +1 -1
- package/dist/webview/style.css +1 -1
- package/package.json +1 -1
- package/src/cli/index.ts +17 -0
- package/src/extension/KanbanPanel.ts +40 -0
- package/src/standalone/server.ts +5 -0
- package/src/webview/App.tsx +137 -5
- package/src/webview/components/BulkActionsBar.tsx +310 -0
- package/src/webview/components/CardEditor.tsx +130 -11
- package/src/webview/components/CardItem.tsx +2 -2
- package/src/webview/components/CreateCardDialog.tsx +1 -1
- package/src/webview/components/KanbanBoard.tsx +25 -5
- package/src/webview/components/KanbanColumn.tsx +16 -3
- package/src/webview/components/LabelPicker.tsx +132 -0
- package/src/webview/components/Toolbar.tsx +48 -123
- package/src/webview/public/favicon.svg +105 -0
- package/src/webview/standalone.html +1 -0
- package/src/webview/store/index.ts +59 -1
- package/dist/standalone-webview/icons-Bv4jE7zW.js.map +0 -1
- 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", "
|
|
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
|
-
|
|
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
|