@stagewhisper/stagewhisper 0.59.0 → 0.61.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.js +1217 -89
- package/openclaw.plugin.json +29 -1
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "stagewhisper",
|
|
3
3
|
"name": "StageWhisper",
|
|
4
4
|
"description": "Turn live call moments into assistant tasks via StageWhisper",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.61.0",
|
|
6
6
|
"channels": [
|
|
7
7
|
"stagewhisper"
|
|
8
8
|
],
|
|
@@ -32,6 +32,30 @@
|
|
|
32
32
|
"type": "string",
|
|
33
33
|
"description": "Human-readable label for this connection",
|
|
34
34
|
"default": "OpenClaw"
|
|
35
|
+
},
|
|
36
|
+
"transport": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"enum": [
|
|
39
|
+
"sse",
|
|
40
|
+
"http"
|
|
41
|
+
],
|
|
42
|
+
"description": "Transport for assistant tasks: 'sse' (Signals path, subscribes to StageWhisper backend) or 'http' (Free / Founders-local-mode, accepts POSTs from a local desktop binary at POST /v1/incoming with reasons transcript_chunk, chat_message, system_prelude; transcript_chunk dispatches only when is_final=true and replies sync 200, chat_message acks 202 and delivers the reply via POST {callback.url}/tasks/{task_id} on the per-request loopback base URL).",
|
|
43
|
+
"default": "sse"
|
|
44
|
+
},
|
|
45
|
+
"httpHost": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Bind host for the HTTP transport listener (loopback only by default).",
|
|
48
|
+
"default": "127.0.0.1"
|
|
49
|
+
},
|
|
50
|
+
"httpPort": {
|
|
51
|
+
"type": "integer",
|
|
52
|
+
"description": "Port for the HTTP transport listener.",
|
|
53
|
+
"default": 8765
|
|
54
|
+
},
|
|
55
|
+
"httpToken": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Bearer token required on inbound HTTP transport requests (>=16 chars).",
|
|
58
|
+
"default": ""
|
|
35
59
|
}
|
|
36
60
|
},
|
|
37
61
|
"required": []
|
|
@@ -44,6 +68,10 @@
|
|
|
44
68
|
"apiBaseUrl": {
|
|
45
69
|
"label": "StageWhisper URL",
|
|
46
70
|
"placeholder": "https://api.stagewhisper.io"
|
|
71
|
+
},
|
|
72
|
+
"httpToken": {
|
|
73
|
+
"label": "HTTP transport token",
|
|
74
|
+
"sensitive": true
|
|
47
75
|
}
|
|
48
76
|
}
|
|
49
77
|
}
|