nda-triage
Rapid NDA screening with GREEN/YELLOW/RED classification. 10-point checklist for incoming NDAs. Use when triaging NDAs, screening non-disclosure agreements, or routing NDAs for approval.
What this skill does
> **⚠️ EXPERIMENTAL** — This skill is provided for educational and informational purposes only. It does NOT constitute legal advice. All responsibility for usage rests with the user. Consult qualified legal professionals before acting on any output. # NDA Triage Rapid NDA screening tool that classifies incoming NDAs as GREEN (standard approval), YELLOW (counsel review), or RED (significant issues). Uses a 10-point screening checklist to evaluate agreement structure, definitions, obligations, carveouts, and problematic provisions. --- ## Table of Contents - [Tools](#tools) - [NDA Screener](#nda-screener) - [NDA Checklist](#nda-checklist) - [Reference Guides](#reference-guides) - [Workflows](#workflows) - [Standard NDA Triage](#standard-nda-triage) - [Bulk NDA Processing](#bulk-nda-processing) - [Routing Recommendations](#routing-recommendations) - [Troubleshooting](#troubleshooting) - [Success Criteria](#success-criteria) - [Scope & Limitations](#scope--limitations) - [Anti-Patterns](#anti-patterns) - [Tool Reference](#tool-reference) --- ## Tools ### NDA Screener Scans NDA text for red flags and outputs GREEN/YELLOW/RED classification with reasoning. ```bash # Screen an NDA file python scripts/nda_screener.py nda_draft.txt # JSON output for integration python scripts/nda_screener.py incoming_nda.md --json # Save screening results python scripts/nda_screener.py nda_draft.txt --output screening.json --json ``` **What it detects:** - Missing standard carveouts (public knowledge, prior possession, independent development, third-party receipt, legal compulsion) - Non-solicitation and non-compete clauses - Perpetual confidentiality obligations - Overbroad definition of confidential information - Residuals clauses granting usage rights to ideas/concepts - IP assignment or license grants - Liquidated damages provisions - Unlimited audit rights - One-sided obligations **Classification Rules:** | Level | Criteria | Routing | |-------|----------|---------| | GREEN | All 5 carveouts present, no problematic provisions, standard structure | Business approver; no counsel needed | | YELLOW | 1-2 missing carveouts, minor problematic provisions, or non-standard terms | Legal counsel review within 48 hours | | RED | 3+ missing carveouts, non-compete/non-solicitation, IP assignment, perpetual term with no exit | Senior counsel review; do not sign | --- ### NDA Checklist Generates a compliance checklist for an NDA, checking all 10 screening criteria with pass/fail status. ```bash # Generate checklist for an NDA python scripts/nda_checklist.py nda_draft.txt # JSON output python scripts/nda_checklist.py nda_draft.txt --json # Save checklist python scripts/nda_checklist.py nda_draft.txt --output checklist.json --json ``` **10-Point Screening Criteria:** | # | Criterion | What It Checks | |---|-----------|---------------| | 1 | Agreement Structure | Mutual vs. one-way; parties identified; purpose stated | | 2 | Definition of Confidential Info | Scope, specificity, marking requirements | | 3 | Obligations | Standard of care, use restrictions, disclosure limits | | 4 | Standard Carveouts | 5 required: public knowledge, prior possession, independent development, third-party receipt, legal compulsion | | 5 | Permitted Disclosures | Representatives, advisors, affiliates with need-to-know | | 6 | Term & Duration | Reasonable term, survival period, obligations after expiry | | 7 | Return/Destruction | Obligation to return or destroy upon request/termination | | 8 | Remedies | Injunctive relief, damages, indemnification scope | | 9 | Problematic Provisions | Non-solicitation, non-compete, exclusivity, residuals, IP assignment, audit rights | | 10 | Governing Law | Jurisdiction, dispute resolution mechanism | --- ## Reference Guides ### NDA Screening Criteria `references/nda_screening_criteria.md` Complete evaluation reference covering: - All 10 screening criteria with detailed sub-items - GREEN/YELLOW/RED classification rules with specific examples - Common NDA issues with standard positions - Redline approaches for common problems --- ## Workflows ### Standard NDA Triage 1. **Receive NDA** -- Save as `.txt` or `.md` file 2. **Screen** -- Run `nda_screener.py` for quick RED/YELLOW/GREEN classification 3. **Checklist** -- Run `nda_checklist.py` for detailed 10-point evaluation 4. **Route** -- Follow routing recommendations based on classification 5. **Track** -- Log screening result and routing decision ### Bulk NDA Processing ```bash # Screen multiple NDAs for nda in ndas/*.txt; do echo "=== $nda ===" python scripts/nda_screener.py "$nda" echo "" done # Generate JSON report for all NDAs for nda in ndas/*.txt; do python scripts/nda_screener.py "$nda" --json --output "results/$(basename $nda .txt).json" done ``` --- ## Routing Recommendations | Classification | Approver | Timeline | Escalation | |---------------|----------|----------|------------| | GREEN | Business owner or designated approver | Same day; sign within 24 hours | None required | | YELLOW | Legal counsel review | 48-hour turnaround | Escalate to senior counsel if no response in 72 hours | | RED | Senior legal counsel | 5 business day turnaround | Escalate to General Counsel if deal-critical | ### GREEN Fast-Track Conditions All of the following must be true for GREEN classification: - Mutual NDA (both parties bound) - All 5 standard carveouts present - No non-solicitation, non-compete, or exclusivity clauses - No IP assignment or license grants - No residuals clause - Term is 2-5 years (not perpetual) - Return/destruction obligation present - Standard remedies (injunctive relief, no liquidated damages) ### RED Escalation Triggers Any one of the following triggers RED classification: - Non-compete clause of any scope - Non-solicitation clause covering employees or customers - IP assignment or broad license grant - Missing 3 or more standard carveouts - Perpetual obligations with no termination right - Liquidated damages for breach - Exclusivity provision --- ## Troubleshooting | Problem | Cause | Solution | |---------|-------|----------| | Screener classifies everything as YELLOW | NDA uses non-standard formatting that breaks pattern matching | Ensure NDA is clean plain text; remove PDF artifacts and headers/footers | | Missing carveouts false positive | Carveouts are present but use unusual language | Review the full "Exceptions" or "Exclusions" section manually; the screener checks common phrasings | | Non-compete not detected | Non-compete is embedded in definitions or obligations section rather than standalone | Search the full document for "compete", "competitive", "restrict" manually | | Checklist shows PASS but screener shows RED | Checklist evaluates presence; screener evaluates content quality | Use both tools together; the screener's RED overrides checklist PASS | | Script errors on large files | NDA text exceeds expected size (>100KB) | Ensure the file contains only the NDA text, not appendices or exhibits | --- ## Success Criteria - **NDA triage under 5 minutes:** Automated screening replaces 30-minute manual review. - **Zero missed RED-severity issues:** Every non-compete, IP assignment, and missing carveout is flagged. - **GREEN NDAs signed within 24 hours:** Fast-track routing eliminates bottleneck for standard agreements. - **YELLOW NDAs resolved within 48 hours:** Counsel review turnaround meets SLA. - **Consistent classification across reviewers:** 10-point checklist eliminates subjective "looks fine" approvals. - **100% of NDAs screened before routing:** No NDA reaches an approver without automated triage. --- ## Scope & Limitations **Covers:** - Pattern-based screening of NDA text for structural issues and problematic provisions - 10-point compliance checklist against standard NDA requirements - GREEN/YELLOW/RED classification with routing recommendations - Detection of non-solicitation, non-compete, IP assignment, residuals, and othe
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.