General counsel advisor

General Counsel advisory for startups: contract review (MSA, SaaS, NDA, DPA, employment), IP strategy, term sheet decoding, and regulatory landscape mapping.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/general-counsel-advisor, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/c-level-advisor/general-counsel-advisor/skills/general-counsel-advisor#main ~/.claude/skills/general-counsel-advisor

For one project only, change the path to .claude/skills/general-counsel-advisor. This skill also uses contract_risk_scanner.py, term_sheet_analyzer.py, contracts_playbook.md, ip_and_regulatory.md, term_sheet_decoder.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of General counsel advisor

Show the full text162 lines
namedescriptionlicensemetadata
general-counsel-advisorGeneral Counsel advisory for startups: contract review (MSA, SaaS, NDA, DPA, employment), IP strategy, term sheet decoding, and regulatory landscape mapping. Use when reviewing any contract or term sheet, deciding when to engage outside counsel, defining IP strategy, evaluating regulatory exposure (HIPAA, GDPR, FDA, fintech), or when user mentions general counsel, GC, legal review, contract risk, term sheet, IP assignment, or regulatory exposure. NOT a substitute for licensed counsel — surfaces questions to bring to qualified attorneys.MIT version: 1.0.0 author: Alireza Rezvani category: c-level domain: general-counsel-leadership updated: 2026-05-12 python-tools: contract_risk_scanner.py, term_sheet_analyzer.py frameworks: contract-review, ip-strategy, term-sheet-decoding, regulatory-mapping

General Counsel Advisor

Strategic legal frameworks for startup General Counsels and founders without one. Contract risk, IP strategy, term sheet decoding, regulatory landscape.

This is not legal advice. It surfaces the right questions to bring to qualified outside counsel and catches the obvious traps before they reach a signature. Treat every output as a starting point for a conversation with a licensed attorney, not as a substitute for one.

Keywords

general counsel, GC, legal review, contract review, MSA, SaaS agreement, NDA, DPA, employment agreement, contractor agreement, IP assignment, invention assignment, open source license, OSS compliance, term sheet, liquidation preference, anti-dilution, option pool, vesting, acceleration, drag-along, pro-rata, board composition, regulatory, HIPAA, GDPR, CCPA, FDA, MDR, fintech, BSA/AML, money transmitter, AI Act, indemnity, liability cap, force majeure, auto-renewal, choice of law, venue, non-compete, non-solicit

Quick Start

# Scan a contract for risky clauses (uses bundled sample if no path given)
python scripts/contract_risk_scanner.py
python scripts/contract_risk_scanner.py path/to/contract.txt

# Analyze a term sheet for founder-friendliness
python scripts/term_sheet_analyzer.py
python scripts/term_sheet_analyzer.py path/to/term_sheet.json

Key Questions (ask these first)

  • Who owns the IP being created or shared? (Founders forget that contractors don't auto-assign IP without a written clause.)
  • What's the liability cap, and what's carved out? (Standard: 12 months of fees, with carve-outs for IP infringement, data breach, willful misconduct.)
  • Is there a DPA in place if any personal data flows? (GDPR, CCPA, state laws — non-negotiable if EU/CA data is touched.)
  • What's the termination right, notice period, and auto-renewal trap? (5-year auto-renew with 60-day notice is a common founder mistake.)
  • Does this contract or product launch trigger a new regulatory regime? (Healthcare → HIPAA. Fintech → BSA/AML. Medical device → FDA/MDR.)
  • For term sheets: liquidation preference, pre-money option pool, anti-dilution flavor? (Three places where 5% of founder economics can quietly disappear.)

Core Responsibilities

1. Contract Review

Standard contracts a startup signs in its first 5 years:

  • Vendor MSA — Master Service Agreement (cloud, tooling, services)
  • Customer SaaS Agreement — your standard customer paper + customer redlines
  • NDA — mutual + one-way, with carve-outs for residuals + independent development
  • DPA — Data Processing Agreement (required when personal data flows)
  • Employment Agreement — offer letter, IP assignment, non-compete (where enforceable), arbitration
  • Contractor / 1099 Agreement — IP assignment is critical; misclassification risk
  • Equity Agreements — option grants, RSU agreements, advisor grants (FAST template, YC SAFE for advisors)

Run contract_risk_scanner.py on the text. It flags the 12 most common founder-killer clauses.

2. IP Strategy
  • Invention assignment — every employee and contractor signs one. No exceptions.
  • Open source license compliance — track every OSS dependency's license; AGPL and GPL trigger copyleft obligations.
  • Trade secrets — define what's protected and how (clean room dev, access controls, NDAs).
  • Patents — file provisional within 12 months of disclosure; PCT for international.
  • Trademarks — register the word mark first, design mark second; clear before launch.
  • Copyright — automatic on creation, but register for statutory damages eligibility.

See references/ip_and_regulatory.md.

3. Term Sheet Decoding

When a term sheet arrives, the difference between a founder-friendly and founder-hostile sheet often hides in three clauses:

  • Liquidation preference — 1x non-participating is standard; 1x participating or 2x is hostile
  • Pre-money vs post-money option pool — pre-money pool dilutes founders; post-money dilutes everyone proportionally
  • Anti-dilution — broad-based weighted average is standard; full ratchet is hostile

Run term_sheet_analyzer.py to get a 0-100 founder-friendliness score with flags.

4. Regulatory Landscape

When to engage outside counsel before committing:

Trigger Regime First Step
Healthcare data HIPAA, HITECH, state breach laws Specialist health-tech counsel
Cardholder data PCI DSS (industry standard, not law, but contractually required) QSA + counsel
Money movement BSA/AML, state money-transmitter (50-state patchwork) Fintech specialist
Medical device claims FDA 510(k) / De Novo / PMA, MDR (EU), ISO 13485 Medical-device specialist
EU residents' personal data GDPR + EU AI Act if AI is deployed EU privacy counsel
California residents CCPA / CPRA Privacy generalist
Securities (tokens, equity crowdfunding) SEC rules (Reg D, Reg A+, Reg CF) Securities counsel
Defense / aerospace customers ITAR, EAR, DFARS, CMMC Export-control counsel
AI in EU EU AI Act (risk-tiered) EU privacy + product counsel
AI for hiring (NYC, CO, IL) Local bias-audit laws Employment counsel

See references/ip_and_regulatory.md for sequencing.

Workflows

Workflow 1: Contract Review
  1. Save the contract as plain text
  2. Run contract_risk_scanner.py path/to/contract.txt
  3. For each HIGH risk finding, draft a counter-proposal
  4. Bring the redline + counter-proposals to outside counsel
  5. Log the decision via /cs:decide
Workflow 2: Term Sheet Response
  1. Save the term sheet as a JSON file matching the schema in term_sheet_analyzer.py --help
  2. Run python scripts/term_sheet_analyzer.py path/to/term_sheet.json
  3. Review the founder-friendliness score and per-clause flags
  4. Negotiate the worst 3 clauses (don't try to win all 20)
  5. Always have a securities/venture attorney review before signing
  6. Log via /cs:decide with /cs:freeze 30 to prevent regret-driven re-opening
Workflow 3: IP Hygiene Audit
  1. Confirm every employee and contractor (past 12 months) signed invention assignment
  2. Run an OSS license inventory (pip-licenses, license-checker for npm)
  3. Map AGPL/GPL dependencies and confirm compliance (or remove)
  4. File provisional patents on novel inventions (12-month deadline from disclosure)
  5. Register word-mark trademarks for the product name
Workflow 4: Regulatory Trigger Assessment
  1. List planned product features for the next 12 months
  2. Map each feature to the trigger table in this document
  3. For any HIPAA / FDA / fintech trigger, engage a specialist counsel before building
  4. Document the regulatory roadmap and budget alongside the product roadmap
  5. Pair with cs-ciso-advisor for ISO 27001 / SOC 2 sequencing

Output Standard (when invoked via /cs:gc-review)

**Bottom Line:** [sign / negotiate / do not sign]
**The Risks:** [3 highest-severity issues]
**Counter-Proposals:** [specific language]
**Outside Counsel Action Items:** [what to bring to the attorney]
**Your Decision:** [the call only the founder can make]

Adjacent Skills

  • c-level-advisor/skills/ciso-advisor/ — Compliance overlap (SOC 2, ISO 27001, HIPAA technical safeguards)
  • c-level-advisor/skills/cfo-advisor/ — Term sheet → dilution math
  • c-level-advisor/skills/ma-playbook/ — Acquisition agreements, integration playbooks
  • ra-qm-team/ — ISO 13485, MDR, FDA 510(k), GDPR execution
  • c-level-agents/skills/gc-review/SKILL.md — /cs:gc-review slash command

References


Version: 1.0.0 Status: Production Ready Disclaimer: Not legal advice. Always engage qualified counsel for binding decisions.

1---
2name: "general-counsel-advisor"
3description: "General Counsel advisory for startups: contract review (MSA, SaaS, NDA, DPA, employment), IP strategy, term sheet decoding, and regulatory landscape mapping. Use when reviewing any contract or term sheet, deciding when to engage outside counsel, defining IP strategy, evaluating regulatory exposure (HIPAA, GDPR, FDA, fintech), or when user mentions general counsel, GC, legal review, contract risk, term sheet, IP assignment, or regulatory exposure. NOT a substitute for licensed counsel — surfaces questions to bring to qualified attorneys."
4license: MIT
5metadata:
6 version: 1.0.0
7 author: Alireza Rezvani
8 category: c-level
9 domain: general-counsel-leadership
10 updated: 2026-05-12
11 python-tools: contract_risk_scanner.py, term_sheet_analyzer.py
12 frameworks: contract-review, ip-strategy, term-sheet-decoding, regulatory-mapping
13---
14 
15# General Counsel Advisor
16 
17Strategic legal frameworks for startup General Counsels and founders without one. Contract risk, IP strategy, term sheet decoding, regulatory landscape.
18 
19This is **not legal advice**. It surfaces the right questions to bring to qualified outside counsel and catches the obvious traps before they reach a signature. Treat every output as a starting point for a conversation with a licensed attorney, not as a substitute for one.
20 
21## Keywords
22 
23general counsel, GC, legal review, contract review, MSA, SaaS agreement, NDA, DPA, employment agreement, contractor agreement, IP assignment, invention assignment, open source license, OSS compliance, term sheet, liquidation preference, anti-dilution, option pool, vesting, acceleration, drag-along, pro-rata, board composition, regulatory, HIPAA, GDPR, CCPA, FDA, MDR, fintech, BSA/AML, money transmitter, AI Act, indemnity, liability cap, force majeure, auto-renewal, choice of law, venue, non-compete, non-solicit
24 
25## Quick Start
26 
27```bash
28# Scan a contract for risky clauses (uses bundled sample if no path given)
29python scripts/contract_risk_scanner.py
30python scripts/contract_risk_scanner.py path/to/contract.txt
31 
32# Analyze a term sheet for founder-friendliness
33python scripts/term_sheet_analyzer.py
34python scripts/term_sheet_analyzer.py path/to/term_sheet.json
35```
36 
37## Key Questions (ask these first)
38 
39- **Who owns the IP being created or shared?** (Founders forget that contractors don't auto-assign IP without a written clause.)
40- **What's the liability cap, and what's carved out?** (Standard: 12 months of fees, with carve-outs for IP infringement, data breach, willful misconduct.)
41- **Is there a DPA in place if any personal data flows?** (GDPR, CCPA, state laws — non-negotiable if EU/CA data is touched.)
42- **What's the termination right, notice period, and auto-renewal trap?** (5-year auto-renew with 60-day notice is a common founder mistake.)
43- **Does this contract or product launch trigger a new regulatory regime?** (Healthcare → HIPAA. Fintech → BSA/AML. Medical device → FDA/MDR.)
44- **For term sheets: liquidation preference, pre-money option pool, anti-dilution flavor?** (Three places where 5% of founder economics can quietly disappear.)
45 
46## Core Responsibilities
47 
48### 1. Contract Review
49 
50Standard contracts a startup signs in its first 5 years:
51 
52- **Vendor MSA** — Master Service Agreement (cloud, tooling, services)
53- **Customer SaaS Agreement** — your standard customer paper + customer redlines
54- **NDA** — mutual + one-way, with carve-outs for residuals + independent development
55- **DPA** — Data Processing Agreement (required when personal data flows)
56- **Employment Agreement** — offer letter, IP assignment, non-compete (where enforceable), arbitration
57- **Contractor / 1099 Agreement** — IP assignment is critical; misclassification risk
58- **Equity Agreements** — option grants, RSU agreements, advisor grants (FAST template, YC SAFE for advisors)
59 
60**Run** `contract_risk_scanner.py` on the text. It flags the 12 most common founder-killer clauses.
61 
62### 2. IP Strategy
63 
64- **Invention assignment** — every employee and contractor signs one. No exceptions.
65- **Open source license compliance** — track every OSS dependency's license; AGPL and GPL trigger copyleft obligations.
66- **Trade secrets** — define what's protected and how (clean room dev, access controls, NDAs).
67- **Patents** — file provisional within 12 months of disclosure; PCT for international.
68- **Trademarks** — register the word mark first, design mark second; clear before launch.
69- **Copyright** — automatic on creation, but register for statutory damages eligibility.
70 
71See `references/ip_and_regulatory.md`.
72 
73### 3. Term Sheet Decoding
74 
75When a term sheet arrives, the difference between a founder-friendly and founder-hostile sheet often hides in three clauses:
76 
77- **Liquidation preference** — 1x non-participating is standard; 1x participating or 2x is hostile
78- **Pre-money vs post-money option pool** — pre-money pool dilutes founders; post-money dilutes everyone proportionally
79- **Anti-dilution** — broad-based weighted average is standard; full ratchet is hostile
80 
81**Run** `term_sheet_analyzer.py` to get a 0-100 founder-friendliness score with flags.
82 
83### 4. Regulatory Landscape
84 
85When to engage outside counsel **before** committing:
86 
87| Trigger | Regime | First Step |
88|---|---|---|
89| Healthcare data | HIPAA, HITECH, state breach laws | Specialist health-tech counsel |
90| Cardholder data | PCI DSS (industry standard, not law, but contractually required) | QSA + counsel |
91| Money movement | BSA/AML, state money-transmitter (50-state patchwork) | Fintech specialist |
92| Medical device claims | FDA 510(k) / De Novo / PMA, MDR (EU), ISO 13485 | Medical-device specialist |
93| EU residents' personal data | GDPR + EU AI Act if AI is deployed | EU privacy counsel |
94| California residents | CCPA / CPRA | Privacy generalist |
95| Securities (tokens, equity crowdfunding) | SEC rules (Reg D, Reg A+, Reg CF) | Securities counsel |
96| Defense / aerospace customers | ITAR, EAR, DFARS, CMMC | Export-control counsel |
97| AI in EU | EU AI Act (risk-tiered) | EU privacy + product counsel |
98| AI for hiring (NYC, CO, IL) | Local bias-audit laws | Employment counsel |
99 
100See `references/ip_and_regulatory.md` for sequencing.
101 
102## Workflows
103 
104### Workflow 1: Contract Review
1051. Save the contract as plain text
1062. Run `contract_risk_scanner.py path/to/contract.txt`
1073. For each HIGH risk finding, draft a counter-proposal
1084. Bring the redline + counter-proposals to outside counsel
1095. Log the decision via `/cs:decide`
110 
111### Workflow 2: Term Sheet Response
1121. Save the term sheet as a JSON file matching the schema in `term_sheet_analyzer.py --help`
1132. Run `python scripts/term_sheet_analyzer.py path/to/term_sheet.json`
1143. Review the founder-friendliness score and per-clause flags
1154. Negotiate the worst 3 clauses (don't try to win all 20)
1165. Always have a securities/venture attorney review before signing
1176. Log via `/cs:decide` with `/cs:freeze 30` to prevent regret-driven re-opening
118 
119### Workflow 3: IP Hygiene Audit
1201. Confirm every employee and contractor (past 12 months) signed invention assignment
1212. Run an OSS license inventory (`pip-licenses`, `license-checker` for npm)
1223. Map AGPL/GPL dependencies and confirm compliance (or remove)
1234. File provisional patents on novel inventions (12-month deadline from disclosure)
1245. Register word-mark trademarks for the product name
125 
126### Workflow 4: Regulatory Trigger Assessment
1271. List planned product features for the next 12 months
1282. Map each feature to the trigger table in this document
1293. For any HIPAA / FDA / fintech trigger, engage a specialist counsel **before** building
1304. Document the regulatory roadmap and budget alongside the product roadmap
1315. Pair with `cs-ciso-advisor` for ISO 27001 / SOC 2 sequencing
132 
133## Output Standard (when invoked via `/cs:gc-review`)
134 
135```
136**Bottom Line:** [sign / negotiate / do not sign]
137**The Risks:** [3 highest-severity issues]
138**Counter-Proposals:** [specific language]
139**Outside Counsel Action Items:** [what to bring to the attorney]
140**Your Decision:** [the call only the founder can make]
141```
142 
143## Adjacent Skills
144 
145- `c-level-advisor/skills/ciso-advisor/` — Compliance overlap (SOC 2, ISO 27001, HIPAA technical safeguards)
146- `c-level-advisor/skills/cfo-advisor/` — Term sheet → dilution math
147- `c-level-advisor/skills/ma-playbook/` — Acquisition agreements, integration playbooks
148- `ra-qm-team/` — ISO 13485, MDR, FDA 510(k), GDPR execution
149- `c-level-agents/skills/gc-review/SKILL.md` — `/cs:gc-review` slash command
150 
151## References
152 
153- [contracts_playbook.md](references/contracts_playbook.md) — Standard contracts, clause checklist, common founder traps
154- [ip_and_regulatory.md](references/ip_and_regulatory.md) — IP protection + regulatory landscape mapping
155- [term_sheet_decoder.md](references/term_sheet_decoder.md) — Term sheet glossary + founder-friendly defaults + pushback strategies
156 
157---
158 
159**Version:** 1.0.0
160**Status:** Production Ready
161**Disclaimer:** Not legal advice. Always engage qualified counsel for binding decisions.
162 

Discussion

Alternatives

Also in ContractsSee all 23 in Legal & compliance →
Employment contract templatesCreate employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment documentation.Business & ops · MITContract & Proposal WriterGenerate professional, jurisdiction-aware business documents: freelance contracts, project proposals, SOWs, NDAs, and MSAs. Structured Markdown output with docx conversion instructions. Covers US (Delaware), EU (GDPR), UK, and DACH (German law) jurisdictions. Not a substitute for legal counsel — use as strong starting points. Use when drafting a freelance contract, preparing a client proposal, writing an SOW for a new engagement, or producing an NDA before sharing sensitive material.Business & ops · MITContract reviewLightweight NDA, MSA, and vendor contract review for SMBs without legal on staff. Reads contracts from local files, mail attachments (Gmail or M365), a connected file store (Google Drive or M365), or DocuSign envelopes; flags non-standard terms; explains risks in plain English; and outputs a marked-up redline as a separate DOCX. Use when the user says review this contract," "what am I signing," "red flags," "flag any concerns, check the payment terms," or uploads/forwards a contract or legal agreement.Business & ops · Apache-2.0Contract Review SkillReview and summarise any contract or legal agreement. Use when asked to review a contract, check an agreement, flag legal risks, or summarise key clauses. Produces a structured review with key terms, flagged clauses, risk rating, and plain English summary. Not a substitute for qualified legal advice.Business & ops · MIT