config.yaml 811 B

1234567891011121314151617181920212223242526272829303132
  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/planning
  13. - tests/context-loading
  14. - tests/implementation
  15. - tests/delegation
  16. - tests/error-handling
  17. - tests/completion
  18. - tests/developer
  19. # Agent-specific expectations
  20. expectations:
  21. # Opencoder NOW requires text-based approval (updated prompt)
  22. requiresTextApproval: true
  23. # Uses tool permission system
  24. usesToolPermissions: true
  25. # Starts responses with "DIGGING IN..."
  26. responsePrefix: "DIGGING IN..."
  27. # Should load context before code implementation
  28. requiresContextLoading: true