overseer.sync_docs
Validate and maintain consistent documentation formatting across PHASES.md and PHASE-XX.md files, ensuring required sections are properly structured and up to date.
Instructions
Ensures documentation consistency. Validates that PHASES.md and PHASE-XX.md files follow consistent formatting with required sections.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_root | Yes | Root path of the repository | |
| options | No |
Input Schema (JSON Schema)
{
"properties": {
"options": {
"properties": {
"dry_run": {
"default": false,
"description": "Show what would be changed without making changes",
"type": "boolean"
},
"update_api_docs": {
"default": true,
"description": "Update API documentation",
"type": "boolean"
},
"update_readme": {
"default": true,
"description": "Update README.md formatting",
"type": "boolean"
}
},
"type": "object"
},
"repo_root": {
"description": "Root path of the repository",
"type": "string"
}
},
"required": [
"repo_root"
],
"type": "object"
}