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

data-enrichment数据充实

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

2,105

周安装

86

GitHub Stars

5

下载量

681
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:data-enrichment(数据充实)
来源仓库:https://github.com/merit-systems/agentcash-skills
仓库路径:skills/data-enrichment
安装命令:
npx skills add https://github.com/merit-systems/agentcash-skills --skill data-enrichment
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/merit-systems/agentcash-skills --skill data-enrichment

简介

data-enrichment 用于辅助数据整理、表格处理和指标计算。

  • 适合清洗字段、汇总数据、发现异常或生成统计口径。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 使用时需确认数据来源和时间范围,避免将样本当作全量事实;涉及敏感数据时应先确认脱敏边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Data Enrichment with x402 APIs

Use the agentcash CLI to access enrichment APIs at stableenrich.dev.

Setup

See rules/getting-started.md for installation and wallet setup.

Notes

ALWAYS use npx agentcash@latest fetch for stableenrich.dev endpoints - never curl or WebFetch. Returns structured JSON data, not web page HTML.

IMPORTANT: Use exact endpoint paths from the Quick Reference table below. All paths include a provider prefix (https://stableenrich.dev/api/apollo/..., https://stableenrich.dev/api/clado/..., etc.).

Quick Reference

TaskEndpointPriceBest For
Enrich personhttps://stableenrich.dev/api/apollo/people-enrich$0.0495Email/LinkedIn -> full profile
Enrich companyhttps://stableenrich.dev/api/apollo/org-enrich$0.0495Domain -> company data
Search peoplehttps://stableenrich.dev/api/apollo/people-search$0.02Find people by criteria
Search companieshttps://stableenrich.dev/api/apollo/org-search$0.02Find companies by criteria
Contact recoveryhttps://stableenrich.dev/api/clado/contacts-enrich$0.20Find missing email/phone
Verify emailhttps://stableenrich.dev/api/hunter/email-verifier$0.03Check deliverability
Influencer by emailhttps://stableenrich.dev/api/influencer/enrich-by-email$0.40Email -> social profiles
Influencer by socialhttps://stableenrich.dev/api/influencer/enrich-by-social$0.40Handle -> creator data
Minerva resolvehttps://stableenrich.dev/api/minerva/resolve$0.02Person -> Minerva PID + LinkedIn
Minerva enrichhttps://stableenrich.dev/api/minerva/enrich$0.05Consumer demographics + contact
Minerva email checkhttps://stableenrich.dev/api/minerva/validate-emails$0.01Check emails in Minerva DB

Workflows

Standard Enrichment

  • (Optional) Check balance: npx agentcash@latest balance
  • Use npx agentcash@latest discover https://stableenrich.dev to list all endpoints
  • Use npx agentcash@latest check <endpoint-url> to see expected parameters and pricing
  • Call endpoint with npx agentcash@latest fetch
  • Parse and present results
npx agentcash@latest fetch https://stableenrich.dev/api/apollo/people-enrich -m POST -b '{"email": "user@company.com"}'

Person Enrichment

Enrich a person using any available identifier:

npx agentcash@latest fetch https://stableenrich.dev/api/apollo/people-enrich -m POST -b '{
  "email": "john@company.com",
  "first_name": "John",
  "last_name": "Doe",
  "organization_name": "Acme Inc",
  "domain": "company.com",
  "linkedin_url": "https://linkedin.com/in/johndoe"
}'

Input options (provide any combination):

  • email - Email address (most reliable)
  • linkedin_url - LinkedIn profile URL
  • first_name + last_name - Name (works better with domain/org)
  • organization_name or domain - Helps match the right person

Returns: Name, title, company, employment history, location, social profiles, phone numbers.

Company Enrichment

Enrich a company by domain:

npx agentcash@latest fetch https://stableenrich.dev/api/apollo/org-enrich -m POST -b '{"domain": "stripe.com"}'

Returns: Company name, industry, employee count, revenue estimates, funding info, technologies used, social links.

People Search

Search for people matching criteria:

npx agentcash@latest fetch https://stableenrich.dev/api/apollo/people-search -m POST -b '{
  "q_keywords": "software engineer",
  "person_titles": ["CTO", "VP Engineering"],
  "organization_domains": ["google.com", "meta.com"],
  "person_locations": ["San Francisco, CA"]
}'

Search filters:

  • q_keywords - Keywords to search
  • person_titles - Job title filters
  • organization_domains - Company domains
  • person_locations - Location filters
  • person_seniorities - Seniority levels

Company Search

Search for companies matching criteria:

npx agentcash@latest fetch https://stableenrich.dev/api/apollo/org-search -m POST -b '{
  "q_keywords": "fintech",
  "organization_locations": ["New York, NY"],
  "organization_num_employees_ranges": ["51-200", "201-500"]
}'

Contact Recovery (Clado)

Enrich contact info from LinkedIn URL, email, or phone. Provide exactly one of linkedin_url, email, or phone:

npx agentcash@latest fetch https://stableenrich.dev/api/clado/contacts-enrich -m POST -b '{
  "linkedin_url": "https://linkedin.com/in/johndoe"
}'

Returns: Validated email addresses and phone numbers with confidence scores.

Note: For LinkedIn profile data (experience, education, skills), use Minerva /api/minerva/enrich instead of Clado.

Minerva Identity Resolution

Resolve a person to a unique Minerva PID and LinkedIn URL:

npx agentcash@latest fetch https://stableenrich.dev/api/minerva/resolve -m POST -b '{
  "records": [
    {
      "record_id": "user_001",
      "first_name": "John",
      "last_name": "Smith",
      "emails": ["john@company.com"]
    }
  ]
}'

Parameters:

  • records array with: record_id, first_name, last_name, emails, phones, linkedin_url
  • Supports fuzzy match (name + contact) and reverse lookup (email/phone only, no name needed)
  • Use match_condition_fields: ["linkedin_url"] to only return matches with LinkedIn

Minerva Enrichment

Enrich with demographics, work history, education, contact info, addresses, financial signals:

Three lookup modes: by Minerva PID (fastest), by LinkedIn URL, or by name/email/phone.

npx agentcash@latest fetch https://stableenrich.dev/api/minerva/enrich -m POST -b '{
  "records": [
    {
      "record_id": "user_001",
      "first_name": "John",
      "last_name": "Smith",
      "emails": ["john@company.com"]
    }
  ],
  "return_fields": ["full_name", "personal_emails", "phones", "work_experience"]
}'

Parameters:

  • records array with: record_id + one of minerva_pid, linkedin_url, or name/email/phone
  • return_fields array to limit response (e.g., ["full_name", "personal_emails", "phones", "work_experience"])
  • match_condition_fields to filter matches (e.g., ["email", "phone"])

Minerva Email Validation

Check if emails exist in the Minerva database:

npx agentcash@latest fetch https://stableenrich.dev/api/minerva/validate-emails -m POST -b '{
  "records": ["john@company.com", "jane@example.com"]
}'

Returns: Validation status and last-seen timestamps. Use before resolve/enrich to pre-screen lists.

Cost Optimization

Field Filtering

Reduce costs by excluding unneeded fields:

{
  "email": "john@company.com",
  "excludeFields": ["employment_history", "photos", "phone_numbers"]
}

Common fields to exclude:

  • employment_history - Past jobs (often large)
  • photos - Profile images
  • phone_numbers - If you only need email
  • social_profiles - If you don't need social links

Search Before Enrich

Use search endpoints ($0.02) to find the right records before enriching ($0.0495):

  1. Search for candidates: https://stableenrich.dev/api/apollo/people-search
  2. Review results, pick the right match
  3. Enrich only the matches you need

Email Verification (Hunter)

Verify if an email address is deliverable before sending outreach:

npx agentcash@latest fetch https://stableenrich.dev/api/hunter/email-verifier -m POST -b '{"email": "john@stripe.com"}'

Returns: Deliverability status, MX record validation, SMTP verification, confidence score, and flags for catch-all, disposable, or role-based addresses.

StatusMeaningAction
deliverableEmail exists and accepts mailSafe to send
undeliverableEmail doesn't exist or rejects mailDo not send
riskyCatch-all domain or temporary issuesSend with caution
unknownCould not determine statusTry again later

Tip: Combine with people-enrich to find and verify contacts in one pipeline:

  1. Search: people-search ($0.02) -> find candidates
  2. Enrich: people-enrich ($0.0495) -> get email
  3. Verify: hunter/email-verifier ($0.03) -> confirm deliverability

Influencer Enrichment

Enrich social media influencer/creator profiles across Instagram, TikTok, YouTube, and Facebook.

Find Profiles by Email

npx agentcash@latest fetch https://stableenrich.dev/api/influencer/enrich-by-email -m POST -b '{
  "email": "creator@example.com",
  "platform": "instagram",
  "enrichment_mode": "enhanced"
}'

Parameters:

  • email — the creator's email address (required)
  • platform"instagram", "tiktok", "youtube", "twitter", "facebook" (required)
  • enrichment_mode"enhanced" for full data (recommended)

Returns: Social media profiles, follower counts, engagement metrics, audience demographics, contact info, content categories.

Enrich by Social Handle

npx agentcash@latest fetch https://stableenrich.dev/api/influencer/enrich-by-social -m POST -b '{
  "platform": "instagram",
  "username": "creator_handle",
  "enrichment_mode": "enhanced",
  "email_required": "must_have"
}'

Parameters:

  • platform"instagram", "tiktok", "youtube", "twitter", "facebook" (required)
  • username — handle on that platform (required)
  • enrichment_mode"enhanced" for full data (recommended)
  • email_required"must_have" to only return profiles with email

Returns: Full profile with engagement metrics, contact info (email, phone), audience demographics, brand affinity, cross-platform links.

When to Use Which Provider

  • Apollo/Clado — B2B professional data (job titles, company, employment history)
  • Minerva — Consumer profiles (demographics, income/wealth estimates, address history, life events, personal contact info)
  • Influencer — Social media creators (followers, engagement, audience data)

Handling missing data

If any query fails to return the data you are looking for, revisit the list of available APIs.

Oftentimes, if Apollo is missing data, Clado or Minerva will have it, and vice versa. For consumer profiles (demographics, addresses, financial signals), try Minerva. For social media creators, try the influencer endpoints. For email deliverability, use Hunter.

If those still fail, use built-in WebSearch and WebFetch tools to find additional information like a company domain name or LinkedIn URL, and then use that data to make more targeted queries.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.92%
按下载量换算217

Claude

29.32%
按下载量换算200

Cursor

19.81%
按下载量换算135

Gemini CLI

9.67%
按下载量换算66

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills