agent-relay-plugin 0.10.18 → 0.10.20
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.
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay",
|
|
3
3
|
"description": "Client connector for Agent Relay — auto-registers Claude Code sessions as agents and enables inter-agent messaging via a lightweight HTTP message bus",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.20",
|
|
5
|
+
"agentRelayContracts": {
|
|
6
|
+
"providerPluginProtocol": 1
|
|
7
|
+
}
|
|
5
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay-plugin",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.20",
|
|
4
4
|
"description": "Claude Code plugin for Agent Relay — auto-registers sessions as agents and enables inter-agent messaging",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/edimuj/agent-relay/tree/main/claude#readme",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"agent-relay-sdk": "0.2.
|
|
18
|
+
"agent-relay-sdk": "0.2.1"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
".claude-plugin/",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: react
|
|
3
|
+
description: Add or remove an Agent Relay reaction on a message. Use for lightweight acknowledgement, approval, thanks, or good-job responses when no text reply is needed.
|
|
4
|
+
argument-hint: "<messageId> <emoji> [--remove]"
|
|
5
|
+
allowed-tools: [Bash]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Agent Relay React
|
|
9
|
+
|
|
10
|
+
Run:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
agent-relay /react $ARGUMENTS
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Use reactions instead of text when the message only needs lightweight acknowledgement, approval, thanks, or "good job".
|
|
17
|
+
|
|
18
|
+
Do not use reactions when the sender asked a question, gave a new task, reported a bug, or needs a result in text.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: read-message
|
|
3
|
+
description: Fetch a full Agent Relay message by ID, including full body, attachments, metadata, and thread context. Use when a delivered Relay preview is truncated or when the user asks to inspect a relay message.
|
|
4
|
+
argument-hint: "<messageId> [--json|--body]"
|
|
5
|
+
allowed-tools: [Bash]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Agent Relay Read Message
|
|
9
|
+
|
|
10
|
+
Run:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
agent-relay get-message $ARGUMENTS
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Useful forms:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
agent-relay get-message 206
|
|
20
|
+
agent-relay get-message 206 --json
|
|
21
|
+
agent-relay get-message 206 --body
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Use `--body` when you only need the complete message text. Use `--json` when attachments, metadata, or thread context matter.
|
package/skills/reply/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: reply
|
|
3
|
-
description: Reply to an Agent Relay message by ID. Auto-routes to the sender and inherits channel context — no target needed. Use when the user invokes /reply or asks to reply to a specific relay message.
|
|
4
|
-
argument-hint: "<messageId> <message>"
|
|
3
|
+
description: Reply to an Agent Relay message by ID. Auto-routes to the sender and inherits channel context — no target needed. Use when the user invokes /reply or asks to reply to a specific relay message, especially with stdin/file for long replies.
|
|
4
|
+
argument-hint: "<messageId> <message|--stdin|--body-file PATH>"
|
|
5
5
|
allowed-tools: [Bash]
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -20,6 +20,10 @@ Examples:
|
|
|
20
20
|
```bash
|
|
21
21
|
agent-relay /reply 206 "Sounds good, I'll take a look"
|
|
22
22
|
agent-relay /reply 42 "Done — the fix is in commit abc123"
|
|
23
|
+
agent-relay /reply 42 --stdin < response.md
|
|
24
|
+
agent-relay /reply 42 --body-file response.md
|
|
23
25
|
```
|
|
24
26
|
|
|
25
|
-
|
|
27
|
+
Use `--stdin` or `--body-file` for long replies so shell quoting does not mangle the body. Oversized replies are automatically uploaded as an Agent Relay artifact and sent as an attached concise reply.
|
|
28
|
+
|
|
29
|
+
Do not send a separate Relay follow-up that only confirms the reply was sent. The CLI output is enough local confirmation.
|