recoup-people-outreach
Industry people search, contact enrichment, outreach draft generation, and CRM enrichment via the Recoup research API. Use when asked to find managers, A&R reps, press contacts, industry people, or to draft outreach messages. Triggers on "find the manager for", "A&R at [label]", "who manages [artist]", "draft outreach", "industry contacts", "people search", "find press contacts", "CRM enrichment".
What this skill does
# People & Outreach
Industry people search, contact enrichment, and outreach draft generation
through the Recoup research API. Find the right people and draft the pitch.
```bash
export RECOUP_API_KEY="recoup_sk_..."
export RECOUP_API="https://api.recoupable.com/api"
```
## Decision tree
- **"Find [role] at [company]"** → People search + enrich
- **"Who manages [artist]?"** → People search for artist's team
- **"Draft outreach for [target]"** → Research target → draft pitch
- **"Enrich this contact"** → Structured enrichment
- **"Build an outreach list"** → Fan-out: people search → enrich each → rank
## People Search
```bash
# Search for industry people — returns multi-source profiles
curl -s -X POST "$RECOUP_API/research/people" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"A&R reps at Atlantic Records hip-hop","num_results":15}'
```
## Contact Enrichment
Pull structured data from web sources for a specific person:
```bash
# Extract from specific URLs
curl -s -X POST "$RECOUP_API/research/extract" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"urls":["https://linkedin.com/in/...","https://example.com/team"],"objective":"role, tenure, recent signings"}'
# Enrich into structured form for CRM
curl -s -X POST "$RECOUP_API/research/enrich" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":"Jane Doe A&R at Atlantic Records","schema":{"type":"object","properties":{"title":{"type":"string"},"recent_signings":{"type":"array","items":{"type":"string"}},"contact":{"type":"string"}}},"processor":"core"}'
```
## Outreach Workflow
End-to-end: research → find contacts → draft outreach.
```bash
# 1. Research the artist (full sweep — use recoup-artist-research skill)
# Get: cities, listeners, playlist reach, competitive position
# 2. Find the target contact
curl -s -X POST "$RECOUP_API/research/people" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"playlist curator indie pop Spotify","num_results":10}'
# 3. Enrich promising contacts
curl -s -X POST "$RECOUP_API/research/enrich" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":"{contact_name} {role}","schema":{"type":"object","properties":{"name":{"type":"string"},"role":{"type":"string"},"company":{"type":"string"},"recent_work":{"type":"array","items":{"type":"string"}}}}}'
# 4. Draft personalized outreach (LLM synthesis — no tool call)
```
## Draft rules
When drafting outreach:
1. **Reference specific data** — don't write "love your music." Write "Your
track has 450K playlist reach across 12 editorials, with a geographic
concentration in São Paulo that matches our roster's expansion target."
2. **Draft, don't execute.** Present the draft for the user to send. This skill
does NOT send emails, DMs, or contact anyone.
3. **Include the angle.** Every outreach needs a clear "why you, why now" based
on the research data.
4. **Keep it short.** Industry people get 100+ pitches. 3-4 sentences max for
cold outreach.
## CRM Enrichment Pattern
For bulk contact enrichment (e.g., enriching an Attio or HubSpot list):
```bash
# For each contact:
curl -s -X POST "$RECOUP_API/research/enrich" \
-H "x-api-key: $RECOUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":"{name} {company}","schema":{"type":"object","properties":{"title":{"type":"string"},"company":{"type":"string"},"location":{"type":"string"},"recent_activity":{"type":"string"},"linkedin_url":{"type":"string"}}}}'
```
## Critical gotchas
- **`/research/enrich` schemas must include `"type":"object"` at the top level.**
- **`/research/enrich` takes 60–90s per call.** Don't fan out across 50 contacts
without batching expectations.
- **`/research/people` returns multi-source profiles.** Results may include
LinkedIn, company pages, press mentions. Quality varies by person's public
footprint.
- **`/research/extract` objective field guides extraction.** Be specific about
what you want.
## Output format
Produce a ranked outreach list:
| Contact | Role | Company | Recent Work | Angle | Draft |
|---------|------|---------|-------------|-------|-------|
| Jane Doe | A&R | Atlantic | Signed 3 hip-hop acts in 2025 | Genre fit + growth velocity | "Hi Jane, ..." |
## References
- **`references/endpoints.md`** — people, enrich, extract endpoints
- **`references/workflows.md`** — Workflow 11 (People Outreach), Example A (Peer Collab Outreach)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.