@insitue/claude-plugin 0.7.4 → 0.7.5
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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +6 -2
- package/README.md +2 -2
- package/commands/connect.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# @insitue/claude-plugin
|
|
2
2
|
|
|
3
|
+
## 0.7.5
|
|
4
|
+
|
|
5
|
+
- **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
|
+
|
|
3
7
|
## 0.7.4
|
|
4
8
|
|
|
5
|
-
- **`/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`) for truly hands-free background picks.
|
|
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.
|
|
6
10
|
- **Brand the sign-in success page.** The loopback login success page uses the brand purple gradient heading instead of the off-brand green.
|
|
7
11
|
|
|
8
12
|
## 0.7.3
|
|
@@ -21,7 +25,7 @@
|
|
|
21
25
|
|
|
22
26
|
## 0.7.0
|
|
23
27
|
|
|
24
|
-
- **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.
|
|
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.
|
|
25
29
|
|
|
26
30
|
## 0.6.3
|
|
27
31
|
|
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
|
|
200
|
+
claude --dangerously-load-development-channels --channels plugin:insitue@insitue-plugins
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
With this flag, every pick the user sends from the browser wakes
|
|
@@ -212,7 +212,7 @@ channel listener falls back to the normal poll automatically.
|
|
|
212
212
|
preview period and may change or be renamed in a future release.
|
|
213
213
|
- **Dropping the flag:** on Team/Enterprise, an admin can add `insitue`
|
|
214
214
|
to the `allowedChannelPlugins` org policy — then the channel runs with
|
|
215
|
-
just `claude --channels plugin:insitue` (no dangerous flag). Once
|
|
215
|
+
just `claude --channels plugin:insitue@insitue-plugins` (no dangerous flag). Once
|
|
216
216
|
channels leave research preview / the plugin is on Anthropic's default
|
|
217
217
|
allowlist, the flag won't be needed at all.
|
|
218
218
|
- It works only with the CLI (`claude`), not Claude Desktop.
|
package/commands/connect.md
CHANGED
|
@@ -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`),
|
|
38
|
+
(`claude --dangerously-load-development-channels --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`.
|
|
75
|
+
> `claude --dangerously-load-development-channels --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.
|
|
3
|
+
"version": "0.7.5",
|
|
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",
|