tandem-editor 0.7.0 → 0.8.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tandem-editor",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
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",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "scripts": {
35
35
  "dev": "vite",
36
- "dev:standalone": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
36
+ "dev:standalone": "concurrently --names client,server,monitor \"vite\" \"tsx watch src/server/index.ts\" \"tsx src/monitor/index.ts\"",
37
37
  "dev:client": "vite",
38
38
  "dev:server": "tsx watch src/server/index.ts",
39
39
  "build": "npm run typecheck && vite build && tsup",
@@ -53,6 +53,7 @@
53
53
  "doctor": "node scripts/doctor.mjs",
54
54
  "dev:tauri": "node scripts/download-node-sidecar.mjs && cargo tauri dev",
55
55
  "build:tauri": "cargo tauri build",
56
+ "check:tokens": "tsx scripts/check-semantic-tokens.ts",
56
57
  "prepare": "husky",
57
58
  "prepublishOnly": "npm run build"
58
59
  },
@@ -64,6 +65,9 @@
64
65
  "eslint --fix",
65
66
  "biome check --write"
66
67
  ],
68
+ "src/client/**/*.{ts,tsx}": [
69
+ "tsx scripts/check-semantic-tokens.ts"
70
+ ],
67
71
  "*.mjs": [
68
72
  "eslint --fix",
69
73
  "biome check --write"
@@ -80,11 +84,6 @@
80
84
  "@hocuspocus/server": "2.15.3",
81
85
  "@modelcontextprotocol/sdk": "^1.12.1",
82
86
  "@tauri-apps/api": "^2.10.1",
83
- "@tauri-apps/plugin-dialog": "^2.7.0",
84
- "@tauri-apps/plugin-fs": "^2.5.0",
85
- "@tauri-apps/plugin-process": "^2.3.1",
86
- "@tauri-apps/plugin-shell": "^2.3.5",
87
- "@tauri-apps/plugin-window-state": "^2.4.1",
88
87
  "@tiptap/core": "^2.11.0",
89
88
  "@tiptap/extension-collaboration": "^2.11.0",
90
89
  "@tiptap/extension-collaboration-cursor": "^2.11.0",
@@ -9,7 +9,7 @@ description: >
9
9
 
10
10
  # Tandem — Collaborative Document Editor
11
11
 
12
- Tandem lets you annotate and edit documents alongside the user in real time. The user sees your changes in a browser editor; you interact via the tandem_* MCP tool suite.
12
+ Tandem lets you annotate and edit documents alongside the user in real time. The user sees your changes in the editor; you interact via the tandem_* MCP tool suite.
13
13
 
14
14
  ## Hard Rules
15
15
 
@@ -59,7 +59,7 @@ Selections are **not** sent as standalone events. Instead, when the user sends a
59
59
  ## Collaboration Etiquette
60
60
 
61
61
  - Check `tandem_getActivity()` before annotating near the user's cursor. If `isTyping` is true, wait for typing to stop before annotating that area.
62
- - Use `tandem_setStatus` to show what you're working on — the user sees it in the browser status bar.
62
+ - Use `tandem_setStatus` to show what you're working on — the user sees it in the editor status bar.
63
63
  - **Call `tandem_checkInbox` every 2-3 tool calls**, not just at the end of a task. The real-time channel is often not connected; polling is the reliable path.
64
64
  - Reply to chat messages with `tandem_reply`, not annotations.
65
65