
Meeting Brief
FreeAutomate your meeting prep with personalized attendee briefs.
Free · Opens the source repo
What Meeting Brief does
Meeting Brief is an automated daily meeting preparation system designed to streamline the way you prepare for meetings. Every morning, it checks your calendar for scheduled meetings and extracts the list of attendees. The system intelligently filters out your team members, allowing you to focus on external participants. It then conducts thorough research on each external attendee, gathering data from LinkedIn, company information, GitHub profiles (for technical attendees), and any past interactions you may have had with them. This ensures that you have all the relevant context before you step into a meeting.
Once the research is complete, Meeting Brief generates personalized briefs for each attendee. These briefs are tailored to include key insights such as the attendee's professional background, recent activity, and conversation starters. The output is formatted for easy consumption, with concise bullet points for email and a richer narrative style for Slack. This dual-format approach allows you to choose how you want to receive your meeting prep, whether you prefer quick overviews or detailed storytelling.
The skill is particularly useful for professionals who frequently meet with external stakeholders and need to quickly get up to speed on their backgrounds. By automating the research process, Meeting Brief saves you valuable time and ensures that you approach each meeting with confidence and context. It's an essential tool for anyone looking to enhance their meeting preparation and improve the quality of their interactions.
To set up Meeting Brief, you simply configure your team members in the provided JSON file, schedule the daily run using cron, and let the system handle the rest. It can send the generated briefs to your email or Slack, ensuring you have the information at your fingertips when you need it most.
When to use it
Use this tool when you have multiple meetings with external participants and need to prepare personalized briefs to enhance your engagement.
When not to use it
It's less effective for meetings with internal team members or when detailed research is not necessary.
What you can build with it
Preparing for Client Meetings
Use Meeting Brief to gather insights about clients before meetings, ensuring you have relevant context and conversation starters.
Networking Events
Automate research on attendees before networking events to make informed connections and discussions.
Sales Calls
Enhance your sales calls with personalized briefs that include potential client's background and interests.
How to install Meeting Brief
View source1. Install with the skills CLI
npx skills add gooseworks-ai/goose-skills/meeting-brief --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by gooseworks-aiMeeting Brief
Automated daily meeting preparation system that researches meeting attendees and sends you personalized briefs.
What It Does
Every morning (configurable time):
- Checks your calendar for today's meetings (via gcalcli)
- Extracts attendees from each meeting
- Filters out your team members (configurable)
- Deep researches each external person:
- LinkedIn profile (web search)
- Company information
- GitHub profile (if engineer)
- Past interactions/notes (memory search)
- Recent news/activity
- Generates AI-powered brief per person
- Sends 1 email per person to your inbox
Setup
1. Configure Team Members
Edit config.json to list your team members (these will be skipped):
{
"team_members": [
"alice@yourcompany.com",
"bob@yourcompany.com",
"team@yourcompany.com"
],
"team_domains": [
"@yourcompany.com"
],
"schedule": "0 7 * * *",
"timezone": "America/Los_Angeles",
"your_email": "you@yourcompany.com",
"brief_from": "Meeting Brief <briefbot@yourcompany.com>",
"slack_webhook": "https://hooks.slack.com/services/YOUR/WEBHOOK/URL",
"send_email": true,
"send_slack": true,
"include_calendar_details": true,
"research_depth": "standard"
}
Config options:
team_members: Emails to skip (exact match)team_domains: Domain patterns to skip (e.g., skip all @yourcompany.com)schedule: Cron expression for daily run (default: 7am)timezone: Timezone for scheduleyour_email: Where to send briefsbrief_from: From address for briefsslack_webhook: Slack incoming webhook URL (optional)send_email: Whether to send email briefs (default: true)send_slack: Whether to send Slack notifications (default: false)include_calendar_details: Include meeting time/location in briefresearch_depth:quick(web only),standard(web + GitHub),deep(web + GitHub + past notes)
2. Run Daily (Manual or Scheduled)
Run manually each morning:
cd skills/meeting-brief
./scripts/run_daily.sh
How It Works
Main Workflow (scripts/run_daily.sh)
-
Fetch today's meetings (
scripts/check_calendar.sh)- Uses gcalcli to get today's agenda
- Parses meeting times, titles, attendees
- Outputs JSON with meeting details
-
Filter external attendees (built into run_daily.sh)
- Loads config.json
- Filters out team members and team domains
- Creates list of people to research
-
Research each person (
scripts/research_person.js)- Web search: LinkedIn profile, company info
- GitHub search: Profile and repos (if applicable)
- Memory search: Past interactions/notes
- News search: Recent activity
- Outputs structured research JSON
-
Generate brief (
scripts/generate_brief.js)- Uses AI agent to generate the brief
- Inputs: research data + meeting context
- Outputs: Two formats:
- Email: Concise bullet-point brief
- Slack: Rich paragraph-style story with deeper context and narrative
-
Send brief
- Email: Uses Gmail skill (
send_email: true) - Slack: Uses webhook (
send_slack: true,scripts/send_slack.sh) - Subject: "Meeting Brief: [Person Name] - [Meeting Title]"
- Body: AI-generated brief with research
- Email: Uses Gmail skill (
-
Save to personal CRM (
supernotes/people/)- Each researched person saved as markdown file
- Includes: research data, meeting context, date
- Builds personal relationship database over time
-
Track sent briefs (logs to
data/sent/YYYY-MM-DD.json)- Prevents duplicates
- Enables analytics
Research Process
For each external attendee, the system researches:
Web Search (Always)
- LinkedIn profile (name + company)
- Company information
- Recent news mentions
- Professional background
GitHub (If research_depth is standard or deep)
- GitHub profile lookup (by name/email)
- Recent repos and contributions
- Technical focus areas
Memory/Past Notes (If research_depth is deep)
- Search MEMORY.md and daily notes
- Past meeting notes
- Previous interactions
- Context from past conversations
Output Format
Research is structured as JSON:
{
"person": {
"name": "Jane Doe",
"email": "jane@example.com",
"company": "Example Corp",
"title": "VP Engineering"
},
"linkedin": {
"url": "...",
"bio": "...",
"experience": [...]
},
"github": {
"username": "janedoe",
"profile_url": "...",
"recent_repos": [...]
},
"company": {
"name": "Example Corp",
"industry": "...",
"recent_news": [...]
},
"past_interactions": [
"Met at conference in 2024",
"Discussed partnership opportunity"
]
}
Brief Generation
The AI-generated brief comes in two formats:
Email Format (Concise Bullets)
-
Quick Overview
- Who they are (name, title, company)
- Why you're meeting (meeting title/description)
-
Background
- Professional background (LinkedIn)
- Company context
- Technical expertise (GitHub, if applicable)
-
Conversation Starters
- Based on recent activity
- Shared interests/connections
- Relevant topics
-
Action Items / Notes
- Past interactions (if any)
- Things to remember
- Follow-up items
Slack Format (Rich Story)
Deeper, narrative-driven brief with:
- Paragraph-style storytelling about the person
- Context about their journey and recent work
- Compelling hooks and conversation angles
- More background color and detail
- Stronger narrative flow than bullet points
Example Brief:
Subject: Meeting Brief: Jane Doe - Product Partnership Discussion
Hi,
You're meeting with Jane Doe today at 2pm.
## Quick Overview
Jane is VP of Engineering at Example Corp, a B2B SaaS company in the dev tools space. She's been there for 3 years and previously worked at GitHub and Microsoft.
## Background
- Strong background in developer tooling and infrastructure
- Recently led Example Corp's API platform overhaul (launched Q4 2025)
- Active on GitHub (janedoe) - maintains several open-source CLI tools
- Technical blog focuses on API design and developer experience
## Conversation Starters
- Their new API platform (just launched, getting good traction)
- Recent blog post on GraphQL vs REST (published last week)
- Shared interest in developer experience (noted in her LinkedIn)
## Notes
- You met briefly at DevTools Summit 2024
- She mentioned interest in partnering on integration opportunities
---
Meeting: Product Partnership Discussion
Time: Today at 2:00 PM
Location: Zoom (link in calendar)
Manual Usage
Run for a specific person:
# Research a person
node scripts/research_person.js "Jane Doe" "jane@example.com" "Example Corp"
# Generate brief
node scripts/generate_brief.js research_output.json meeting_context.json
# Send brief
./scripts/send_brief.sh brief.html "Jane Doe"
Run for today's meetings:
./scripts/run_daily.sh
Data & Logs
meeting-brief/
├── data/
│ ├── sent/ # Sent brief logs (by date)
│ │ └── 2026-02-21.json
│ ├── research/ # Research cache (by person)
│ │ └── jane-doe.json
│ └── meetings/ # Meeting data (by date)
│ └── 2026-02-21.json
└── logs/
└── run.log # Execution logs
Tips
- Test with dry-run first: Set
DRY_RUN=truein run_daily.sh to preview without sending - Adjust research depth: Start with
quick, upgrade tostandardordeepas needed - Refine team filter: Add domains/emails to skip internal meetings
- Review briefs: Check data/sent/ logs to see what's being sent
- Iterate on prompts: Edit generate_brief.js to customize AI prompt
Troubleshooting
No briefs sent:
- Check gcalcli authentication (
gcalcli agenda today tomorrow) - Verify calendar has events with external attendees
- Check logs in
logs/run.log
Briefs missing information:
- Increase
research_depthin config.json - Check web_search and GitHub CLI are working
- Review research data in
data/research/
Duplicate briefs:
- Check
data/sent/for already-sent tracking - Verify cron job isn't running multiple times
Tools Used
- gcalcli: For fetching today's meetings from Google Calendar
- web_search: For LinkedIn and company research
- GitHub CLI (
gh): For GitHub profile lookup (optional) - Gmail: For sending brief emails (optional — can also output to file)
Privacy & Security
- Research data is cached locally in
data/research/ - No external APIs (uses web_search, GitHub CLI, memory_search)
- Briefs sent only to configured email
- Team member filtering prevents leaking internal info
- All data stored in skill directory (no cloud storage)
Frequently asked questions about Meeting Brief
Similar skills
Agent-Browser Core
Efficient browser automation for AI agents.
Setup My IQ
Effortlessly create and update your personal context portfolio.
CRM Maintenance
Automate HubSpot updates from your calendar and emails.
Zoom MCP
Streamline access to Zoom meeting assets and recordings.
Slack Automation
Automate tasks and extract data from Slack easily.
SMB Onboard
Guides small business owners through initial tool setup.
