ctx-simple-documentation-format.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. id: ctx-simple-documentation-format
  2. name: "Context Loading: Documentation Format"
  3. description: |
  4. Simple test: Ask about documentation format and verify agent loads context file before responding.
  5. Expected behavior:
  6. - Agent should read docs.md or documentation.md BEFORE responding
  7. - Agent should reference project-specific documentation standards
  8. Files created: None (read-only test)
  9. Working directory: evals/test_tmp/
  10. category: developer
  11. agent: openagent
  12. model: anthropic/claude-sonnet-4-5
  13. # Single prompt test
  14. prompt: "What format should I use for documentation in this project?"
  15. # Expected behavior
  16. behavior:
  17. mustUseAnyOf:
  18. - [read] # Must use read tool
  19. requiresContext: true # Must load context before responding
  20. minToolCalls: 1 # At least one read
  21. # Expected violations
  22. expectedViolations:
  23. - rule: context-loading
  24. shouldViolate: false
  25. severity: error
  26. description: Must load docs.md or documentation.md before responding
  27. # Approval strategy
  28. approvalStrategy:
  29. type: auto-approve
  30. timeout: 60000
  31. tags:
  32. - context-loading
  33. - simple-test
  34. - read-only
  35. - documentation