vite-plugin-specter 0.4.0 → 0.5.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/dist/index.d.cts CHANGED
@@ -6,6 +6,14 @@ interface SpecterOptions {
6
6
  shortcuts?: {
7
7
  activate?: string;
8
8
  };
9
+ /**
10
+ * Enable the "Send to Claude" button in the Specs panel. Batches every Spec to a
11
+ * local Specter MCP bridge (see `mcp-bridge/`) that Claude Code / Kiro pull from.
12
+ * `true` uses the default bridge at http://127.0.0.1:8787; pass `{ url }` to override.
13
+ */
14
+ claudeBridge?: boolean | {
15
+ url?: string;
16
+ };
9
17
  }
10
18
  declare function specter(options?: SpecterOptions): Plugin;
11
19
 
package/dist/index.d.ts CHANGED
@@ -6,6 +6,14 @@ interface SpecterOptions {
6
6
  shortcuts?: {
7
7
  activate?: string;
8
8
  };
9
+ /**
10
+ * Enable the "Send to Claude" button in the Specs panel. Batches every Spec to a
11
+ * local Specter MCP bridge (see `mcp-bridge/`) that Claude Code / Kiro pull from.
12
+ * `true` uses the default bridge at http://127.0.0.1:8787; pass `{ url }` to override.
13
+ */
14
+ claudeBridge?: boolean | {
15
+ url?: string;
16
+ };
9
17
  }
10
18
  declare function specter(options?: SpecterOptions): Plugin;
11
19