id: ctx-simple-testing-approach name: "Context Loading: Testing Approach" description: | Simple test: Ask about testing strategy and verify agent loads context file before responding. Expected behavior: - Agent should read tests.md or testing.md BEFORE responding - Agent should reference project-specific testing standards Files created: None (read-only test) Working directory: evals/test_tmp/ category: developer agent: openagent model: anthropic/claude-sonnet-4-5 # Single prompt test prompt: "What's our testing strategy for this project?" # Expected behavior behavior: mustUseAnyOf: - [read] # Must use read tool requiresContext: true # Must load context before responding minToolCalls: 1 # At least one read # Expected violations expectedViolations: - rule: context-loading shouldViolate: false severity: error description: Must load tests.md or testing.md before responding # Approval strategy approvalStrategy: type: auto-approve timeout: 60000 tags: - context-loading - simple-test - read-only - testing