simple-bash-test.yaml 480 B

12345678910111213141516171819202122232425262728
  1. id: simple-bash-test
  2. name: Simple Bash Command Test
  3. description: Test that agent can execute a simple bash command
  4. category: developer
  5. agent: openagent
  6. model: anthropic/claude-sonnet-4-5
  7. prompt: |
  8. List the files in the current directory using ls
  9. behavior:
  10. mustUseTools: [bash]
  11. minToolCalls: 1
  12. expectedViolations:
  13. - rule: approval-gate
  14. shouldViolate: false
  15. severity: error
  16. approvalStrategy:
  17. type: auto-approve
  18. timeout: 30000
  19. tags:
  20. - simple-test
  21. - bash