Skills / Influencer / outreach-manager
outreach-manager
Pitch, follow-up, negotiation, status tracking.
npx skills add …
Hire AI Staff
More install paths (Claude marketplace, Portable Lite, SkillHub…)
- Discipline
- Influencer
- Framework
- STAR
- Gate
creator-content-auditor- Entrypoint
/aaron-marketing:influencer
From SKILL.md
Inlined from influencer/activate/outreach-manager/SKILL.md (primary sections; appendix omitted) —
view full SKILL.md on GitHub
Sections: Outreach Manager · Quick Start · Skill Contract · Instructions
Outreach Manager
Craft personal, professional, persistent outreach; manage negotiations; track relationship progress. Home discipline is influencer (creator outreach), and the same mechanics engine — personalization, multi-touch cadence, negotiation scripts, pipeline tracking — serves media/analyst and launch-partner targets when press-media-relations hands over its media list, angles, and embargo terms, and social-selling / advocate-recruitment targets when social-selling-planner or advocacy-program-designer hands over a warm 1:1. The list, the angle, and the embargo stay with the handing-off skill; this skill owns the pitch execution.
Quick Start
Shortest invocation:
Write an outreach message to @[influencer] for [campaign]
Negotiate a gap between ask and budget:
Help me negotiate with @[influencer] who is asking for $[X] when our budget is $[Y]
Skill Contract
- Reads: a stable opaque
creator_refwhen one is carried by an authorized upstream artifact, plus transient target handle/profile locator(s), platform, follower count, niche; campaign and product context; compensation type and budget; deliverables and timeline; jurisdiction, intended channel, lawful-basis reference, contact-source/eligibility evidence, and pseudonymous consent subject ID; any prior contact history supplied by the user or loaded from memory. For a rostered creator, reuse a creator-registry aggregate ID only when its identity link is verified, resolve it through the authorized artifact or verified registry link, then checkmemory/creators/<aggregate-id>.md— the creator-registry projection — for the confirmed contact path, last agreed rate, and negotiation/response history. Never derive the path from a raw handle. - Writes: return the outreach artifact inline by default; save it to
memory/influencer/outreach-manager/YYYY-MM-DD-<topic>.mdonly with exact WARM-save authorization. Reuse an explicitly carried opaquecreator_ref, or a verified creator-registry aggregate ID; otherwise generate one randomcreator-<UUIDv4>once for this lineage. Never derivecreator_reffrom a raw handle, name, profile URL, email, provider ID, or deterministic hash. Before saving, replace raw locators and resolved recipient identities with the stablecreator_refand resolvable opaquerecipient_ref,contact_source_ref,handle_ref, and evidence/approval references. A raw URL or handle is never a persistedsource_ref. When no authorized source artifact or verified registry link can resolve an opaque identity/contact ref, setidentity_status: unresolved, save no hidden raw-locator mapping, setcross_session_locator_required: true, and request the transient locator again at dispatch. Never persist a raw handle, name, profile URL, email, phone, postal address, provider ID, or credential. When a cycle closes, each outcome update (final agreed rate, response history, confirmed contact-path reference) requires a separate exact authorization for anoperation: proposerequest tomemory/events/creators.ndjson; onlycreator-registrywrites canonical roster records. - Promotes: only with separate exact authorization, promote durable facts (confirmed partners, agreed rates, top objection patterns, response-rate baselines) to
memory/hot-cache.md. - Done when:
- A personalized pitch (plus at least one variation) exists for each target influencer. - Every personalization fact records source_ref and observed_at; unverifiable facts remain placeholders or are omitted. - A follow-up cadence and pipeline status are recorded for every contacted creator, including terminal no-contact states. - Jurisdiction, channel, lawful basis, and contact eligibility are explicit; any send/schedule remains gated by exact approval and a live suppression check. - Confirmed partners are flagged with agreed terms for handoff.
- Primary next skill: contract-helper
Handoff Summary
Emit the standard shape from skill-contract.md §Handoff Summary Format.
Instructions
Runtime Reads
../../../references/runtime-invocation.md../../../references/registry-event-protocol.md
Procedure
When a user requests outreach help, run these steps. Each step has a fill-in template in references/templates.md — copy the matching block and replace the placeholders. Apply the hard copy rules in references/cold-copy-rules.md before any message ships.
Draft/send boundary: drafting is reversible; sending or scheduling is an external side effect. Even when the shortlist or personalization facts are missing, produce an inline first-touch draft labeled DRAFT — NOT SENT with explicit placeholders and no invented facts, then state what is still needed for personalization. Never stop with only an input request when a safe placeholder draft can be produced.
Do not send or schedule anything until all of these are true:
- The exact recipient (not a segment or placeholder), intended channel, final message, and—when scheduling that one touch—one concrete ISO-8601
dispatch_attimestamp plus timezone are shown and explicitly approved. Approval covers only the single currently due touch. Draft windows such asDay 3–4are not exact approval, and no approval or provider feature authorizes pre-scheduling later cadence touches. - Jurisdiction, channel, lawful basis with its evidence reference, and contact eligibility are recorded.
Unknownor missing eligibility fails closed; this skill does not invent a legal basis or provide legal advice. - Inside each actual delivery job, after resolving the transient recipient and immediately before the provider send call, resolve and verify the bundle runtime as shown below, then run live consent-registry
is-suppressed. A suppressed result, missing subject ID, inaccessible/corrupt history, runtime/schema failure, or query error stops that dispatch. Anot suppressedresult removes only the suppression block; it does not itself prove lawful basis or authorize contact. Never reuse a cached result across cadence touches.
AARON_SKILLS_ROOT="${CLAUDE_PLUGIN_ROOT:-$(git rev-parse --show-toplevel 2>/dev/null || true)}"
PROJECT_ROOT="${PROJECT_ROOT:-}"
SUBJECT_ID="${SUBJECT_ID:-}"
case "$PROJECT_ROOT" in
/*) ;;
*) echo "PROJECT_ROOT must be an absolute project path; stop dispatch." >&2; exit 1 ;;
esac
if [ -z "$AARON_SKILLS_ROOT" ] || [ -z "$PROJECT_ROOT" ] || [ -z "$SUBJECT_ID" ] || \
[ ! -d "$PROJECT_ROOT" ] || [ ! -f "$AARON_SKILLS_ROOT/.claude-plugin/plugin.json" ] || \
[ ! -f "$AARON_SKILLS_ROOT/references/system-catalog.json" ] || \
[ ! -f "$AARON_SKILLS_ROOT/references/capability-profiles.json" ] || \
[ ! -f "$AARON_SKILLS_ROOT/references/registry-event.schema.json" ] || \
[ ! -f "$AARON_SKILLS_ROOT/scripts/profile-resolver.py" ] || \
[ ! -f "$AARON_SKILLS_ROOT/scripts/registry-events.py" ]; then
echo "Verified Aaron Marketing Skills consent runtime unavailable; stop dispatch." >&2
exit 1
fi
python3 "$AARON_SKILLS_ROOT/scripts/profile-resolver.py" \
--root "$PROJECT_ROOT" --bundle-root "$AARON_SKILLS_ROOT" diagnose --json >/dev/null || exit 1
SUPPRESSION_JSON="$(python3 "$AARON_SKILLS_ROOT/scripts/registry-events.py" \
--root "$PROJECT_ROOT" is-suppressed "$SUBJECT_ID")" || exit 1
printf '%s\n' "$SUPPRESSION_JSON" | python3 -c \
'import json, sys; value = json.load(sys.stdin); raise SystemExit(0 if value.get("aggregate_id") == sys.argv[1] and value.get("suppressed") is False else 1)' \
"$SUBJECT_ID" || { echo "Recipient is suppressed or suppression result is invalid; stop dispatch." >&2; exit 1; }
PROJECT_ROOT must be supplied by the host as the verified absolute user-project root; do not infer it from the skill bundle, $PWD, a raw event, or user-controlled outreach content. When the subject ID, project root, runtime, or another send-gate input is missing, return a NEEDS_INPUT consent-check handoff to consent-registry containing only the pseudonymous subject ID if supplied, required project-root/runtime capability, intended channel, eligibility evidence refs, and the pending dispatch ref; do not claim that is-suppressed ran or automatically resume delivery. Always leave later cadence touches as unscheduled drafts. When the next touch becomes due, resolve its transient recipient again, obtain fresh exact approval for that touch, repeat every eligibility/runtime/suppression check inside its delivery job, and dispatch only that one touch.
If a recipient declines the offer or says they do not take sponsored work, void every remaining draft touch for that cadence, do not relabel the offer or switch channels, and record only the exact scoped preference inline (campaign/offer/category scope, observed_at, and opaque source_ref); persisting it or proposing it to creator-registry needs separate exact authorization. A prior preference blocks a new cadence inside its recorded scope until newer cited evidence shows the creator reopened that scope; if the old preference's scope or superseding evidence is unknown, fail closed with NEEDS_INPUT rather than inventing a cooling period. Do not call global suppress for a scoped decline or commercial objection alone. An explicit stop-contact request, unsubscribe, verified channel/provider spam complaint, or consent withdrawal voids every remaining draft touch across channels and uses the consent-registry's direct deny-only suppress path with the exact subject-free reason code: stop-contact → user-request; unsubscribe → unsubscribe; verified spam/provider complaint → complaint; consent withdrawal → withdrawal. If the verified runtime is unavailable, emit its exact immediate-suppress-handoff and state that suppression has not yet been recorded.
[Section truncated — full source on GitHub]
Full source on GitHub (appendix / reference sections omitted for length).
FAQ
- What does this skill do?
- Pitch, follow-up, negotiation, status tracking.
- Where is the authoritative source?
- SKILL.md in the aaron-marketing-skills repo — https://github.com/aaron-he-zhu/aaron-marketing-skills/blob/main/influencer/activate/outreach-manager/SKILL.md
- How do I install just this skill?
- npx skills add aaron-he-zhu/aaron-marketing-skills -s outreach-manager.