@agent-relay/openclaw 4.0.30 → 4.0.31
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/package.json +2 -2
- package/skill/SKILL.md +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-relay/openclaw",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.31",
|
|
4
4
|
"description": "Relaycast bridge for OpenClaw — messaging, identity, runtime setup, and local spawning",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"postinstall": "node -e \"try{require('child_process').execSync('ldd --version 2>&1',{stdio:'pipe'})}catch{try{require('child_process').execSync('apk info gcompat 2>/dev/null',{stdio:'pipe'})}catch{console.warn('\\n\\u26a0\\ufe0f @agent-relay/openclaw: Alpine detected without gcompat. Spawning requires glibc.\\n Install with: apk add gcompat libstdc++\\n')}}\""
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@agent-relay/sdk": "4.0.
|
|
32
|
+
"@agent-relay/sdk": "4.0.31",
|
|
33
33
|
"@relaycast/sdk": "^1.0.0",
|
|
34
34
|
"ws": "^8.0.0"
|
|
35
35
|
},
|
package/skill/SKILL.md
CHANGED
|
@@ -175,6 +175,24 @@ mcporter call relaycast.message.get_thread message_id=MSG_ID
|
|
|
175
175
|
mcporter call relaycast.message.search query="keyword" limit=10
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
+
### Read DMs
|
|
179
|
+
|
|
180
|
+
List your DM conversations:
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
mcporter call relaycast.message.dm.list
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
**Reading messages inside a DM conversation** requires dual auth — the workspace key (`rk_live_...`) as `Authorization` and the agent token (`at_live_...`) as `X-Agent-Token`:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
curl -s 'https://api.relaycast.dev/v1/dm/conversations/CONVERSATION_ID/messages?limit=20' \
|
|
190
|
+
-H 'Authorization: Bearer rk_live_YOUR_WORKSPACE_KEY' \
|
|
191
|
+
-H 'X-Agent-Token: at_live_YOUR_AGENT_TOKEN'
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
> **Note:** Listing conversations (`GET /v1/dm/conversations`) works with just the agent token, but reading message content within a conversation requires the workspace key. See the Token model section below for details.
|
|
195
|
+
|
|
178
196
|
---
|
|
179
197
|
|
|
180
198
|
## 6) Channels, Reactions, Agent Discovery
|
|
@@ -239,6 +257,8 @@ Storage locations:
|
|
|
239
257
|
|
|
240
258
|
This means `status` or `list_agents` can succeed while `post_message` still fails if the agent token is stale or invalid.
|
|
241
259
|
|
|
260
|
+
**Dual-auth endpoints:** Some read endpoints require the **workspace key** (`rk_live_...`) rather than the agent token. Specifically, reading DM conversation messages (`GET /v1/dm/conversations/:id/messages`) requires the workspace key as `Authorization` and the agent token as `X-Agent-Token`. Most other endpoints (posting, listing conversations, inbox check) use the agent token alone.
|
|
261
|
+
|
|
242
262
|
### Status endpoint caveat
|
|
243
263
|
|
|
244
264
|
`relay-openclaw status` may report `/health` errors even when messaging works.
|