skills/post-meeting-notes/SKILL.md
Processes raw meeting notes into structured Evergreen CRM records — logs interactions, creates action items, adds new contacts, and updates notes. Use after any meeting, call, or conversation to capture everything in your CRM without manual data entry.
npx skillsauth add wdm0006/evergreen-skills processing-meeting-notes-for-evergreenInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Works with Evergreen, a local-first personal CRM for macOS. Get it on the Mac App Store.
search_contactsinteractions.logactions.create for any commitmentscontacts.createnotes.append for relevant contactsrelationships.create if new connections were established| Element | What to Look For | Evergreen Action |
|---------|-----------------|-----------------|
| Attendees | Names, titles, companies | Match or create contacts |
| Topics | Key subjects discussed | Include in interaction summary |
| Decisions | Agreed-upon outcomes | Note in interaction + notes |
| Action items | "I'll...", "You should...", "Let's..." | actions.create with due dates |
| New contacts | "You should talk to..." | contacts.create + flag for follow-up |
| Relationships | "Sarah works with Marcus on..." | relationships.create |
| Follow-ups | Next meeting, deadlines | actions.create with dates |
Raw meeting notes:
Call with Sarah Chen and Lisa Park from Meridian Health on Apr 5.
Discussed the API integration timeline. Sarah wants to start the
pilot in Q3. Lisa is handling the procurement side — she needs our
security questionnaire filled out by end of April.
They mentioned their new data engineer Raj Patel would be our main
technical contact. Sarah will send his details.
We agreed to:
- Send the security questionnaire by Apr 15
- Schedule a technical deep-dive with Raj once connected
- Sarah will share their data schema doc by next week
Processed into Evergreen:
1. interactions.log(sarah_id, {
type: "call",
summary: "Discussed API integration — Q3 pilot start. Lisa handling procurement. New tech contact Raj Patel joining."
})
2. interactions.log(lisa_id, {
type: "call",
summary: "Procurement discussion for API integration. Needs security questionnaire by end of April."
})
3. actions.create({
contact_id: lisa_id,
title: "Send security questionnaire to Lisa Park",
due_date: "2026-04-15",
priority: "high"
})
4. actions.create({
contact_id: sarah_id,
title: "Schedule technical deep-dive with Raj Patel (after intro)",
priority: "medium"
})
5. actions.create({
contact_id: sarah_id,
title: "Follow up if Sarah hasn't sent data schema doc by Apr 12",
due_date: "2026-04-12",
priority: "medium"
})
6. notes.append(sarah_id, "Apr 5 call: Q3 pilot confirmed. New tech contact: Raj Patel (data engineer). Lisa handling procurement.")
Post-Meeting Processing:
- [ ] All attendees identified and matched to contacts
- [ ] Interaction logged for each attendee
- [ ] All action items captured with owners and due dates
- [ ] New contacts created (or flagged for creation)
- [ ] Relevant notes appended to contact records
- [ ] Relationships updated if new connections established
business
Generates a weekly relationship management digest from Evergreen CRM — interactions logged, follow-ups completed vs missed, network growth, and a spotlight contact. Use for weekly reviews, accountability, or planning the week ahead.
testing
Drafts double-opt-in introduction emails connecting two Evergreen CRM contacts. Use when someone asks for an introduction, when you spot a mutually beneficial connection, or when facilitating networking between contacts.
testing
Audits Evergreen CRM for stale or incomplete contact data — outdated titles, missing fields, potential duplicates, and contacts that may have changed jobs. Use for periodic database hygiene, before a big outreach push, or when data quality feels off.
business
Scores and surfaces relationship health across your Evergreen CRM contacts — identifies thriving relationships, ones at risk, and dormant connections needing attention. Use when you want a high-level view of your network health or need to prioritize relationship investment.