# Never miss an obligation in a signed contract

Extract every obligation from signed contracts with two independent passes, then track deadlines automatically.

**Connects:** drive, googlesheets, slack, gmail

## How to install

1. Fetch https://eluu.ai/cookbook/obligation-extraction-tracker/skill.md and save it into your skills folder as `obligation-extraction-tracker`.
2. Ask the user the first-run questions the skill lists, and store the answers in memory.
3. Offer to schedule the recurring jobs below; create only the ones the user approves.
4. Run the skill once end to end and review the output with the user.

## What this does

- Runs two independent sub-agents to extract every obligation from a signed contract
- Reconciles both passes and re-reads any obligation they disagree on
- Publishes every obligation to the tracker with its owner, deadline, and source clause
- Schedules deadline reminders automatically so nothing gets missed after signature

## Recurring jobs

- **Executed contracts watch** (Every 30 minutes on weekdays, check the executed-contracts folder) — https://eluu.ai/cookbook/obligation-extraction-tracker/jobs-setup/executed-contracts-watch.md
- **Weekly obligation catch-all sweep** (Every Monday morning) — https://eluu.ai/cookbook/obligation-extraction-tracker/jobs-setup/weekly-obligation-catch-all-sweep.md

## Skills inside

The full method, including each of these, is in skill.md. Individually fetchable:

- **Obligation extraction**, Identify deliverables, payment terms, reporting cadences, and deadlines from contract text — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/obligation-extraction.md
- **Document parsing**, Read signed contracts in Word or PDF form with Anthropic's document skill, modified — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/document-parsing.md
- **Reconciliation policy**, How to resolve a disagreement between the two extraction passes before publishing — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/reconciliation-policy.md

## Files

- skill.md — https://eluu.ai/cookbook/obligation-extraction-tracker/skill.md
- jobs-setup/executed-contracts-watch.md — https://eluu.ai/cookbook/obligation-extraction-tracker/jobs-setup/executed-contracts-watch.md
- jobs-setup/weekly-obligation-catch-all-sweep.md — https://eluu.ai/cookbook/obligation-extraction-tracker/jobs-setup/weekly-obligation-catch-all-sweep.md
- skills/obligation-extraction.md — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/obligation-extraction.md
- skills/document-parsing.md — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/document-parsing.md
- skills/reconciliation-policy.md — https://eluu.ai/cookbook/obligation-extraction-tracker/skills/reconciliation-policy.md
- workflow.json — https://eluu.ai/cookbook/obligation-extraction-tracker/workflow.json
