Agent skill
follow-up-management
Schedule resume touches, nurture cadences, and no-show rescue flows for not-now, out-of-office, and warm-but-not-now recipients.
Filed under Outbound email.
From devangk003/gtm-agent-skills · 32 skills · 0 · pushed 2026-06-18
What it does when it runs
Schedule resume touches, nurture cadences, and no-show rescue flows for not-now, out-of-office, and warm-but-not-now recipients. Use when the user says "schedule follow-up", "parse resume date", "no-show rescue", or "nurture this lead.
Read from the skill and the 4 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.
- Keys and connectors you must supply
- AGENTIC_APP_TOKEN
- Hosts it reaches
- No third-party host appears in the skill or its bundled files.
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It does act, so it runs under whatever permissions your session already grants. - Actions present in the files
- shell
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/devangk003/gtm-agent-skills.git /tmp/gtm-agent-skills git -C /tmp/gtm-agent-skills sparse-checkout set "follow-up-management" mkdir -p ~/.claude/skills/follow-up-management cp -R "/tmp/gtm-agent-skills/follow-up-management/." ~/.claude/skills/follow-up-management/
Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗
The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.
Before you install: this skill will not complete its job on a bare agent. It needs AGENTIC_APP_TOKEN, which you have to obtain separately.
The skill
Source on GitHub ↗Reproduced in full from devangk003/gtm-agent-skills/blob/6b9a1b0094ffd83d6c02bc03b7ce1610661a1644/follow-up-management/SKILL.md, which is licensed MIT (skill frontmatter). 478 words, 6 headings.
Follow-Up Management
Schedule the right follow-up at the right time for not-now recipients, OOO auto-replies, nurture-parked leads, and meeting no-shows. Owns date parsing from reply text, the 30/60/90-day nurture library, and the no-show rescue flow.
When to Use
- Not-now reply with stated resume date — schedule the resume
- OOO auto-reply with return date — pause + resume
- Meeting no-show — rescue flow within 24h
- Tier-1/2 recipient parked in nurture — schedule next touch
- Bulk schedule resume touches for not-now replies
- User says "schedule follow-up" or "parse resume date"
Quick Reference
| Concept | Value |
|---|---|
| Resume-date sources | Explicit date → parse; implied window → resolve; no date → default 60d |
| Nurture cadences | 30-60-90-light (3 touches) / 90-180-365-deep (3 touches) / no-show-rescue (24h + 7d) |
| Date parsing | Natural language → ISO. "Q1 2027" → 2027-01-15. "After holidays" → Jan 5. Provenance: explicit = [verified]; inferred = [unverified] |
| Resume channel | Same as original reply unless redirect detected |
| No-show rescue window | Within 24h of missed meeting; tone: low-stakes, single CTA |
| Capacity-cap respect | Resume + nurture touches count against per-channel caps |
Procedure
- Validate inputs. Read trigger event + lead record + cadence/reply history. Confirm trigger type (not-now / OOO / nurture / no-show).
- Parse resume date. Extract date/window from reply text. Pattern-match phrases. Default per matrix when ambiguous. Tag provenance. See
${HERMES_SKILL_DIR}/references/date-parsing.md. - Pick follow-up flow. not-now with date → single resume. not-now without → 60d. OOO → resume after return+1. nurture → 30-60-90-light. no-show → rescue. See
${HERMES_SKILL_DIR}/references/nurture-cadences.md. - Generate touches. Hand off to channel skill (cold-email-sequence / linkedin-outreach) with cadence position context. Channel skill produces copy.
- Schedule + capacity check. Compute new touches against per-channel weekly caps. Over capacity → surface for user. Schedule via channel skill API.
- Update lead record. PATCH person:
next_followup_at,nurture_state,cadence_state. - Push to CRM + emit run summary. Per-recipient
interaction:researchwith schedule + provenance. Run summary: triggers processed, flow distribution. See${HERMES_SKILL_DIR}/scripts/push_to_crm.py.
Pitfalls
- Forgetting the parsed date — ALWAYS PATCH person record with next_followup_at
- Default 60d when reply named a specific date — honor stated date
- No-show rescue at 7 days instead of 24 hours — window matters
- Nurture touches that pitch — nurture is value-first; pitches trigger unsubscribes
- Re-engaging on not-interested — hard no = exit-permanent; follow-up does NOT re-engage
- Holiday-window resume — "Q1 2027" arriving Dec 24 → schedule Jan 5, not Dec 25
Verification
- Every trigger has a scheduled resume OR documented archive decision
- Resume dates trace to reply text or documented default
- Channel-skill handoffs succeeded with cadence position context
- Person records patched with next_followup_at + nurture_state + cadence_state
- Capacity checks passed at schedule time
Files bundled with it
These load only when the skill asks for them, so they cost nothing until it runs.
Other skills for the same job
Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.
- conversational-flow-management by louisblythe · 136
- emotional-arc-management by louisblythe · 136
- follow-up-discipline by louisblythe · 136
- multi-stakeholder-thread-management by louisblythe · 136
- pipeline-management by louisblythe · 136
- post-meeting-follow-up-automation by louisblythe · 136
- response-latency-management by louisblythe · 136
- time-management by louisblythe · 136
Need help setting it up?
This page tells you what follow-up-management does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.
Book a call →The directory stays free. There is nothing gated behind this.