test-8-completion.yaml 749 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. id: handoff-001
  2. name: Completion Handoff
  3. description: |
  4. Tests that {agent-name} provides clear completion output.
  5. Verifies agent includes what was done, why, and results.
  6. category: completion
  7. agent: {agent-name}
  8. model: anthropic/claude-sonnet-4-5
  9. prompt: |
  10. Create a simple calculator function. When done, provide a summary.
  11. behavior:
  12. # Should complete implementation
  13. mustUseAnyOf: [[write, edit]]
  14. # Should provide clear output with what/why/results
  15. mustContain:
  16. - "what"
  17. - "why"
  18. - "result"
  19. - "complete"
  20. - "summary"
  21. expectedViolations:
  22. - rule: completion-output
  23. shouldViolate: false
  24. severity: warning
  25. approvalStrategy:
  26. type: auto-approve
  27. timeout: 45000
  28. tags:
  29. - completion
  30. - handoff
  31. - output