tandem-editor 0.6.0 → 0.6.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tandem",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Edit and iterate on documents with Claude — no copy-paste, real-time push via plugin monitor",
5
5
  "author": {
6
6
  "name": "Tandem"
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.2] - 2026-04-16
11
+
12
+ ### Fixed
13
+
14
+ - **Plugin stdio entries crash-loop on Windows** — `tandem-editor@0.6.1`'s published `package.json` shipped `"workspaces": ["packages/*"]`, a dev-only field for the vestigial `packages/tandem-doc/` alias stub. On Windows with Node 24 + npm 11, the presence of `workspaces` in an installed consumer package caused `npx -y tandem-editor …` to fail with `ERR_UNSUPPORTED_ESM_URL_SCHEME` (the bin path was handed to the ESM loader as a raw `c:\…` string instead of a `file://` URL). Claude Desktop's plugin loader spawns the stdio entries via `npx -y`, so both `tandem` and `tandem-channel` crash-exited before any user code ran, manifesting in Cowork sessions as entries that flapped "connecting → gone" and never surfaced `tandem_*` tools. Removed the unused `packages/tandem-doc/` directory and the `workspaces` field; direct `node dist/cli/index.js` invocation was never affected, so the Tauri desktop app's bundled sidecar was fine and only the npm-tarball/`npx` path needed the fix.
15
+
16
+ ## [0.6.1] - 2026-04-15
17
+
18
+ ### Fixed
19
+
20
+ - **Tauri desktop app fails to start** — `src/cli/skill-content.ts` reads `skills/tandem/SKILL.md` at module-init via `readFileSync`, and `src/server/mcp/api-routes.ts` transitively imports it, so the bundled sidecar server crashed on startup with `ENOENT: skills/tandem/SKILL.md`. The `skills/` directory was never declared in `src-tauri/tauri.conf.json` bundle resources (latent since the v0.5.1 refactor to read SKILL.md at runtime). Add `"../skills/": "skills/"` so the sidecar's relative path resolution matches the npm-install layout. npm-published 0.6.0 was unaffected because `skills/` ships in the npm tarball via `package.json` `files`.
21
+
10
22
  ## [0.6.0] - 2026-04-15
11
23
 
12
24
  ### Added
package/dist/cli/index.js CHANGED
@@ -905,7 +905,7 @@ var init_start = __esm({
905
905
 
906
906
  // src/cli/index.ts
907
907
  import updateNotifier from "update-notifier";
908
- var version = true ? "0.6.0" : "0.0.0-dev";
908
+ var version = true ? "0.6.2" : "0.0.0-dev";
909
909
  var args = process.argv.slice(2);
910
910
  var isStdioMode = args[0] === "mcp-stdio" || args[0] === "channel";
911
911
  if (!isStdioMode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tandem-editor",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Edit and iterate on documents with Claude — no copy-paste, real-time push via plugin monitor",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,9 +31,6 @@
31
31
  ".": "./dist/cli/index.js",
32
32
  "./dist/cli/index.js": "./dist/cli/index.js"
33
33
  },
34
- "workspaces": [
35
- "packages/*"
36
- ],
37
34
  "scripts": {
38
35
  "dev": "vite",
39
36
  "dev:standalone": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",