Follow Up
Log meeting + reminder + notes in one go
Post-meeting in one command. Follow Up logs the activity, sets a follow-up reminder, and updates relationship notes — three apps worth of busywork in a single sentence. Say what happened and when to follow up, and it handles the rest.
Just say:
"I just had coffee with Dan Torres, follow up in 2 weeks"
"Log my call with Sarah — she's moving to a new role, set a reminder for Thursday"
Pairs well with:
Google Calendar
.claude/commands/follow-up.md # Follow Up: Log meeting + reminder + notes in one go
Log my interaction and set up follow-ups for $ARGUMENTS.
Follow these steps:
1. **Find the person.** Use `hidn_search_profiles` to locate the contact mentioned. If ambiguous, show matches and ask.
2. **Pull context.** Use `hidn_get_profile` to get their current details — title, company, relationship context, importance level. Use `hidn_list_orgs_for_profile` to identify their primary org.
3. **Log the activity.** Use `hidn_create_activity` to record the interaction:
- Set `activity_type` based on what the user describes (call, meeting, email, message, note)
- Set `direction` (inbound, outbound, or internal)
- Include a summary of what was discussed in the description
- Link to the profile and org
4. **Set the reminder.** If the user mentions a follow-up date or timeframe, use `hidn_create_reminder` to schedule it. Convert relative dates ("Thursday", "next week", "in 2 weeks") to actual dates. Link the reminder to the relevant profile.
5. **Update relationship notes.** If the conversation revealed anything worth noting — new role, new project, personal detail — use `hidn_update_profile` or `hidn_update_profile_crm` to capture it.
## Output format
Confirm what was logged:
**Logged**
- Activity: [type] with [name] on [date]
- Summary: [what was discussed]
**Reminder set**
- [follow-up action] on [date]
**Notes updated**
- [any profile or relationship updates made]
**Anything else?**
- Prompt the user: "Want me to also [suggest related action based on context]?" myhidn tools this skill uses:
hidn_search_profileshidn_get_profilehidn_list_orgs_for_profilehidn_create_activityhidn_create_reminderhidn_update_profilehidn_update_profile_crm