Install
openclaw skills install brd-reviewerReview Business Requirements Documents in `.docx` format by reading the existing BRD, extracting paragraph-level context, drafting clarification questions for unclear statements, and producing a final Word document that combines comments and tracked changes. Use when the user wants a BRD reviewed, challenged for ambiguity, or redlined with proposed wording improvements while preserving Word-native review features.
openclaw skills install brd-reviewerReview a BRD paragraph by paragraph, capture clarification questions for ambiguous or incomplete requirements, and generate a single .docx with Word comments plus tracked revisions.
Prefer the bundled pipeline so the final deliverable is a Word-native review artifact instead of chat-only notes.
.docx path.python scripts/brd_review_pipeline.py init-review \
--input <brd.docx> \
--output <brd.review.json>
paragraphs[] item, keep paragraph_index, style_id, heading_path, and source_text unchanged.needs_comment to true when the paragraph is unclear, incomplete, internally inconsistent, or missing acceptance criteria, data definitions, ownership, dependencies, assumptions, or edge cases.comment_question as a concise reviewer question suitable for a Word comment.needs_revision to true when the paragraph should be rewritten for precision, completeness, grammar, or testability.proposed_replacement as full replacement language, not fragments.issue_tags to make the reason explicit. Prefer tags such as ambiguity, scope, actor, data, workflow, exception, dependency, acceptance-criteria, nonfunctional, term-definition, or conflict.python scripts/brd_review_pipeline.py materialize \
--input <brd.docx> \
--review-json <brd.review.json> \
--output <brd.reviewed.docx> \
--author "Codex BRD Reviewer"
needs_comment=true.needs_revision=true.$doc skill workflow to render and visually inspect the result before delivery.<name>.review.json<name>.reviewed.docx.docx is the primary deliverable.references/review-json-schema.mdscripts/brd_review_pipeline.pyInstall once if missing:
python -m pip install python-docx lxml