13 AI agents find what's buried in your contracts โ cited, cross-referenced, exportable.
2.3K
Legal flags a risk. Finance flags another. We connect and cite. Open-source forensic M&A due diligence โ 13 AI agents read your entire data room across 9 specialist domains (Legal, Finance, Commercial, ProductTech, Cybersecurity, HR, Tax, Regulatory, ESG), cross-reference the findings no single reviewer connects, and trace every one to an exact page and verbatim quote.
๐ Documentationโ ยท ๐ Sample Reportโ ยท ๐ป Source Codeโ
docker pull zoharbabin/due-diligence-agents:latest
# Generate a deal configuration
docker run --rm \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
-v ./data_room:/data \
zoharbabin/due-diligence-agents auto-config "Buyer Corp" "Target Inc" --data-room /data
# Run the full analysis pipeline
docker run --rm \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
-v ./data_room:/data \
-v ./deal-config.json:/workspace/deal-config.json \
zoharbabin/due-diligence-agents run /workspace/deal-config.json
Output appears in your data room at _dd/forensic-dd/runs/latest/report/.
| Command | Purpose |
|---|---|
run deal-config.json | Full 38-step pipeline across 9 domains with 5 blocking quality gates |
run --quick-scan | Red flag triage (GREEN/YELLOW/RED) in minutes |
search prompts.json | Targeted contract questions with citations |
chat --report ... | Interactive multi-turn chat about findings |
assess /data | Data room quality check before running |
auto-config | AI-generated deal configuration from data room scan |
doctor [--config ...] [--probe] | Pre-flight: verify Bedrock/Vertex/gateway routing + validate a deal config |
cost <run_dir> | Per-provider / per-model cost rollup for a completed run |
Data Room โ Python Orchestrator (38 steps, 5 blocking gates)
โ 9 Specialist Agents (parallel) + Judge + Cross-Domain Analysis
โ Merge & Audit (dedup, citation verification, 31 QA checks)
โ Executive Synthesis (Go/No-Go signal)
โ HTML + Excel + JSON output
| Variable | Required | Description |
|---|---|---|
ANTHROPIC_API_KEY | Yes* | Anthropic API key |
AWS_PROFILE | Alt | AWS profile for Bedrock |
AWS_REGION | Alt | AWS region for Bedrock |
*Either Anthropic API key or AWS Bedrock credentials required.
services:
dd-agents:
image: zoharbabin/due-diligence-agents:latest
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
volumes:
- ./data_room:/data
- ./deal-config.json:/workspace/deal-config.json
command: run /workspace/deal-config.json
latest โ most recent stable releasex.y.z โ pin a specific release (matches the PyPI version; see Releasesโ )x.y โ latest patch within a minor seriesApache 2.0 โ free for commercial use.
Content type
Image
Digest
sha256:8d2b3e220โฆ
Size
318.3 MB
Last updated
about 2 months ago
docker pull zoharbabin/due-diligence-agents