@meetlobster/openclaw-plugin 1.3.5 → 1.3.6

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.
@@ -4,7 +4,121 @@
4
4
  "version": "1.3.0",
5
5
  "description": "External Lobster plugin for OpenClaw chat-native meetings",
6
6
  "main": "dist/index.js",
7
- "configSchema": "./config.schema.json",
7
+ "configSchema": {
8
+ "$schema": "http://json-schema.org/draft-07/schema#",
9
+ "title": "LobsterOpenClawPluginConfig",
10
+ "type": "object",
11
+ "additionalProperties": false,
12
+ "properties": {
13
+ "workerBaseUrl": {
14
+ "type": "string",
15
+ "minLength": 1
16
+ },
17
+ "workerHost": {
18
+ "type": "string",
19
+ "minLength": 1
20
+ },
21
+ "workerPort": {
22
+ "type": "integer",
23
+ "minimum": 1,
24
+ "maximum": 65535
25
+ },
26
+ "adapterToken": {
27
+ "type": "string",
28
+ "minLength": 8
29
+ },
30
+ "workerEntry": {
31
+ "type": "string",
32
+ "minLength": 1
33
+ },
34
+ "autoSpawnWorker": {
35
+ "type": "boolean"
36
+ },
37
+ "hookUrl": {
38
+ "type": "string",
39
+ "minLength": 1
40
+ },
41
+ "hooksToken": {
42
+ "type": "string",
43
+ "minLength": 8
44
+ },
45
+ "recallSigningSecret": {
46
+ "type": "string",
47
+ "minLength": 8
48
+ },
49
+ "recallApiKey": {
50
+ "type": "string",
51
+ "minLength": 1
52
+ },
53
+ "recallApiBaseUrl": {
54
+ "type": "string",
55
+ "minLength": 1
56
+ },
57
+ "cloudflaredBinary": {
58
+ "type": "string",
59
+ "minLength": 1
60
+ },
61
+ "cloudflaredEnabled": {
62
+ "type": "boolean"
63
+ },
64
+ "transcriptQuietMs": {
65
+ "type": "integer",
66
+ "minimum": 1000
67
+ },
68
+ "defaultVisibilityMode": {
69
+ "type": "string",
70
+ "enum": [
71
+ "private",
72
+ "shared"
73
+ ]
74
+ },
75
+ "ambiguityFallbackMode": {
76
+ "type": "string",
77
+ "enum": [
78
+ "private",
79
+ "shared"
80
+ ]
81
+ },
82
+ "defaultBotName": {
83
+ "type": "string",
84
+ "minLength": 1
85
+ },
86
+ "intelligenceFlushMs": {
87
+ "type": "integer",
88
+ "minimum": 1000
89
+ },
90
+ "intelligenceMaxChunks": {
91
+ "type": "integer",
92
+ "minimum": 1
93
+ },
94
+ "intelligenceContextWindow": {
95
+ "type": "integer",
96
+ "minimum": 1
97
+ },
98
+ "workspaceDir": {
99
+ "type": "string"
100
+ },
101
+ "intelligenceTimeoutMs": {
102
+ "type": "integer",
103
+ "minimum": 1000
104
+ },
105
+ "intelligenceThinkLevel": {
106
+ "type": "string"
107
+ },
108
+ "useEmbeddedAgent": {
109
+ "type": "boolean"
110
+ },
111
+ "wakeMainSession": {
112
+ "type": "boolean"
113
+ }
114
+ },
115
+ "required": [
116
+ "adapterToken",
117
+ "hookUrl",
118
+ "hooksToken",
119
+ "recallSigningSecret"
120
+ ]
121
+ },
8
122
  "permissions": [
9
123
  "commands",
10
124
  "resources",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetlobster/openclaw-plugin",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [