agent-relay-runner 0.112.0 → 0.113.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay-runner",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.113.0",
|
|
4
4
|
"description": "Unified provider lifecycle runner for Agent Relay",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"agent-relay-providers": "0.104.1",
|
|
24
|
-
"agent-relay-sdk": "0.2.
|
|
24
|
+
"agent-relay-sdk": "0.2.96",
|
|
25
25
|
"callmux": "0.23.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-relay-task
|
|
3
|
+
description: Use Agent Relay Task tools to create, update, and document durable work records. Use when coordinating multi-step work or when your brief was spawned from a Task.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agent Relay Task
|
|
7
|
+
|
|
8
|
+
Use Relay Task tools for durable work tracking instead of burying state in chat.
|
|
9
|
+
|
|
10
|
+
Coordinators:
|
|
11
|
+
|
|
12
|
+
- Create a Task before multi-step work with `relay_task_create`.
|
|
13
|
+
- Set `intent`, `complexity`, and useful `context`; add `doneWhen`, `dispatch`, refs, or dependencies when they clarify routing.
|
|
14
|
+
- Spawn workers from the Task so they inherit the Task context.
|
|
15
|
+
|
|
16
|
+
Workers:
|
|
17
|
+
|
|
18
|
+
- Use `relay_task_set_status` as work moves through `in_progress`, `blocked`, `done`, `failed`, or `canceled`.
|
|
19
|
+
- Use `relay_task_memory_replace_working_state` for current progress a retry agent needs.
|
|
20
|
+
- Use `relay_task_memory_append_decision` for durable choices and rationale.
|
|
21
|
+
- Use `relay_task_memory_append_ruled_out` for dead ends, failed approaches, and why they were rejected.
|
|
22
|
+
|
|
23
|
+
Useful reads and updates:
|
|
24
|
+
|
|
25
|
+
- `relay_task_get` and `relay_task_history` inspect the Task and audit timeline.
|
|
26
|
+
- `relay_task_update` refreshes intent, context, latest steer, doneWhen, complexity, or dispatch.
|
|
27
|
+
- `relay_task_record_gate` records tests, typecheck, docs, smoke, and other quality gates.
|
|
28
|
+
- `relay_task_dispatch` maps Task shape to a concrete spawn recommendation.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-relay-task
|
|
3
|
+
description: Use Agent Relay Task tools to create, update, and document durable work records. Use when coordinating multi-step work or when your brief was spawned from a Task.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agent Relay Task
|
|
7
|
+
|
|
8
|
+
Use Relay Task tools for durable work tracking instead of burying state in chat.
|
|
9
|
+
|
|
10
|
+
Coordinators:
|
|
11
|
+
|
|
12
|
+
- Create a Task before multi-step work with `relay_task_create`.
|
|
13
|
+
- Set `intent`, `complexity`, and useful `context`; add `doneWhen`, `dispatch`, refs, or dependencies when they clarify routing.
|
|
14
|
+
- Spawn workers from the Task so they inherit the Task context.
|
|
15
|
+
|
|
16
|
+
Workers:
|
|
17
|
+
|
|
18
|
+
- Use `relay_task_set_status` as work moves through `in_progress`, `blocked`, `done`, `failed`, or `canceled`.
|
|
19
|
+
- Use `relay_task_memory_replace_working_state` for current progress a retry agent needs.
|
|
20
|
+
- Use `relay_task_memory_append_decision` for durable choices and rationale.
|
|
21
|
+
- Use `relay_task_memory_append_ruled_out` for dead ends, failed approaches, and why they were rejected.
|
|
22
|
+
|
|
23
|
+
Useful reads and updates:
|
|
24
|
+
|
|
25
|
+
- `relay_task_get` and `relay_task_history` inspect the Task and audit timeline.
|
|
26
|
+
- `relay_task_update` refreshes intent, context, latest steer, doneWhen, complexity, or dispatch.
|
|
27
|
+
- `relay_task_record_gate` records tests, typecheck, docs, smoke, and other quality gates.
|
|
28
|
+
- `relay_task_dispatch` maps Task shape to a concrete spawn recommendation.
|