Claude-Skills legal-meeting-briefing

install
source · Clone the upstream repo
git clone https://github.com/borghei/Claude-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/borghei/Claude-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/legal/legal-meeting-briefing" ~/.claude/skills/borghei-claude-skills-legal-meeting-briefing && rm -rf "$T"
manifest: legal/legal-meeting-briefing/SKILL.md
source content

⚠️ 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.

Legal Meeting Briefing Skill

Overview

Production-ready toolkit for preparing structured briefings for meetings with legal relevance and tracking resulting action items. Supports 8 meeting types with type-specific preparation guidance, a 13-section briefing template, and action item management with priority levels and follow-up cadence. Designed for legal teams preparing counsel, in-house attorneys, and legal operations professionals for productive meetings.

Table of Contents

Tools

1. Meeting Brief Generator (
scripts/meeting_brief_generator.py
)

Generate a meeting briefing skeleton pre-populated with sections based on meeting type.

python scripts/meeting_brief_generator.py \
  --type deal-review \
  --title "Series B Term Sheet Review" \
  --date 2026-04-15 \
  --participants '[{"name":"Jane Smith","org":"Legal","role":"Lead Counsel"}]'

python scripts/meeting_brief_generator.py \
  --type board \
  --title "Q1 Board Meeting" \
  --date 2026-04-20 \
  --agenda "Legal update,Risk report,Pending approvals" --json

python scripts/meeting_brief_generator.py \
  --type regulatory \
  --title "FDA Pre-Submission Meeting" \
  --date 2026-05-01 \
  --participants '[{"name":"Dr. Lee","org":"FDA","role":"Reviewer"}]'

2. Action Item Tracker (
scripts/action_item_tracker.py
)

Manage action items from legal meetings with priority levels, ownership, and status tracking.

python scripts/action_item_tracker.py add \
  --title "Draft NDA for Vendor X" \
  --owner "Jane Smith" \
  --priority high \
  --deadline 2026-04-20 \
  --meeting "Series B Review"

python scripts/action_item_tracker.py list \
  --filter-status open \
  --filter-priority high

python scripts/action_item_tracker.py complete --id 3

python scripts/action_item_tracker.py dashboard --json

python scripts/action_item_tracker.py update --id 5 \
  --status in-progress --notes "Waiting for counterparty response"

Reference Guides

ReferencePurpose
references/meeting_type_guides.md
Preparation guidance for all 8 meeting types
references/briefing_templates.md
Complete 13-section briefing template and action item tracking

Workflows

5-Step Briefing Methodology

StepActionOutput
1. Identify MeetingDetermine meeting type, participants, objectivesMeeting classification
2. Assess Preparation NeedsSelect type-specific sections and depthSection checklist
3. Gather ContextCollect documents, prior notes, open issuesBackground materials
4. Synthesize into BriefingRun generator; populate sections with gathered contextDraft briefing
5. Identify Preparation GapsReview for missing info; flag items needing follow-upGap list

Meeting Type Selection

Meeting TypeKey Indicator
Deal ReviewTransaction under consideration or in progress
Board/CommitteeBoard of directors, audit committee, compensation committee
Vendor CallMeeting with supplier, contractor, or service provider
Team SyncInternal legal team meeting
Client/CustomerExternal client or customer-facing meeting
Regulatory/GovernmentMeeting with regulator, agency, or government body
Litigation/DisputeMeeting about active or potential legal dispute
Cross-FunctionalMeeting with stakeholders from multiple departments

Action Item Workflow

  1. Capture -- Record action items during or immediately after meeting
  2. Assign -- Set owner, priority, and deadline for each item
  3. Track -- Monitor progress via dashboard; update status as work progresses
  4. Follow-Up -- Follow cadence based on priority level
  5. Close -- Mark complete when done; archive for audit trail

Follow-Up Cadence

PriorityFollow-Up FrequencyEscalation
HighDaily check-inEscalate after 2 missed days
MediumWeekly check-inEscalate after 1 missed week
LowMonthly check-inEscalate after 1 missed month
OverdueImmediate escalationNotify supervisor and meeting owner

Meeting Types

Deal Review

Focus: Transaction analysis, contract review, approval requirements.

SectionContent
Deal SummaryParties, structure, value, timeline
Contract StatusDraft version, open issues, redline items
Approval RequirementsWho must approve; delegated authority limits
Counterparty DynamicsNegotiation position, prior dealings, leverage
Comparable DealsSimilar transactions for benchmarking terms

Board/Committee

Focus: Legal department update, risk highlights, governance.

SectionContent
Legal Department UpdateHeadcount, budget, key accomplishments
Risk HighlightsTop legal risks with likelihood and impact
Regulatory UpdateRecent regulatory changes affecting the organization
Pending ApprovalsItems requiring board or committee action
Litigation SummaryActive matters, reserves, settlement status

Regulatory/Government

Focus: Compliance posture, enforcement patterns, privilege considerations.

SectionContent
Regulatory Body ContextAgency structure, jurisdiction, enforcement priorities
Enforcement PatternsRecent enforcement actions in the sector
Matter HistoryPrior interactions, submissions, correspondence
Privilege ConsiderationsWhat is privileged; what can be shared
Compliance PostureCurrent compliance status; remediation progress

Troubleshooting

ProblemCauseSolution
Brief missing type-specific sectionsWrong meeting type selectedReview meeting type descriptions; select the most specific type
Participants not formattedJSON format errorUse valid JSON array:
'[{"name":"X","org":"Y","role":"Z"}]'
Action items not persistingTracker uses file-based storageEnsure write permissions in working directory; check
action_items.json
Dashboard shows stale dataCached data from previous runRe-run dashboard command; items are loaded fresh from storage
Overdue items not flaggedClock/timezone mismatchVerify system date; deadlines use YYYY-MM-DD format
Agenda items not populatingComma-separated format expectedUse
--agenda "Item 1,Item 2,Item 3"
format
Brief too genericMinimal parameters providedAdd participants, agenda, and type-specific context
Action item ID not foundItem was completed or deletedRun
list --filter-status all
to see all items including completed

Success Criteria

  • Preparation Coverage: Every legal meeting has a briefing covering all relevant sections for its type
  • Action Item Capture: 100% of action items captured with owner, deadline, and priority within 24 hours
  • On-Time Completion: 90%+ of action items completed by deadline
  • Meeting Effectiveness: Participants report improved preparation and productivity (measured by survey)
  • Follow-Up Compliance: High-priority items followed up daily; medium weekly; low monthly

Scope & Limitations

This skill covers:

  • Meeting briefing generation with type-specific sections for 8 meeting types
  • Action item tracking with CRUD operations, filtering, and status dashboard
  • Follow-up cadence management based on priority levels
  • Preparation gap identification for pre-meeting readiness

This skill does NOT cover:

  • Calendar integration or meeting scheduling
  • Real-time meeting notes or transcription
  • Email drafting or distribution of briefings
  • Document management or version control for meeting materials
  • Video conferencing or collaboration tool integration

Anti-Patterns

Anti-PatternWhy It FailsBetter Approach
Generic briefing for all meeting typesMisses type-specific concerns; wastes prep time on irrelevant sectionsSelect correct meeting type; use type-specific guidance
Capturing action items days after meetingDetails forgotten; ownership unclear; deadlines slipCapture during meeting or within 2 hours; use tracker immediately
Single owner for all itemsCreates bottleneck; no accountability for individual tasksAssign specific owner per item; each item has exactly one owner
No follow-up on action itemsItems go stale; commitments missed; trust erodesFollow cadence: high=daily, medium=weekly, low=monthly
Skipping privilege considerations for regulatory meetingsInadvertent privilege waiver; disclosed protected communicationsAlways complete privilege section for regulatory/government meetings

Tool Reference

scripts/meeting_brief_generator.py

Generate meeting briefing skeleton from parameters.

usage: meeting_brief_generator.py [-h] [--json]
                                   --type {deal-review,board,vendor,team-sync,
                                           client,regulatory,litigation,cross-functional}
                                   --title TITLE
                                   --date DATE
                                   [--participants PARTICIPANTS]
                                   [--agenda AGENDA]
                                   [--output OUTPUT]

options:
  -h, --help            Show help message and exit
  --json                Output in JSON format
  --type                Meeting type (determines sections included)
  --title               Meeting title
  --date                Meeting date (YYYY-MM-DD)
  --participants        JSON array of participants: [{"name","org","role","interests"}]
  --agenda              Comma-separated agenda items
  --output              Write briefing to file instead of stdout

scripts/action_item_tracker.py

Manage action items with CRUD operations and status dashboard.

usage: action_item_tracker.py [-h] [--json]
                               {add,list,update,complete,dashboard} ...

commands:
  add         Add a new action item
  list        List action items with optional filters
  update      Update an existing action item
  complete    Mark an action item as complete
  dashboard   Show action item summary dashboard

add options:
  --title TITLE         Action item description (required)
  --owner OWNER         Responsible person (required)
  --priority {high,medium,low}  Priority level (required)
  --deadline DEADLINE   Due date YYYY-MM-DD (required)
  --meeting MEETING     Source meeting name
  --notes NOTES         Additional notes

list options:
  --filter-status {open,in-progress,complete,overdue,all}
  --filter-priority {high,medium,low,all}
  --filter-owner OWNER

update options:
  --id ID               Action item ID (required)
  --status {open,in-progress,complete}
  --priority {high,medium,low}
  --deadline DEADLINE
  --notes NOTES

complete options:
  --id ID               Action item ID (required)

dashboard options:
  (no additional options)