kandown 0.33.1 → 0.33.3

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.33.3 — 2026-07-21 — "CLI Recovery"
4
+
5
+ - **Fixed**: **Default `kandown` Launch Regression** — restored the pre-split zero-setup startup flow where running `kandown` inside any project automatically initializes `.kandown/` when needed, refreshes the web bundle, starts the per-project daemon, and enters the normal board launch path.
6
+ - **Fixed**: **Global Flag Command Parsing** — repaired CLI dispatch so global flags such as `--no-update-check`, `--no-open`, `--path`, and `--port` no longer get mistaken for commands. This fixes the auto-updater restart path and the daemon spawn path that launches `--no-update-check daemon run` internally.
7
+ - **Fixed**: **Missing `init` Command After Modularization** — restored `kandown init` by adding the initializer module back to the source tree, copying the shipped HTML/config/agent templates, and creating project-root `tasks/` exactly as documented.
8
+ - **Fixed**: **One-Shot Task Commands** — restored the scriptable task command surface that had been partially lost during the split: `kandown list`, `show`, `create`/`new`, `move`, `assign`, `commit`, and `tasks`. JSON output and command-substitution output are clean again because decorative messages are emitted on stderr.
9
+ - **Fixed**: **Daemon Command Surface** — restored `kandown daemon start`, `status`, `restart`, `stop`, `run`, and `refresh-all` handling, including preferred port parsing for explicit daemon runs.
10
+ - **Fixed**: **TUI Command Entrypoints** — restored `kandown board` and `kandown settings`, and made the bundled `bin/tui.js` executable directly so the parent CLI can spawn the terminal interface reliably.
11
+ - **Fixed**: **MCP Stdout Contract** — restored `kandown mcp` dispatch while keeping stdout JSON-only, with initialization and status notices sent to stderr so MCP hosts and shell pipelines can parse responses safely.
12
+ - **Fixed**: **Unsafe Global Symlink Rewrites** — removed the daemon-side behavior that attempted to rewrite global `kandown` symlinks from a bundle-relative path. Package managers now remain the source of truth for the executable, preventing the web daemon from bricking the command.
13
+ - **Fixed**: **Project HTML Refresh Path Resolution** — refreshed `.kandown/kandown.html` from the resolved package root instead of an incorrect `import.meta.url` relative path, ensuring project web bundles are updated from the installed package.
14
+ - **Changed**: **Auto-Updater Global Install Targeting** — hardened the auto-updater to prefer the `npm`/`pnpm` executable living next to the active `kandown` binary. This prevents machines with multiple Node prefixes from updating a different global install than the command the user actually launched.
15
+ - **Added**: **Basic Import Recovery Command** — restored `kandown import <file.json>` for list-shaped JSON and Kandown export-shaped JSON, allowing task files to be recreated from exported data during CLI recovery workflows.
16
+
17
+ ## 0.33.2 — 2026-07-21 — "Fix CJS Require Shim & Path Resolution"
18
+
19
+ - **Fixed**: **TUI Require Shim Error (`Dynamic require of "module"`)** — added `createRequire` global banner shim in `tsup.config.ts` so Ink and React CJS dependencies inside `bin/tui.js` execute natively under Node ESM without dynamic require errors.
20
+ - **Fixed**: **Package Root Path Resolution (`PKG_ROOT`)** — updated `getPackageRoot()` to detect whether execution happens inside `bin/` or `src/cli/`, resolving `PKG_ROOT` to the exact installed package directory in all global installation modes.
21
+
3
22
  ## 0.33.1 — 2026-07-21 — "Instant TUI & Browser Launcher Fix"
4
23
 
5
24
  - **Fixed**: **CLI Default Command Execution (`kandown`)** — fixed `bin/tui.js` path resolution in global installation so running `kandown` with no arguments instantly opens both the browser AND the interactive terminal board UI (TUI), eliminating the fallback message `Open kandown.html in browser`.