@insitue/claude-plugin 0.7.5 → 0.7.6

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.6.5",
3
+ "version": "0.6.6",
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": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,16 @@
1
1
  # @insitue/claude-plugin
2
2
 
3
+ ## 0.7.6
4
+
5
+ - **Fix the channels command (again) — use ONE flag.** `--dangerously-load-development-channels` is itself variadic and takes the channel entry directly; passing `--channels` after it makes the dev flag swallow `--channels` as an (invalid) entry ("entries must be tagged"). Correct form: `claude --dangerously-load-development-channels plugin:insitue@insitue-plugins`. (`--channels` alone is the separate allowlisted-plugin path.)
6
+
3
7
  ## 0.7.5
4
8
 
5
9
  - **Fix the channels command — it must be tagged with the marketplace.** The flag is `--channels plugin:insitue@insitue-plugins` (not `plugin:insitue`, which errored with "entries must be tagged"). Corrected in the `/insitue:connect` tip, the README, and the push-mode docs. Also synced the marketplace listing version.
6
10
 
7
11
  ## 0.7.4
8
12
 
9
- - **`/insitue:connect` no longer blocks the session.** In poll mode the agent silently re-looped `next_pick` forever, freezing the chat (queued messages never processed). It now polls once then hands control back, drains buffered picks on your next message, and points you at channel mode (`--dangerously-load-development-channels --channels plugin:insitue@insitue-plugins`) for truly hands-free background picks.
13
+ - **`/insitue:connect` no longer blocks the session.** In poll mode the agent silently re-looped `next_pick` forever, freezing the chat (queued messages never processed). It now polls once then hands control back, drains buffered picks on your next message, and points you at channel mode (`--dangerously-load-development-channels plugin:insitue@insitue-plugins`) for truly hands-free background picks.
10
14
  - **Brand the sign-in success page.** The loopback login success page uses the brand purple gradient heading instead of the off-brand green.
11
15
 
12
16
  ## 0.7.3
@@ -25,7 +29,7 @@
25
29
 
26
30
  ## 0.7.0
27
31
 
28
- - **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@insitue-plugins` 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.
32
+ - **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 plugin:insitue@insitue-plugins` 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.
29
33
 
30
34
  ## 0.6.3
31
35
 
package/README.md CHANGED
@@ -197,7 +197,7 @@ you can have picks **pushed** directly into the session so the
197
197
  chat stays completely free between picks:
198
198
 
199
199
  ```bash
200
- claude --dangerously-load-development-channels --channels plugin:insitue@insitue-plugins
200
+ claude --dangerously-load-development-channels plugin:insitue@insitue-plugins
201
201
  ```
202
202
 
203
203
  With this flag, every pick the user sends from the browser wakes
@@ -35,7 +35,7 @@ double-delivery is possible and you must de-dupe by `id`.
35
35
  ### Push mode (channels — opt-in, Claude Code only)
36
36
 
37
37
  If the user started Claude Code with channel support
38
- (`claude --dangerously-load-development-channels --channels plugin:insitue@insitue-plugins`),
38
+ (`claude --dangerously-load-development-channels plugin:insitue@insitue-plugins`),
39
39
  picks are PUSHED into this session as
40
40
  `<channel source="insitue">…</channel>` events. Each event
41
41
  contains the pick's `id`, `userNote`, `source file:line`,
@@ -72,7 +72,7 @@ your context and skip any id you've already processed.
72
72
  >
73
73
  > Tip: for hands-free background picks (so I act the moment you
74
74
  > pick, without you waiting on me), relaunch with
75
- > `claude --dangerously-load-development-channels --channels plugin:insitue@insitue-plugins`.
75
+ > `claude --dangerously-load-development-channels plugin:insitue@insitue-plugins`.
76
76
 
77
77
  2. **Watch for a pick — ONE poll, then hand control back.** Call
78
78
  `mcp__insitue__next_pick` (it long-polls ~8s).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insitue/claude-plugin",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
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",