config.yaml 634 B

1234567891011121314151617181920212223242526
  1. # Opencoder Agent Test Configuration
  2. agent: opencoder
  3. description: Development agent for direct code execution
  4. # Default settings for all opencoder tests
  5. defaults:
  6. model: anthropic/claude-sonnet-4-5
  7. timeout: 60000
  8. approvalStrategy:
  9. type: auto-approve
  10. # Test discovery paths
  11. testPaths:
  12. - tests/developer
  13. - tests/business
  14. - tests/edge-case
  15. # Agent-specific expectations
  16. expectations:
  17. # Opencoder executes tools directly without text-based approval
  18. requiresTextApproval: false
  19. # Uses tool permission system
  20. usesToolPermissions: true
  21. # Starts responses with "DIGGING IN..."
  22. responsePrefix: "DIGGING IN..."