overseer.advance_phase
Validate all deliverables are complete and advance to the next project phase, locking the current phase and setting the next phase as active.
Instructions
Advance a phase to the next phase after validating all deliverables are complete. Marks current phase as "locked" and sets next phase as current.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_root | Yes | Root path of the repository | |
| expected_current_phase | Yes | Phase ID that should currently be active (e.g., "01", "02") |
Input Schema (JSON Schema)
{
"properties": {
"expected_current_phase": {
"description": "Phase ID that should currently be active (e.g., \"01\", \"02\")",
"type": "string"
},
"repo_root": {
"description": "Root path of the repository",
"type": "string"
}
},
"required": [
"repo_root",
"expected_current_phase"
],
"type": "object"
}