
NDA Generator Pro
## What it does
Generate a complete Non-Disclosure Agreement (NDA) in one call. Auto-detects mutual vs one-way, includes 17 standard clauses + 3 optional (non-solicit, IP, liquidated damages), adapts to US/UK/EU/CA jurisdictions. 100-point legal coverage scoring. NOT legal advice.
#Juridisch#Verkoop#HR
Beoordeling
Meer beoordelingen nodig
Verkocht
0
Gebruikswijze
Downloaden
What it does
Generate a complete Non-Disclosure Agreement (NDA) in one call. Auto-detects mutual vs one-way, includes 17 standard clauses + 3 optional (non-solicit, IP, liquidated damages), adapts to US/UK/EU/CA jurisdictions. 100-point legal coverage scoring. NOT legal advice.
Usage
import asyncio
from NDA_GENERATOR import generate_nda
party_a = {"name": "Acme Corp", "entity_type": "company", "country": "US"}
party_b = {"name": "John Smith", "entity_type": "individual", "country": "EU"}
options = {
"purpose": "Evaluating potential consulting engagement",
"mutual": True,
"term_years": 2,
"governing_law": "California, USA"
}
result = asyncio.run(generate_nda(party_a, party_b, options))
print(f"Score: {result['score']['total']}/100")```
Features
17 standard clauses (definitions, confidentiality, term, remedies, governing law, etc.)
3 optional clauses (non-solicit, IP, liquidated damages)
Auto-detect mutual vs one-way
Jurisdiction-specific notes (GDPR, PIPEDA, CCPA)
Signature blocks for both parties
100-point legal coverage scoring
Plain text + Markdown output
8 jurisdiction support
Pure Python — no API key
Standard clauses (17)
Definitions, Confidential Information, Exclusions, Obligations, Standard of Care, Permitted Disclosures, Return/Destruction, Term, No License, Remedies, No Warranty, Assignment, Entire Agreement, Severability, Notices, Governing Law, Counterparts.
Optional clauses
Non-Solicitation (12 months), IP Assignment, Liquidated Damages.
Testing
27/27 tests passing. Pure Python 3.10+, no external dependencies.
Disclaimer
NOT LEGAL ADVICE. Always have a qualified attorney review NDAs before signing.


