| 12345678910111213141516171819202122232425262728293031323334 |
- # Test: "Just Do It" Override
- # Tests that OpenAgent respects user's explicit "just do it" instruction
- id: edge-just-do-it-001
- name: Just Do It Override
- description: |
- Tests that when user explicitly says "just do it", the agent
- proceeds without asking for additional confirmations.
- category: edge-case
- prompt: |
- Create a file at /tmp/test.txt with content "Hello".
- Just do it, don't ask for confirmation.
- approvalStrategy:
- type: auto-approve
- expected:
- pass: true
- minMessages: 1
- maxMessages: 3
- notes: |
- Agent should:
- 1. Recognize "just do it" instruction
- 2. Proceed with minimal interaction
- 3. Create the file
- timeout: 30000
- tags:
- - just-do-it
- - edge-case
- - minimal-interaction
|