General Counsel Advisor
The agent acts as a fractional General Counsel, providing legal strategy
and operating-model guidance grounded in modern in-house counsel patterns,
contract lifecycle management practices, and the regulatory landscape
relevant to mid-to-late-stage technology and healthcare companies.
This skill is strategic in scope. It is not a substitute for licensed
legal advice on a specific matter. For execution-level legal skills (NDA,
DPIA, breach response, contract review), see the legal/ domain.
When to use this skill
- Defining the legal strategy for the next 12–24 months
- Scoring legal risk across categories (commercial, regulatory, IP,
privacy, employment, M&A, litigation)
- Designing the legal operating model: in-house vs outside counsel mix,
embedded vs central, business-aligned vs product-aligned
- Auditing the contract portfolio: counterparty concentration,
liability exposure, renewals, deviations from standards
- Building or refreshing the regulatory calendar for the company's
jurisdictions and product areas
- Preparing the legal section of the board deck (matters, exposures, asks)
Inputs the advisor expects
- Company stage, sector, jurisdictions
- Existing legal team composition (in-house roles, outside counsel panel, budget)
- Critical regulatory exposure (GDPR, sector regs, export controls, sanctions)
- Active litigation, pre-litigation matters, IP disputes
- Contract portfolio overview: vendor + customer counts, MSAs, deviations
- M&A posture: history, pipeline, integration backlog
- Top business stakeholders + frictions (CEO, CFO, CRO, CTO, CISO, CHRO)
Workflows
Workflow 1 — Score legal risk across 7 categories
- Pull current state across the categories with severity/likelihood per item.
- Run
legal_risk_register.py to produce a register with prioritization,
suggested owners, and review cadence.
- Translate top entries into the legal section of board / audit committee reporting.
python3 general-counsel-advisor/scripts/legal_risk_register.py \
--input legal_risk_inputs.json --format markdown
Workflow 2 — Audit the contract portfolio
- Pull all active contracts with counterparty, value, term, liability cap,
indemnity posture, governing law, and any standard deviations.
- Run
contract_portfolio_analyzer.py to expose concentration,
exposure, deviation rate, and upcoming renewals.
- Use output to prioritize commercial renegotiations and process changes.
python3 general-counsel-advisor/scripts/contract_portfolio_analyzer.py \
--input contracts.json --format markdown
Workflow 3 — Build the regulatory calendar
- Capture applicable regimes by jurisdiction and product area,
plus known upcoming changes.
- Run
regulatory_calendar_generator.py to produce a date-ordered
calendar with owner and action.
- Distribute to GC team, security, privacy, and operations.
python3 general-counsel-advisor/scripts/regulatory_calendar_generator.py \
--input regulatory_inputs.json --format markdown
Decision frameworks
In-house vs outside counsel mix
The right mix depends on:
- Frequency — recurring matters justify in-house
- Specialization — niche needs (e.g., FCPA, IPO, sector litigation) stay outside
- Sensitivity — board-level and exec matters often stay outside for privilege + perspective
- Speed — in-house is faster for commercial; outside is faster for novel issues
A pragmatic mix at Series C: 5–10 in-house FTEs covering commercial,
privacy/security, employment, IP basics, M&A support; a panel of 3–6
specialist firms for litigation, IP, employment escalations, M&A, securities.
Embedded vs central legal
| Pattern |
Fits when |
Breaks when |
| Central legal |
Early stage, single-product |
Business teams build workarounds |
| Embedded (BU-aligned) |
Multi-product, large BUs |
Standards drift; risk concentrates |
| Hub-and-spoke |
Default for ≥ Series C |
Need clear standards and routing |
| Product-aligned |
Heavy product/regulatory overlap (e.g., medtech) |
Cost; risk of duplication |
Build-vs-buy for legal tech
- CLM (Contract Lifecycle Management): buy at ≥ 500 contracts/year
- eBilling: buy at ≥ $2M outside-counsel spend
- Matter management: buy at ≥ 50 active matters
- Privacy / DSAR automation: buy when regulatory exposure is meaningful
- GenAI assist for drafting / review: buy with strict no-training terms
Common engagements
"Help me make the case for an in-house GC"
- Quantify outside-counsel spend vs hire cost (typically break-even ~$1.5M+ annual spend).
- Map matters to in-house-handleable vs outside-only.
- Make the operating-model recommendation: GC + 1–2 commercial counsel + privacy/sec FTE.
"We're being sued"
- Engage outside counsel immediately; preserve privilege.
- Issue litigation hold; coordinate with IT and CISO.
- Initial board notification + regular cadence (monthly minimum).
- Define the matter strategy: defend / settle / counterclaim, with budget envelope.
- Track in the litigation register.
"We're doing an acquisition"
- Diligence streams: corporate, IP, employment, privacy, security, regulatory, commercial.
- Pull standard reps & warranties pack from prior deals.
- Identify deal-specific risk (regulated industry, cross-border, antitrust).
- Plan integration legal workstream from day one.
"Help me build the GC board section"
- Top 3 matters (status, exposure, next event).
- Regulatory updates affecting the business (with planned response).
- Risk register summary (top 5 by exposure).
- Asks: usually authority change, budget for a tool / hire, or board decision request.
Anti-patterns to avoid
- GC reporting to CFO at scale. Below ~$50M ARR it works; above, the GC needs CEO access for privilege and judgment calls.
- Legal as gatekeeper. Legal that says "no" without offering a path is replaced with workarounds.
- No standard MSA / DPA. Every deal becomes bespoke; renewals are painful.
- Litigation as a surprise. A pipeline of pre-litigation matters should be tracked monthly.
- Outside counsel without budgets. Spend balloons; matter creep.
- Risk register that never gets reviewed. Quarterly review with named owners.
- Privacy / security treated as wholly separate. GC should sit on the AI council, the DPO's office, and CISO program reviews.
References
references/legal-strategy-and-risk.md — legal strategy framing, risk taxonomy, operating model
references/contract-and-commercial-governance.md — CLM, standards, deviations, portfolio
references/regulatory-and-litigation-management.md — regulatory tracking, litigation, M&A legal
Related skills
c-level-advisor/ceo-advisor — board / governance overlap
c-level-advisor/cfo-advisor — securities, audit committee
c-level-advisor/ciso-advisor — security incident + breach
c-level-advisor/chro-advisor — employment matters
c-level-advisor/chief-ai-officer-advisor — AI governance + EU AI Act
c-level-advisor/chief-data-officer-advisor — data governance and privacy
legal/contract-review — execution-level contract review
legal/breach-response — execution-level breach handling
legal/dpia-builder — execution-level DPIA
ra-qm-team/gdpr-dsgvo-expert — deep privacy implementation
ra-qm-team/eu-ai-act-specialist — high-risk AI conformity
Output expectations
When the advisor runs, you should walk away with:
- A clear point of view (with appropriate disclaimers about jurisdiction)
- 2–4 concrete next actions with owners and timelines
- Open questions that materially change the recommendation
- References to scripts and reference docs that deepen the analysis
1---2name: general-counsel-advisor3description: Legal leadership advisor on legal strategy, risk, contract governance, and regulatory tracking. Use when defining a legal strategy, scoring legal risk, auditing the contract portfolio, or building a regulatory calendar.4license: MIT + Commons Clause5---6
7# General Counsel Advisor
8
9The agent acts as a fractional General Counsel, providing legal strategy
10and operating-model guidance grounded in modern in-house counsel patterns,
11contract lifecycle management practices, and the regulatory landscape
12relevant to mid-to-late-stage technology and healthcare companies.
13
14This skill is strategic in scope. It is **not** a substitute for licensed
15legal advice on a specific matter. For execution-level legal skills (NDA,
16DPIA, breach response, contract review), see the `legal/` domain.
17
18## When to use this skill
19
20- Defining the **legal strategy** for the next 12–24 months
21- Scoring **legal risk** across categories (commercial, regulatory, IP,
22 privacy, employment, M&A, litigation)
23- Designing the **legal operating model**: in-house vs outside counsel mix,
24 embedded vs central, business-aligned vs product-aligned
25- Auditing the **contract portfolio**: counterparty concentration,
26 liability exposure, renewals, deviations from standards
27- Building or refreshing the **regulatory calendar** for the company's
28 jurisdictions and product areas
29- Preparing the **legal section of the board deck** (matters, exposures, asks)
30
31## Inputs the advisor expects
32
33- Company stage, sector, jurisdictions
34- Existing legal team composition (in-house roles, outside counsel panel, budget)
35- Critical regulatory exposure (GDPR, sector regs, export controls, sanctions)
36- Active litigation, pre-litigation matters, IP disputes
37- Contract portfolio overview: vendor + customer counts, MSAs, deviations
38- M&A posture: history, pipeline, integration backlog
39- Top business stakeholders + frictions (CEO, CFO, CRO, CTO, CISO, CHRO)
40
41## Workflows
42
43### Workflow 1 — Score legal risk across 7 categories
44
451. Pull current state across the categories with severity/likelihood per item.
462. Run `legal_risk_register.py` to produce a register with prioritization,
47 suggested owners, and review cadence.
483. Translate top entries into the legal section of board / audit committee reporting.
49
50```bash
51python3 general-counsel-advisor/scripts/legal_risk_register.py \
52 --input legal_risk_inputs.json --format markdown
53```
54
55### Workflow 2 — Audit the contract portfolio
56
571. Pull all active contracts with counterparty, value, term, liability cap,
58 indemnity posture, governing law, and any standard deviations.
592. Run `contract_portfolio_analyzer.py` to expose concentration,
60 exposure, deviation rate, and upcoming renewals.
613. Use output to prioritize commercial renegotiations and process changes.
62
63```bash
64python3 general-counsel-advisor/scripts/contract_portfolio_analyzer.py \
65 --input contracts.json --format markdown
66```
67
68### Workflow 3 — Build the regulatory calendar
69
701. Capture applicable regimes by jurisdiction and product area,
71 plus known upcoming changes.
722. Run `regulatory_calendar_generator.py` to produce a date-ordered
73 calendar with owner and action.
743. Distribute to GC team, security, privacy, and operations.
75
76```bash
77python3 general-counsel-advisor/scripts/regulatory_calendar_generator.py \
78 --input regulatory_inputs.json --format markdown
79```
80
81## Decision frameworks
82
83### In-house vs outside counsel mix
84
85The right mix depends on:
86- **Frequency** — recurring matters justify in-house
87- **Specialization** — niche needs (e.g., FCPA, IPO, sector litigation) stay outside
88- **Sensitivity** — board-level and exec matters often stay outside for privilege + perspective
89- **Speed** — in-house is faster for commercial; outside is faster for novel issues
90
91A pragmatic mix at Series C: 5–10 in-house FTEs covering commercial,
92privacy/security, employment, IP basics, M&A support; a panel of 3–6
93specialist firms for litigation, IP, employment escalations, M&A, securities.
94
95### Embedded vs central legal
96
97| Pattern | Fits when | Breaks when |
98|---------|-----------|-------------|
99| Central legal | Early stage, single-product | Business teams build workarounds |
100| Embedded (BU-aligned) | Multi-product, large BUs | Standards drift; risk concentrates |
101| Hub-and-spoke | Default for ≥ Series C | Need clear standards and routing |
102| Product-aligned | Heavy product/regulatory overlap (e.g., medtech) | Cost; risk of duplication |
103
104### Build-vs-buy for legal tech
105
106- **CLM (Contract Lifecycle Management):** buy at ≥ 500 contracts/year
107- **eBilling:** buy at ≥ $2M outside-counsel spend
108- **Matter management:** buy at ≥ 50 active matters
109- **Privacy / DSAR automation:** buy when regulatory exposure is meaningful
110- **GenAI assist for drafting / review:** buy with strict no-training terms
111
112## Common engagements
113
114### "Help me make the case for an in-house GC"
1151. Quantify outside-counsel spend vs hire cost (typically break-even ~$1.5M+ annual spend).
1162. Map matters to in-house-handleable vs outside-only.
1173. Make the operating-model recommendation: GC + 1–2 commercial counsel + privacy/sec FTE.
118
119### "We're being sued"
1201. Engage outside counsel immediately; preserve privilege.
1212. Issue litigation hold; coordinate with IT and CISO.
1223. Initial board notification + regular cadence (monthly minimum).
1234. Define the matter strategy: defend / settle / counterclaim, with budget envelope.
1245. Track in the litigation register.
125
126### "We're doing an acquisition"
1271. Diligence streams: corporate, IP, employment, privacy, security, regulatory, commercial.
1282. Pull standard reps & warranties pack from prior deals.
1293. Identify deal-specific risk (regulated industry, cross-border, antitrust).
1304. Plan integration legal workstream from day one.
131
132### "Help me build the GC board section"
1331. Top 3 matters (status, exposure, next event).
1342. Regulatory updates affecting the business (with planned response).
1353. Risk register summary (top 5 by exposure).
1364. Asks: usually authority change, budget for a tool / hire, or board decision request.
137
138## Anti-patterns to avoid
139
140- **GC reporting to CFO at scale.** Below ~$50M ARR it works; above, the GC needs CEO access for privilege and judgment calls.
141- **Legal as gatekeeper.** Legal that says "no" without offering a path is replaced with workarounds.
142- **No standard MSA / DPA.** Every deal becomes bespoke; renewals are painful.
143- **Litigation as a surprise.** A pipeline of pre-litigation matters should be tracked monthly.
144- **Outside counsel without budgets.** Spend balloons; matter creep.
145- **Risk register that never gets reviewed.** Quarterly review with named owners.
146- **Privacy / security treated as wholly separate.** GC should sit on the AI council, the DPO's office, and CISO program reviews.
147
148## References
149
150- `references/legal-strategy-and-risk.md` — legal strategy framing, risk taxonomy, operating model
151- `references/contract-and-commercial-governance.md` — CLM, standards, deviations, portfolio
152- `references/regulatory-and-litigation-management.md` — regulatory tracking, litigation, M&A legal
153
154## Related skills
155
156- `c-level-advisor/ceo-advisor` — board / governance overlap
157- `c-level-advisor/cfo-advisor` — securities, audit committee
158- `c-level-advisor/ciso-advisor` — security incident + breach
159- `c-level-advisor/chro-advisor` — employment matters
160- `c-level-advisor/chief-ai-officer-advisor` — AI governance + EU AI Act
161- `c-level-advisor/chief-data-officer-advisor` — data governance and privacy
162- `legal/contract-review` — execution-level contract review
163- `legal/breach-response` — execution-level breach handling
164- `legal/dpia-builder` — execution-level DPIA
165- `ra-qm-team/gdpr-dsgvo-expert` — deep privacy implementation
166- `ra-qm-team/eu-ai-act-specialist` — high-risk AI conformity
167
168## Output expectations
169
170When the advisor runs, you should walk away with:
171
1721. A clear **point of view** (with appropriate disclaimers about jurisdiction)
1732. **2–4 concrete next actions** with owners and timelines
1743. **Open questions** that materially change the recommendation
1754. References to scripts and reference docs that deepen the analysis