Install
openclaw skills install redline-contractReview and redline DOCX contracts paragraph by paragraph with tracked changes, clause-level risk analysis, and draft comment responses. Use when a user wants...
openclaw skills install redline-contractUse this skill to review contract .docx files at paragraph level and generate:
.docx.docx.review.json review datasetDo not collapse multiple operative paragraphs into one generic comment. Each non-empty paragraph or bullet must be reviewed on its own merits, with distinct risk analysis and replacement language where needed.
scripts/contract_review_pipeline.py init-review for each source .docx..review.json paragraph by paragraph.clauses[] entry, write a specific assessment tied to that paragraph only:
favorabilityrisk_levelrisk_summarywhy_it_mattersproposed_replacementopponent_comments[].materialize to create the amended .docx and risk report .docx.Initialize a review file:
python scripts/contract_review_pipeline.py init-review \
--input <contract.docx> \
--output <contract.review.json> \
--supported-party "<party>" \
--focus-area "<area-1>" \
--focus-area "<area-2>" \
--opponent-comment-author "<author-1>"
Materialize the outputs:
python scripts/contract_review_pipeline.py materialize \
--input <contract.docx> \
--review-json <contract.review.json> \
--amended-output <contract.amended.docx> \
--report-output <contract.risk-report.docx> \
--author "Codex Redline Reviewer"
references/review-json-schema.mdscripts/contract_review_pipeline.py