tandem-editor 0.6.0 → 0.6.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tandem",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
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,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.1] - 2026-04-15
11
+
12
+ ### Fixed
13
+
14
+ - **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`.
15
+
10
16
  ## [0.6.0] - 2026-04-15
11
17
 
12
18
  ### 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.1" : "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.1",
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",