@wipcomputer/wip-ldm-os 0.4.65 → 0.4.66
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/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@ license: MIT
|
|
|
9
9
|
compatibility: Requires git, npm, node. Node.js 18+.
|
|
10
10
|
metadata:
|
|
11
11
|
display-name: "LDM OS"
|
|
12
|
-
version: "0.4.
|
|
12
|
+
version: "0.4.66"
|
|
13
13
|
homepage: "https://github.com/wipcomputer/wip-ldm-os"
|
|
14
14
|
author: "Parker Todd Brooks"
|
|
15
15
|
category: infrastructure
|
|
@@ -104,11 +104,11 @@ async function sendMessage(openclawDir, message, options) {
|
|
|
104
104
|
headers: {
|
|
105
105
|
Authorization: `Bearer ${token}`,
|
|
106
106
|
"Content-Type": "application/json",
|
|
107
|
-
"x-openclaw-scopes": "operator.read,operator.write"
|
|
107
|
+
"x-openclaw-scopes": "operator.read,operator.write",
|
|
108
|
+
"x-openclaw-session-key": `agent:${agentId}:main`
|
|
108
109
|
},
|
|
109
110
|
body: JSON.stringify({
|
|
110
111
|
model: `openclaw/${agentId}`,
|
|
111
|
-
user: "main",
|
|
112
112
|
messages: [
|
|
113
113
|
{
|
|
114
114
|
role: "user",
|
package/dist/bridge/cli.js
CHANGED
package/dist/bridge/core.js
CHANGED
package/package.json
CHANGED
package/src/bridge/core.ts
CHANGED
|
@@ -197,10 +197,10 @@ export async function sendMessage(
|
|
|
197
197
|
Authorization: `Bearer ${token}`,
|
|
198
198
|
"Content-Type": "application/json",
|
|
199
199
|
"x-openclaw-scopes": "operator.read,operator.write",
|
|
200
|
+
"x-openclaw-session-key": `agent:${agentId}:main`,
|
|
200
201
|
},
|
|
201
202
|
body: JSON.stringify({
|
|
202
203
|
model: `openclaw/${agentId}`,
|
|
203
|
-
user: "main",
|
|
204
204
|
messages: [
|
|
205
205
|
{
|
|
206
206
|
role: "user",
|