@insitue/claude-plugin 0.0.1 → 0.0.3

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,11 +1,11 @@
1
1
  {
2
2
  "name": "insitue",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
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": {
7
- "command": "node",
8
- "args": ["${CLAUDE_PLUGIN_ROOT}/dist/mcp-server.js"],
7
+ "command": "npx",
8
+ "args": ["-y", "@insitue/claude-plugin@latest"],
9
9
  "cwd": "${CLAUDE_PROJECT_DIR}"
10
10
  }
11
11
  }
package/README.md CHANGED
@@ -20,10 +20,28 @@ there's no extra config — start `insitue dev`, start `claude`, run
20
20
 
21
21
  ## Install
22
22
 
23
+ Inside an interactive `claude` session:
24
+
25
+ ```
26
+ /plugin marketplace add InSitue/insitue
27
+ /plugin install insitue@insitue-plugins
28
+ ```
29
+
30
+ The marketplace lives at the InSitue monorepo
31
+ (`github.com/InSitue/insitue`). The plugin is cached locally after
32
+ install; refresh with `/plugin marketplace update insitue-plugins`.
33
+
34
+ ### Local development
35
+
23
36
  ```bash
24
- claude plugin install @insitue/claude-plugin
37
+ claude --plugin-dir /absolute/path/to/packages/claude-plugin
25
38
  ```
26
39
 
40
+ (npm is also wired up — `npx @insitue/claude-plugin` runs the MCP
41
+ server standalone for Claude Desktop / other clients that take an
42
+ MCP server config directly. The `/plugin install` flow above is the
43
+ canonical path for Claude Code.)
44
+
27
45
  ## Use
28
46
 
29
47
  Three terminals:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insitue/claude-plugin",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
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
  "license": "MIT",
6
6
  "type": "module",