-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathe2e-opencode-inline-multi-agents.yaml
More file actions
52 lines (48 loc) · 2.21 KB
/
Copy pathe2e-opencode-inline-multi-agents.yaml
File metadata and controls
52 lines (48 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# E2E smoke test — OpenCode multi-agent parallel execution
# Verifies OpenCode's agents: adaptation with true multi-agent support:
# - ALL configured agents execute in parallel (not just first-wins)
# - Each agent's output is collected and aggregated
# - Agent definitions materialized as .opencode/agents/archon-<id>.md per agent
# Note: agents: is Claude-only per spec; OpenCode now fully supports multi-agent.
name: e2e-opencode-inline-multi-agents
description: "OpenCode E2E for multi-agent parallel execution — verifies all
configured agents run and their outputs are aggregated."
provider: opencode
model: opencode/big-pickle
nodes:
# Node with multiple agents: BOTH agents should execute and contribute output
- id: multi
prompt: "Echo back from your agent instruction."
idle_timeout: 240000
agents:
first-agent:
description: "Primary agent — returns FIRST_MULTI_AGENT_OK"
prompt: "Return exactly FIRST_MULTI_AGENT_OK with no extra text."
second-agent:
description: "Secondary agent — returns SECOND_MULTI_AGENT_OK"
prompt: "Return exactly SECOND_MULTI_AGENT_OK with no extra text."
# Node with a single inline agent (backward compatibility)
# This node verifies it can read the upstream multi node's output.
- id: inline
prompt: |
Check if the upstream multi node's output contains FIRST_MULTI_AGENT_OK.
If it does, return exactly INLINE_AGENT_OK. If not, return FAIL. No extra text.
Upstream multi node output:
$multi.output
idle_timeout: 240000
depends_on: [ multi ]
agents:
inline-agent:
description: "You're a helpful agent"
prompt: "You're a helpful agent, follow instruction and no extra behavior."
- id: assert
bash: |
multi_output=$multi.output
inline_output=$inline.output
echo "$multi_output" | grep -q "FIRST_MULTI_AGENT_OK" \
&& echo "$multi_output" | grep -q "SECOND_MULTI_AGENT_OK" \
&& echo "$inline_output" | grep -q "INLINE_AGENT_OK" \
&& echo "PASS: both agents in multi node executed parallel, inline agent verified" \
|| (echo "FAIL: multi/inline agent output assertion failed"; exit 1)
timeout: 60000
depends_on: [ multi, inline ]