24 lines
630 B
YAML
24 lines
630 B
YAML
version: 1
|
|
|
|
# Root defaults all folders inherit unless a closer .ai-rules.yml overrides them.
|
|
file_associations:
|
|
"README.md": "readme"
|
|
"process/policies.yml": "policies"
|
|
|
|
rules:
|
|
readme:
|
|
outputs:
|
|
normalize:
|
|
path: "{repo}/README.md"
|
|
output_type: "readme_normalizer"
|
|
instruction: |
|
|
Ensure basic sections exist: Overview, Install, Usage, License. Be idempotent.
|
|
|
|
policies:
|
|
outputs:
|
|
validate:
|
|
path: "{dir}/policies.yml"
|
|
output_type: "policy_validator"
|
|
instruction: |
|
|
Validate YAML keys according to DESIGN.md Appendix A. Do not auto-edit.
|