Contract Intelligence
The most expensive subscription mistakes hide in contract fine print: an auto-renewal you missed, a termination window that closed, an SLA that was never met, a penalty you did not anticipate. Contract Intelligence reads those contracts for you.
What it extracts
For every contract stored in the Digital Asset Vault, the AI Brain extracts and structures the clauses that carry risk:
| Clause | Why it matters |
|---|---|
| Renewal | When the contract renews and on what terms. |
| Auto-renewal | Whether it renews silently, and the notice required to stop it. |
| Termination | The window and process to exit. |
| SLA | The service levels you are owed. |
| Penalty | The cost of early exit or breach. |
Alert before the risk
Extracted clauses become dates and conditions on the Relationship, which means they can drive events and workflows:
name: termination-window-alert
on: schedule.daily
when: contract.terminationWindowOpensIn <= 45.days
steps:
- notify:
audience: procurement
message: "Termination window opens soon for {{ provider }}."
- create-task: { type: review, assignee: legal }
From document to decision
query {
subListRelationships(filter: { hasContract: true }) {
id
provider { name }
contract {
autoRenews
noticePeriodDays
nextRenewalDate
terminationWindow { opensAt closesAt }
penalties { trigger amount }
slaCommitments { metric target }
}
}
}
Where it fits
Contract Intelligence feeds the Risk Management Engine and the Enterprise Control Tower, turning a pile of PDFs into a live, queryable risk picture for the whole organization.
Contract Intelligence targets production by default. See Environment Selection for endpoint details.