| 1234567891011121314151617181920212223242526272829303132 |
- # 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/planning
- - tests/context-loading
- - tests/implementation
- - tests/delegation
- - tests/error-handling
- - tests/completion
- - tests/developer
- # Agent-specific expectations
- expectations:
- # Opencoder NOW requires text-based approval (updated prompt)
- requiresTextApproval: true
- # Uses tool permission system
- usesToolPermissions: true
- # Starts responses with "DIGGING IN..."
- responsePrefix: "DIGGING IN..."
- # Should load context before code implementation
- requiresContextLoading: true
|