@clawchatsai/connector 0.0.3 → 0.0.4

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.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  *
10
10
  * Spec: specs/multitenant-p2p.md sections 6.1-6.2
11
11
  */
12
- export declare const PLUGIN_ID = "tunnel";
12
+ export declare const PLUGIN_ID = "connector";
13
13
  export declare const PLUGIN_VERSION = "0.0.1";
14
14
  interface PluginServiceContext {
15
15
  stateDir: string;
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import { dispatchRpc } from './shim.js';
18
18
  import { checkForUpdates, performUpdate } from './updater.js';
19
19
  // Inline from shared/api-version.ts to avoid rootDir conflict
20
20
  const CURRENT_API_VERSION = 1;
21
- export const PLUGIN_ID = 'tunnel';
21
+ export const PLUGIN_ID = 'connector';
22
22
  export const PLUGIN_VERSION = '0.0.1';
23
23
  /** Max DataChannel message size (~256KB, leave room for envelope) */
24
24
  const MAX_DC_MESSAGE_SIZE = 256 * 1024;
@@ -516,7 +516,7 @@ const plugin = {
516
516
  register(api) {
517
517
  // Background service: signaling + gateway bridge + future WebRTC
518
518
  api.registerService({
519
- id: 'shellchats-service',
519
+ id: 'connector-service',
520
520
  start: (ctx) => startShellChat(ctx, api),
521
521
  stop: (ctx) => stopShellChat(ctx),
522
522
  });
@@ -1,7 +1,7 @@
1
1
  {
2
- "id": "shellchat",
3
- "name": "ShellChat",
4
- "description": "Connects your OpenClaw gateway to ShellChat via WebRTC P2P",
2
+ "id": "connector",
3
+ "name": "ShellChats",
4
+ "description": "Connects your OpenClaw gateway to ShellChats via WebRTC P2P",
5
5
  "kind": "integration",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawchatsai/connector",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "description": "ShellChat OpenClaw plugin — P2P tunnel + local API bridge",
6
6
  "main": "dist/index.js",