Code RoomNDA clause-by-clause review
MediumPrep Room Coding #57

NDA clause-by-clause review

Vibe & agenticAI agents & automationSenior–Staff~16 min

Your legal team spends a third of its week on routine NDAs that almost always match the playbook. Design an agent that does the first-pass review — checking each incoming NDA clause by clause against your standard positions, marking what conforms, and escalating anything unusual to a lawyer. Where is the line between what it can clear and what it must never sign off alone, and how do you prove its clause-reading is reliable? Then pitch it: why should the general counsel trust this?

Implement
route_nda_first_pass(clause_lines: list[str], required_clause_types: list[str]) → str
Examples
in[["term=conforms","scope=conforms","residuals=conforms","governing_law=conforms"],["term","scope","residuals","governing_law"]]out"fast-track"
in[["term=conforms","scope=fallback","residuals=conforms","governing_law=conforms"],["term","scope","residuals","governing_law"]]out"lawyer-review"
in[["term=conforms","scope=conforms","non_solicit=deviates"],["term","scope","non_solicit"]]out"escalate:deviation"
What a strong answer looks like

Turn the fuzzy goal into a bounded agent task. Say what the agent reads, what it may do on its own versus draft for a human, and what it must never touch. Then earn the trust: how you’d verify it before rollout, and the pitch (the problem, what you built, why it matters).

0:00 of about 16 min

Agent build: design the agent in plain language (or narrate it). The coach grades the decomposition, the guardrails, the verification plan, and the pitch.

Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.