| 1234567891011121314151617181920212223242526 |
- # Opencoder Agent Test Configuration
- agent: opencoder
- description: Development agent for direct code execution
- # Default settings for all opencoder tests
- defaults:
- model: anthropic/claude-sonnet-4-5
- timeout: 60000
- approvalStrategy:
- type: auto-approve
- # Test discovery paths
- testPaths:
- - tests/developer
- - tests/business
- - tests/edge-case
- # Agent-specific expectations
- expectations:
- # Opencoder executes tools directly without text-based approval
- requiresTextApproval: false
- # Uses tool permission system
- usesToolPermissions: true
- # Starts responses with "DIGGING IN..."
- responsePrefix: "DIGGING IN..."
|