simple-subagent-call.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. id: debug-simple-subagent-call
  2. name: "Debug: Simple Subagent Call"
  3. description: |
  4. Minimal test to validate subagent delegation tracking.
  5. Tests:
  6. 1. Parent agent (openagent) delegates to simple-responder
  7. 2. Simple-responder returns "AWESOME TESTING"
  8. 3. Eval framework captures both sessions
  9. This is a diagnostic test to understand:
  10. - How long delegation takes
  11. - What logs are generated
  12. - Whether child sessions are tracked
  13. - Where bottlenecks exist
  14. category: developer
  15. prompts:
  16. - text: |
  17. Call the simple-responder subagent and ask it to respond. Use the task tool to delegate.
  18. - text: |
  19. Yes, proceed with the delegation.
  20. delayMs: 2000
  21. approvalStrategy:
  22. type: auto-approve
  23. behavior:
  24. mustUseTools: [task]
  25. minToolCalls: 2
  26. maxToolCalls: 5
  27. expectedViolations:
  28. - rule: approval-gate
  29. shouldViolate: false
  30. severity: error
  31. - rule: delegation
  32. shouldViolate: false
  33. severity: error
  34. timeout: 90000
  35. tags:
  36. - debug
  37. - subagent
  38. - delegation
  39. - simple
  40. - multi-turn