Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

enrich-people-with-email-and-phone通过电子邮件和电话丰富人们的生活

Agent Skill

enrich-people-with-email-and-phone 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

7

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:enrich-people-with-email-and-phone(通过电子邮件和电话丰富人们的生活)
来源仓库:https://github.com/openfunnel/openfunnel
仓库路径:skills/enrich-people-with-email-and-phone
安装命令:
npx skills add https://github.com/openfunnel/openfunnel --skill enrich-people-with-email-and-phone
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/openfunnel/openfunnel --skill enrich-people-with-email-and-phone

简介

为 OpenFunnel 内已有人员记录补充工作邮箱与电话号码。

  • 仅限通过平台信号发现或 ICP 匹配获得的人群,不支持外部名单导入。
  • 通过内部 API 批量更新联系人元数据,助力销售团队精准沟通。
  • 必须运行 signup.sh 完成认证,api.sh 脚本会自动读取 .env 中的密钥。
  • enrich-people-with-email-and-phone 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Enrich People with Email and Phone

Enrich people already in OpenFunnel with work email addresses and/or phone numbers. This only works with people discovered through OpenFunnel signals, enrichment, or ICP matching — you cannot enrich arbitrary contacts.

API Calls

This skill bundles two scripts in the same directory as this SKILL.md file. Never read or reference API credentials directly.

  • signup.sh — handles authentication. Writes credentials to .env internally. Never exposes the API key.
  • api.sh — handles all authenticated API calls. Reads credentials from .env internally.

First, resolve the script paths relative to this file's location:

SKILL_DIR="$(dirname "$(find ~/.agents/skills -name SKILL.md -path "*/enrich-people-with-email-and-phone/*" 2>/dev/null | head -1)")"
API="$SKILL_DIR/api.sh"
SIGNUP="$SKILL_DIR/signup.sh"

Then use $SIGNUP for auth and $API for all other calls.

When to Use This Skill

  • "Get work emails for these people"
  • "Enrich the people at Ramp with phone numbers"
  • "Find emails for all the VPs I found in my last signal"
  • "Get contact info for people in my hiring signal results"
  • "Enrich emails for people at account ID 12345"

Agent Rules

  1. NEVER rewrite or reframe the user's query. Use their exact words. Ask if unclear — don't modify yourself.
  2. Only enrich OpenFunnel people. This skill cannot enrich arbitrary contacts. People must already exist in OpenFunnel (from signals, enrichment, or ICP matching).
  3. Confirm before enriching. Enrichment costs credits. Always show the count and ask before running.
  4. Present what the API returns. No fabrication, no inference.
  5. Never output or log API credentials. All authenticated calls go through api.sh.

Workflow

0. Agent Auth Check

Before anything, test if credentials are working by running:

bash "$API" POST /api/v1/signal/get-signal-list '{"pagination": {"limit": 1, "offset": 0}}'

If the call succeeds (returns JSON with signals): skip to Step 1.

If the call fails (returns an error or missing credentials message):

### Welcome to OpenFunnel

OpenFunnel turns daily events in your market into pipeline
— using OpenFunnel's Event Intelligence engine.

To get started, I'll authenticate you via the API.

**What's your work email?**

Wait for user input. Then:

  1. Run bash "$SIGNUP" start "<user_email>"

- Returns {"status": "verification_code_sent", "email": "..."} on success

  1. Tell the user a 6-digit code was sent: I sent a 6-digit verification code to **{email}**. Reply with the code.
  2. Wait for input. Run bash "$SIGNUP" verify "<user_email>" "<code>"

- On success: returns {"status": "authenticated", "user_id": "..."}. Credentials are written to .env and .gitignore is updated automatically. - On failure: returns {"status": "failed",...}

  1. Verify with bash "$API" POST /api/v1/signal/get-signal-list '{"pagination": {"limit": 1, "offset": 0}}'
  2. If verification succeeds → continue to Step 1
  3. If sign-up fails → ask user to retry
  4. If verify fails → tell user the code was invalid or expired (up to 10 attempts in 24 hours), offer to retry or resend

1. Get the people IDs

The user needs to tell you which people to enrich. There are three ways to get people IDs:

Option A: From a specific account

If the user names a company or gives an account ID, fetch people from that account:

bash "$API" POST /api/v2/account/batch '{"account_ids": [<id>], "icp_people_page": 1, "icp_people_page_size": 100}'

The response contains icp_people with person_id for each person.

Option B: From the full people list with filters

If the user wants to enrich a filtered set of people (e.g. "all VPs in Engineering"), first get available filters:

bash "$API" GET /api/v1/people/filters

This returns all filterable fields with their valid options. Then fetch matching people IDs:

bash "$API" POST /api/v1/people/list '{"filters": {<user_filters>}, "page": 0, "page_size": 500}'

Returns people_ids array and total_count.

Option C: User already has people IDs

If the user provides people IDs directly (from a previous signal, enrichment, or other skill), use those.


2. Confirm what to enrich

Present the enrichment plan before running:

### Enrichment Plan

**People to enrich:** {count} people
**Enrich emails:** {yes/no}
**Enrich phones:** {yes/no}

⚡ *Only successful finds consume credits. Max 500 people per request.*

Proceed? (yes / no)

If the user has more than 500 people, explain that enrichment will be batched in chunks of 500.

Ask the user what they want enriched if they haven't specified:

What contact info do you need?

1. **Work emails only** (default)
2. **Phone numbers only**
3. **Both emails and phone numbers**

3. Run enrichment

bash "$API" POST /api/v1/enrich/people '{"people_ids": [<ids>], "enrich_emails": true, "enrich_phones": false}'
  • Max 500 people per request
  • If more than 500, split into chunks and run sequentially

Then poll for completion:

bash "$API" GET /api/v1/enrich/people/<job_id>

Polling guidance:

  • Poll every 5 seconds
  • Typical runtime is about 2 seconds per person
  • Stop when status is completed or failed

4. Present results

When the job completes, present the results:

### Enrichment Complete

**Total processed:** {progress.total}
**Emails found:** {progress.emails_found}
**Phones found:** {progress.phones_found}
**Credits used:** {credits_used.total}

| Name | Email | Phone | Status |
|------|-------|-------|--------|
| {person_name} | {email or "—"} | {phone_number or "—"} | {status} |
| ... | ... | ... | ... |

Status meanings:

  • enriched — contact info found
  • already_enriched — already had this info
  • not_found — lookup completed but no result
  • no_linkedin_url — can't enrich without a LinkedIn URL
  • error — enrichment failed for this person

5. What's next

### What would you like to do next?

1. **Enrich more people** — different account, different filters
2. **Export to CRM** — push enriched contacts to Salesforce or HubSpot
3. **Research an account** — deep dive into a specific company

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.72%
按下载量换算31

Claude

32.1%
按下载量换算29

Cursor

17.06%
按下载量换算16

Gemini CLI

8.97%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills