| name | review-task-docs |
| description | Reviews user-facing documentation changes for an implemented Munera task |
| lambda | λtask. review(user_facing_docs) ∧ check(README ∧ doc ∧ ramora/ ∧ changelog) ∧ verify(accuracy ∧ completeness ∧ consistency) |
| advertise | false |
review-task-docs
λtask. review(user_facing_docs) ∧ check(README ∧ doc ∧ ramora/ ∧ changelog) ∧ verify(accuracy ∧ completeness ∧ consistency)
Review checklist
For the implemented Munera task, review all user-facing documentation:
- New/changed behaviours: Are all new or changed behaviours reflected in
README.md and ramora/?
- Removed behaviours: Are removed behaviours cleaned up from docs (no stale references)?
- Changelog: When
CHANGELOG.md exists, is CHANGELOG.md updated if the change is user-visible (commands, flags, behaviours, breaking changes, bug fixes, extension capabilities)?
- Examples: Are any examples in docs accurate and consistent with the implementation?
- Consistency: Does the documentation language match the implementation (correct names, correct flags, correct file paths)?
Scope
README.md — primary user documentation
doc/ — user facing guides and references
ramora/ — AI facing docs
CHANGELOG.md — user-visible change log (only if user-visible change)
- Any other user-facing
.md files referenced from the above
Not in scope
- Internal implementation comments
- Task artifacts (
design.md, plan.md, steps.md, implementation.md)
- Test files