02-create-documentation.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. id: core-documentation-create
  2. name: "Documentation: Create Test - Write New Documentation"
  3. description: |
  4. Tests the documentation subagent's ability to create new documentation files.
  5. Validates:
  6. - Proposes documentation to create
  7. - Requests approval before writing
  8. - Creates well-structured markdown
  9. - Follows documentation standards
  10. - Summarizes changes made
  11. Critical Behavior:
  12. - MUST request approval before writing
  13. - MUST create valid markdown
  14. - MUST summarize what was created
  15. category: developer
  16. prompts:
  17. - text: |
  18. Create a simple README.md file in .tmp/test-fixtures/documentation/ that
  19. explains what this directory is for (test fixtures for documentation tests).
  20. Keep it concise and clear.
  21. approvalStrategy:
  22. type: auto-approve
  23. behavior:
  24. mustUseTools:
  25. - write
  26. minToolCalls: 1
  27. maxToolCalls: 5
  28. expectedViolations:
  29. - rule: approval-gate
  30. shouldViolate: false
  31. severity: error
  32. timeout: 90000
  33. tags:
  34. - documentation
  35. - create
  36. - write
  37. - core-subagent
  38. - approval-required