Analyses enterprise contracts using a 4-agent sequential AI pipeline. Upload any contract — MSA, NDA, SOW, DPA — and receive a complete redline package with risk scores, counter-proposal language, and negotiation strategy in under 90 seconds.
- AI Agents: Claude Haiku via OpenRouter API
- Orchestration: Browser-based (HTML/JS) + Make.com blueprint
- Dashboard: Google Sheets
- Input: Paste contract text or upload via browser UI
| Agent | Role | Output |
|---|---|---|
| Agent 1 | Clause Extractor | Maps every significant clause with ID, type, exact text |
| Agent 2 | Risk Classifier | Scores each clause 0-100 for enterprise risk exposure |
| Agent 3 | Negotiation Strategist | Generates counter-proposal replacement language |
| Agent 4 | Redline Orchestrator | Synthesises final redline package + executive summary |
| Score | Tier | Status |
|---|---|---|
| 0–24 | LOW | APPROVED TO SIGN |
| 25–49 | MEDIUM | APPROVED WITH REDLINES |
| 50–74 | HIGH | REQUIRES NEGOTIATION |
| 75–100 | CRITICAL | DO NOT SIGN |
Unlike the Vendor Risk Engine, contract redlining has strict dependencies:
- You cannot score risk before extracting clauses
- You cannot write counter-proposals before scoring risk
- You cannot synthesise before all three are complete
The sequential chain enforces logical dependency explicitly — making the system more reliable than a single-prompt approach.
- Download app/contract-redline-engine.html
- Open in Notepad → find YOUR_OPENROUTER_KEY_HERE
- Replace with your sk-or-... key from openrouter.ai
- Save → open in Chrome (drag and drop or Ctrl+O)
- Click Load Demo Contract → Run Contract Analysis
- Wait ~75 seconds for all 4 agents to complete
See schemas/google-sheets-column-map.md for exact column configuration.
- Dependency-aware sequential architecture prevents logical errors
- Clause IDs (C1, C2...) create a shared reference key across all agents
- Structured JSON output maps directly to Sheets — no middleware needed