@insitue/claude-plugin 0.6.3 → 0.7.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "insitue",
3
- "version": "0.5.3",
3
+ "version": "0.6.0",
4
4
  "description": "Drive a Claude Code session from the InSitue browser overlay. Pick an element in your app, claude reads the file and proposes the edit.",
5
5
  "mcpServers": {
6
6
  "insitue": {
@@ -11,5 +11,10 @@
11
11
  ],
12
12
  "cwd": "${CLAUDE_PROJECT_DIR}"
13
13
  }
14
- }
14
+ },
15
+ "channels": [
16
+ {
17
+ "server": "insitue"
18
+ }
19
+ ]
15
20
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @insitue/claude-plugin
2
2
 
3
+ ## 0.7.0
4
+
5
+ - **Live picks without blocking the chat (channels, opt-in preview).** The MCP server now also PUSHES each pick as a Claude Code channel event (`notifications/claude/channel`). Start your session with `claude --dangerously-load-development-channels --channels plugin:insitue` and picks wake the idle agent instead of you waiting on a poll — the chat stays free for conversation the rest of the time. Plain `claude` + `/insitue:connect` is unchanged (8s poll fallback). The agent de-dupes by pick id, so the push + poll paths never double-handle a pick. Channels are a Claude Code research-preview feature (CLI-only); the flag is required during the preview.
6
+
3
7
  ## 0.6.3
4
8
 
5
9
  - **Responsive watch — interject without cancelling.** The `next_pick` long-poll is now 8s (was 25s). While the watch is running you can just type a message: Claude Code queues it and delivers it the moment the poll returns (≤~8s), so you no longer have to cancel the watch to ask a question. The connect instructions now make clear the watch never needs to be cancelled to talk — Claude answers and resumes watching.
package/README.md CHANGED
@@ -177,6 +177,35 @@ before writing. After it writes, your dev server's HMR picks up
177
177
  the change and you see it live in the browser. Pick the next
178
178
  thing.
179
179
 
180
+ ### Live picks without blocking the chat (channels, preview)
181
+
182
+ By default the agent polls `next_pick` every ~8 s — the chat is
183
+ technically available between polls, but the polling loop runs
184
+ continuously in the background.
185
+
186
+ As an opt-in upgrade (Claude Code CLI only, research preview),
187
+ you can have picks **pushed** directly into the session so the
188
+ chat stays completely free between picks:
189
+
190
+ ```bash
191
+ claude --dangerously-load-development-channels --channels plugin:insitue
192
+ ```
193
+
194
+ With this flag, every pick the user sends from the browser wakes
195
+ Claude immediately via a channel notification — no polling needed,
196
+ and the chat is genuinely idle between picks. Claude still buffers
197
+ picks for `next_pick` in parallel, so a stale session or a missing
198
+ channel listener falls back to the normal poll automatically.
199
+
200
+ **Notes:**
201
+ - This is a **Claude Code research-preview** feature. The flag
202
+ `--dangerously-load-development-channels` is required during the
203
+ preview period and may change or be renamed in a future release.
204
+ - It works only with the CLI (`claude`), not Claude Desktop.
205
+ - The standard `/insitue:connect` workflow (plain `claude`, no
206
+ extra flags) continues to work exactly as before via polling —
207
+ channels are purely an opt-in upgrade, not a requirement.
208
+
180
209
  ---
181
210
 
182
211
  ## What gets shipped to claude
@@ -25,6 +25,40 @@ that means:
25
25
  `read_file` tools exposed by this same MCP server
26
26
  Either path is fine; pick whichever your runtime has.
27
27
 
28
+ ## Pick delivery modes and idempotency
29
+
30
+ Picks can reach you in one of two ways depending on how `claude`
31
+ was started. **Act on each pick `id` exactly once** regardless of
32
+ which path delivered it — the server always does both, so
33
+ double-delivery is possible and you must de-dupe by `id`.
34
+
35
+ ### Push mode (channels — opt-in, Claude Code only)
36
+
37
+ If the user started Claude Code with channel support
38
+ (`claude --dangerously-load-development-channels --channels plugin:insitue`),
39
+ picks are PUSHED into this session as
40
+ `<channel source="insitue">…</channel>` events. Each event
41
+ contains the pick's `id`, `userNote`, `source file:line`,
42
+ `confidence`, and URL — everything you need to act.
43
+
44
+ **In push mode you do NOT need to loop `next_pick`.** Stay idle
45
+ between picks so the user can chat freely. Each pushed pick wakes
46
+ you; handle it exactly like a `next_pick` pick (echo the request,
47
+ read the file, propose the edit, etc.), then go idle again.
48
+
49
+ ### Poll mode (plain `claude` — default)
50
+
51
+ If no `<channel>` pick events arrive, you are in poll mode. Loop
52
+ `next_pick` as described in §2 below (default 8 s timeout). This
53
+ is the same behaviour as before channels existed and requires no
54
+ extra flags.
55
+
56
+ ### Don't double-handle
57
+
58
+ If the same pick `id` arrives both via a channel event AND via
59
+ `next_pick`, act on it exactly once. Keep a set of handled ids in
60
+ your context and skip any id you've already processed.
61
+
28
62
  ## Your behaviour
29
63
 
30
64
  1. Call `mcp__insitue__list_recent_picks` once. If there are
@@ -501,6 +501,25 @@ function connectToCompanion(s) {
501
501
  `[insitue] \u{1F4E5} pick received \u2014 "${note}" @ ${where}
502
502
  `
503
503
  );
504
+ try {
505
+ const channelContent = `InSitue pick ready (id: ${summary.id})
506
+ Note: ${summary.userNote ?? "(no description)"}
507
+ Source: ${summary.source ? `${summary.source.file}:${summary.source.line ?? "?"}` : "(unknown)"}
508
+ Confidence: ${summary.confidence}
509
+ ` + (summary.url ? `URL: ${summary.url}
510
+ ` : "");
511
+ void server.server.notification(
512
+ {
513
+ method: "notifications/claude/channel",
514
+ params: {
515
+ content: channelContent,
516
+ meta: { pick_id: summary.id }
517
+ }
518
+ }
519
+ ).catch(() => {
520
+ });
521
+ } catch {
522
+ }
504
523
  } catch (err) {
505
524
  process.stderr.write(
506
525
  `[insitue-mcp] dropped malformed pick: ${err.message}
@@ -590,10 +609,21 @@ function endSession() {
590
609
  session = null;
591
610
  return { closedWs, killedCompanion, removedSessionFile };
592
611
  }
593
- var server = new McpServer({
594
- name: "insitue",
595
- version: readPackageVersion()
596
- });
612
+ var server = new McpServer(
613
+ {
614
+ name: "insitue",
615
+ version: readPackageVersion()
616
+ },
617
+ {
618
+ capabilities: {
619
+ // Declare the Claude Code "channel" experimental capability so the
620
+ // MCP server is permitted to emit notifications/claude/channel events.
621
+ // Claude Code checks for this key during its research-preview channel
622
+ // handshake; without it the push notification is silently dropped.
623
+ experimental: { "claude/channel": {} }
624
+ }
625
+ }
626
+ );
597
627
  server.registerTool(
598
628
  "next_pick",
599
629
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insitue/claude-plugin",
3
- "version": "0.6.3",
3
+ "version": "0.7.0",
4
4
  "description": "Drive Claude (Code AND Desktop) from the InSitue browser overlay — pick an element in your app, claude reads the file and proposes the edit.",
5
5
  "keywords": [
6
6
  "insitue",