agent-relay-plugin 0.10.21 → 0.10.22
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,7 +1,7 @@
|
|
|
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.22",
|
|
5
5
|
"agentRelayContracts": {
|
|
6
6
|
"providerPluginProtocol": 1
|
|
7
7
|
}
|
package/package.json
CHANGED
package/skills/reply/SKILL.md
CHANGED
|
@@ -20,10 +20,12 @@ 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 <
|
|
23
|
+
agent-relay /reply 42 --stdin < .agent-relay/sessions/$AGENT_RELAY_ID/tmp/reply.md
|
|
24
24
|
agent-relay /reply 42 --body-file response.md
|
|
25
25
|
```
|
|
26
26
|
|
|
27
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
28
|
|
|
29
|
+
The relay creates this per-session scratch dir for you (it is git-ignored locally), so staging there never pollutes the working tree and never collides with other agents. No cleanup needed — the dir is reaped when your session ends.
|
|
30
|
+
|
|
29
31
|
Do not send a separate Relay follow-up that only confirms the reply was sent. The CLI output is enough local confirmation.
|