@spikelabs/lobster-shell-plugin 0.2.2

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.
@@ -0,0 +1,6 @@
1
+ import {
2
+ OAuthFlow
3
+ } from "./chunk-RNTMVHEF.js";
4
+ export {
5
+ OAuthFlow
6
+ };
@@ -0,0 +1,22 @@
1
+ {
2
+ "id": "lobster-shell",
3
+ "name": "Lobster Shell",
4
+ "description": "Connect your OpenClaw agent to Lobster Shell cloud.",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "cloudUrl": {
10
+ "type": "string",
11
+ "description": "Override the default Lobster Shell cloud URL"
12
+ }
13
+ }
14
+ },
15
+ "uiHints": {
16
+ "cloudUrl": {
17
+ "label": "Cloud URL",
18
+ "help": "Leave empty to use the default (https://www.lobstershell.ai)",
19
+ "advanced": true
20
+ }
21
+ }
22
+ }
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@spikelabs/lobster-shell-plugin",
3
+ "version": "0.2.2",
4
+ "description": "Connect your OpenClaw agent to Lobster Shell cloud",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "files": [
8
+ "dist/",
9
+ "openclaw.plugin.json"
10
+ ],
11
+ "publishConfig": {
12
+ "registry": "https://registry.npmjs.org/",
13
+ "access": "public"
14
+ },
15
+ "openclaw": {
16
+ "extensions": [
17
+ "dist/index.js"
18
+ ],
19
+ "channel": {
20
+ "id": "lobster-shell",
21
+ "label": "Lobster Shell",
22
+ "selectionLabel": "Lobster Shell — AI avatar experience",
23
+ "docsPath": "/plugins/lobster-shell",
24
+ "docsLabel": "Setup guide",
25
+ "blurb": "Give your OpenClaw agent a face, voice, and video presence.",
26
+ "order": 50
27
+ },
28
+ "install": {
29
+ "npmSpec": "@spikelabs/lobster-shell-plugin",
30
+ "defaultChoice": "npm"
31
+ }
32
+ },
33
+ "scripts": {
34
+ "build": "tsup src/index.ts --format esm --dts --outDir dist",
35
+ "dev": "tsup src/index.ts --format esm --dts --outDir dist --watch",
36
+ "lint": "tsc --noEmit"
37
+ },
38
+ "keywords": [
39
+ "openclaw",
40
+ "plugin",
41
+ "lobster-shell",
42
+ "avatar",
43
+ "ai"
44
+ ],
45
+ "license": "MIT",
46
+ "packageManager": "pnpm@10.11.1",
47
+ "pnpm": {
48
+ "onlyBuiltDependencies": [
49
+ "esbuild"
50
+ ]
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^25.3.3",
54
+ "@types/ws": "^8.18.1",
55
+ "tsup": "^8.5.0",
56
+ "typescript": "^5.9.3"
57
+ },
58
+ "dependencies": {
59
+ "@spikelabsinc/user-api-client": "0.0.76",
60
+ "ably": "^2.19.0",
61
+ "ws": "^8.19.0"
62
+ }
63
+ }