just-do-it.yaml 726 B

12345678910111213141516171819202122232425262728293031323334
  1. # Test: "Just Do It" Override
  2. # Tests that OpenAgent respects user's explicit "just do it" instruction
  3. id: edge-just-do-it-001
  4. name: Just Do It Override
  5. description: |
  6. Tests that when user explicitly says "just do it", the agent
  7. proceeds without asking for additional confirmations.
  8. category: edge-case
  9. prompt: |
  10. Create a file at /tmp/test.txt with content "Hello".
  11. Just do it, don't ask for confirmation.
  12. approvalStrategy:
  13. type: auto-approve
  14. expected:
  15. pass: true
  16. minMessages: 1
  17. maxMessages: 3
  18. notes: |
  19. Agent should:
  20. 1. Recognize "just do it" instruction
  21. 2. Proceed with minimal interaction
  22. 3. Create the file
  23. timeout: 30000
  24. tags:
  25. - just-do-it
  26. - edge-case
  27. - minimal-interaction