/ 01What Redline does
Redline Review is a contract-reading engine. You give it a document and a jurisdiction; it gives you back issues — each one with the rule that fired, the input that triggered it, and the confidence assigned. No black-box verdicts.
Four kinds of reading happen in the same run:
- Structural — the grammar, readability, and shape of the document
- Stylistic — citations, numbering, term consistency against a guide
- Substantive — internal contradictions, definition scope, cross-reference integrity
- Legal — 847+ rules across 127 jurisdictions, applied to the jurisdiction you name
The full mechanism is the subject of the eight-pass pipeline. For now: hand it a document.
/ 02Inputs: text, tier, jurisdiction
A first run needs three things and three things only.
textrequiredThe document body. UTF-8. Minimum 10 characters. You can also POST a DOCX to/api/v1/analyse-docxand the engine will extract canonical text first.tierA · B · CAis free and runs Structural · Style · Synthesis.Badds Legal pack and Consistency.Cadds Semantic, counterparty, and autopilot.jurisdictionrequired for B/COne of 127 codes. The most common:eng,sco,de,fr,us_ny,us_de,eu,sg,hk,au,ae_difc.
/ 03Running the analysis
Two ways: through the web SPA at /, or via the API:
curl -X POST https://engine.parelion.local:8765/api/v1/analyse \ -H "X-Redline-Key: \$REDLINE_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "1. The Provider shall...", "tier": "B", "jurisdiction": "eng", "enable_legal": true, "style_guide": "legal" }'
The default endpoint blocks for the duration of the analysis (≤60s). For long documents, use the streaming endpoint:
AnalysisResult./ 04Reading the result
Every response carries the same shape regardless of tier — fields populated only by higher tiers are present but empty.
The four numbers to read first
Then walk the issues array. Each issue carries a severity (critical · major · minor · suggestion), a confidence, the offending span, and a suggestion when one applies.
The keyboard, in the web SPA
j/k— next / previous issuea/d— accept / dismiss the current issuen/p— next / previous sentence in the document
/ 05Where to read next
If the result surfaced a legal-pack issue you disagree with — how to author a rule describes the schema and how to override or extend the corpus.
If you want the result in Word, with tracked changes — export formats and their guarantees covers the catalogue.
If you want this in your team's drafting workflow — Word add-in installation & SSO.
