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

enterprise-account-research企业账户研究

Agent Skill

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

总安装

442

周安装

19

GitHub Stars

7

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:enterprise-account-research(企业账户研究)
来源仓库:https://github.com/openfunnel/openfunnel
仓库路径:skills/enterprise-account-research
安装命令:
npx skills add https://github.com/openfunnel/openfunnel --skill enterprise-account-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openfunnel/openfunnel --skill enterprise-account-research

简介

深度解析企业级客户组织结构,识别多团队采购行为与决策链条。

  • 揭示同一企业内不同部门的需求差异、预算周期与优先级错位。
  • 提供可操作的接触点建议,避免因误解采购主体导致推广失效。
  • 需输入具体公司名称与行业标签,否则无法区分 enterprise 与普通 company。
  • enterprise-account-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Enterprise Account Research Skill

Premise: Why Enterprise Accounts Are Different

An enterprise is not a company. It's 100+ teams and product lines operating under one logo — each with their own leaders, budgets, priorities, and timelines. They don't coordinate purchases. The VP of ML Platform has no idea what the Applied AI team is evaluating.

Multiple teams within the same enterprise might need your product, but for completely different reasons, on completely different timelines, with completely different budgets. A signal at "Capital One" is meaningless unless you know *which team* at Capital One it's coming from.

This skill maps the teams inside an enterprise, finds which ones are facing a specific pain-point, and identifies the leaders and people associated with each.

When to Use This Skill

User is asking about a large/enterprise company + a specific pain-point or use case. Two modes:

Net new prospecting:

  • "Which team at Capital One needs agent evals?"
  • "Research Goldman Sachs for synthetic data opportunities"
  • "Find who at Adobe is working on AI guardrails"

Expansion within existing accounts:

  • "We're already in JP Morgan's trading platform — find other teams that need us"
  • "Where else inside Bank of America can we expand?"

Both modes use the same workflow. If the user just says "tell me about Acme Corp" without a specific pain angle, this skill may not be the right fit — it's for pain-targeted enterprise research, not general account lookups.

Input

Two things are needed:

  1. The enterprise account — company name or domain
  2. The pain-point / use case — what the seller helps with

If the user provides the company but not the pain-point, ask: *"What specific problem or use case are you going after at [company]?"*

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 "*/enterprise-account-research/*" 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.

Agent Rules

  1. NEVER fabricate data. If a field is null or missing — say it's missing.
  2. Present what the API returns. No embellishment.
  3. Wait for user input at every decision point. Do not auto-proceed.
  4. Keep messages short. One block of info at a time. Don't front-load explanations — give context only when the user needs to make a decision.
  5. No jargon. Don't use internal OpenFunnel terminology the user wouldn't know.
  6. Always recommend. At every decision point, have an opinion on which option is best for the user and why. Mark it as "(recommended)" with a short reason. Base recommendations on: what data is available, what's missing, and what would get the user closer to identifying the right team and leader.

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. Call bash "$SIGNUP" start "<user_email>"
  2. Tell the user a 6-digit code was sent: I sent a 6-digit verification code to **{email}**. Reply with the code.
  3. Wait for input. Call bash "$SIGNUP" verify "<user_email>" "<code>"

The response is: {"status": "authenticated", "user_id": "..."}. Credentials are written to .env and .gitignore is updated automatically.

  1. If authentication succeeds → continue to ICP check
  2. If sign-up fails → ask user to retry
  3. If verify fails → tell user the code was invalid or expired (up to 10 attempts in 24 hours), offer to retry or resend

ICP Check

After auth, fetch ICP profiles via bash "$API" GET /api/v1/icp/list.

If ICPs exist: note the available ICPs and continue to Step 1.

If no ICPs exist:

You don't have an ICP profile yet. A quick one will make results much sharper —
it filters by company size, location, and the roles you're targeting.

1. **Quick setup** (recommended) — takes 30 seconds
2. **Skip** — auto-create a broad fallback ICP and continue

If quick setup → collect ICP name, target roles, company size, and location. Create via bash "$API" POST /api/v1/icp/create '<json_body>'.

If skip → auto-create a broad fallback ICP:

{
  "name": "Broad Default ICP",
  "target_roles": ["Any"],
  "employee_ranges": ["1-10", "11-50", "51-200", "201-500", "501-1000", "1001-5000", "5001-10000", "10001+"],
  "location": ["Any"]
}

Call bash "$API" POST /api/v1/icp/create '<json_body>', then tell the user:

I created a default ICP profile: **{name}** (ID: {id})

This keeps things running. For sharper results, set up a proper ICP segment
with your target roles, company size, and location using the `advanced-account-setup` skill.

Continue to Step 1.


1. Resolve the company

User provides a name or domain → bash "$API" POST /api/v1/account/search-by-name-or-domain '{"query": "<name_or_domain>"}'.

ResultAction
Single matchProceed with the account ID
Multiple matchesPresent options — ask user to pick
No matchesAsk for exact domain, offer deep enrichment

2. Company card

bash "$API" POST /api/v2/account/batch '{"account_ids": [<id>]}' → present a short summary:

## {company_name}

{traits.description — 1-2 sentences max}

| | |
|---|---|
| Employees | {employee_count} |
| HQ | {location} |
| Industry | {industry} |
| Signals | {signal_count} detected |

That's it for now. Don't dump everything.

3. Team coverage check

Count how many hiring signals have extracted_team_name populated. This determines the next step.

If teams are found (≥ 1 unique team):

We found {X} teams at {company_name} with signals related to your space:

{list team names}

Would you like to:
1. See the team breakdown — who's on each team, what signals they have
2. Run deep enrichment — find more teams and people (takes 15-30 min, uses credits)
3. Jump to the full research brief

Recommendation logic: If teams exist, recommend seeing the breakdown first. If team count is low (1-2) for a very large enterprise, mention that deep enrichment could uncover more teams.

If no teams found but signals exist:

{company_name} has {X} hiring signals but the data doesn't have team mapping yet.
This means we can see the job posts but can't tell which team they belong to.

Deep enrichment will fix this — it re-processes existing signals to extract team names
and finds new people mapped to specific teams. Takes 15-30 min, uses credits.

Would you like to:
1. Run deep enrichment (recommended) ⚡ *uses credits from your plan*
2. View the signals anyway without team grouping

If no signals at all:

{company_name} doesn't have signal coverage yet.

Deep enrichment will scan for hiring posts, social activity, and team-mapped contacts.
Takes 15-30 min.

Would you like to:
1. Run deep enrichment (recommended) ⚡ *uses credits from your plan*
2. Exit

Wait for user input.

4. Deep enrichment (if chosen)

IMPORTANT: Chat experience rule. Present the entire configuration block below as a single message. Do NOT make API calls (like fetching ICP lists) in the middle of presenting options. All options and explanations must be rendered in one clean block. API calls only happen AFTER the user responds.

Configuration — present as one block:

Deep enrichment works best when it knows what to look for:

1. **Goal** — What does your company do? What pain-point do you solve?
   (e.g., "We help companies build and deploy AI voice agents")
   Default: general enrichment with no product-specific focus

2. **Target roles** — Specific roles to find (e.g., "VP Engineering", "Head of AI")
   Default: all ICP-relevant roles

3. **ICP Profile** — If you have a saved ICP profile name/ID
   Default: your first ICP profile

Set any of these, or "none" for defaults.

Wait for user input. For each one they want to set, collect the value. If the user provides an ICP name instead of an ID, look it up via bash "$API" GET /api/v1/icp/list to resolve the ID.

Then call bash "$API" POST /api/v1/enrich/deep-enrich '<json_body>' with:

  • domain — from step 1 (already known, do NOT ask for it)
  • goal — user's input or default
  • target_icp_roles — user's input or default
  • icp_id — user's input or default
  • timeframe — 90
  • max_jobs_to_check — 200

Monitoring — present after triggering:

Deep enrichment running for {domain}. Typically 15-30 minutes.

1. **I'll monitor and notify you** when it's done (recommended)
2. **Check back later** — just ask me anytime

If user picks monitoring:

Poll in the background:

  • Re-fetch bash "$API" POST /api/v2/account/batch '{"account_ids": [<id>]}' every 3 minutes
  • Compare people count to pre-enrichment count
  • After 2 consecutive polls where count stabilized and differs from initial → done
  • Timeout after 45 minutes

When done, notify:

Deep enrichment complete for {domain}.
- Before: {initial} signal-mapped people
- After: {final} signal-mapped people

Want to see the updated team view?

If timed out with changes:

Deep enrichment for {domain} is still processing after 45 minutes but data has started coming in.
- Before: {initial} signal-mapped people
- After: {final} signal-mapped people (may still increase)

Want to see what's available so far?

If timed out with no changes:

Deep enrichment for {domain} has been running for 45 minutes with no new data yet.
It may still be processing — check back later.

If user picks check back later:

Got it. Deep enrichment is processing for {domain}. Just ask me to check on {company_name} anytime.

After enrichment (or when user checks back):

Re-fetch bash "$API" POST /api/v2/account/batch '{"account_ids": [<id>]}', go back to step 3 to re-assess team coverage with updated data. Present before/after comparison.

5. Team-first view

This is the core output. Every signal lives under a team. Every person is either confirmed or estimated.

Grouping logic:

  1. Group hiring signals by extracted_team_name — each unique name is a team
  2. Signals with no team name (None, No team extracted) each become their own bucket: "Unknown Team 1", "Unknown Team 2", etc. — we can't assume two unassigned signals are from the same team
  3. Social and engagement signals: attach to a named team if extracted_team_name matches, otherwise their own unknown bucket

People classification:

For each person in a signal's people[] array:

  • Perfect team matchperson_team_name confirms the team (exact or close match to extracted_team_name)
  • Estimated matchperson_team_name is null or doesn't match; they're associated with the signal but not confirmed on the team. Could be on a different team entirely.

Present the team map as a summary first:

### Teams at {company_name}

| Team | Signals | People (perfect team match) | People (estimated match) |
|------|---------|----------------|--------------------|
| Service Engineering | 35 | 1 | 10 |
| Conversational Design | 11 | 0 | 0 |
| Generative AI | 8 | 2 | 0 |
| ... | | | |
| Unknown Team 1 | 1 | 0 | 0 |
| Unknown Team 2 | 1 | 0 | 0 |
| ... | | | |
| **People without any team** | — | — | {icp_people_count} |

Which team would you like to drill into?

→ I'd recommend starting with **{team with most matched people or most signals}** —
  they have the strongest data.

6. Team drill-down

For the selected team, present:

Team name + people:

#### {team_name}

**People:**
| Name | Role | Status | LinkedIn | Email |
|------|------|--------|----------|-------|
| Josh Nash | Director, TPM, Chief of Staff | ✓ Perfect team match | {url} | {email} |
| Rajiv Jivan | Director of Engineering | ~ Estimated match | {url} | — |
| ... | | | | |

Signals under this team:

**{job_title}** — posted {date}
> {context}
> Source: {source_url}

**{next signal}** — posted {date}
> ...

For unknown teams, present the same way but with the signal as the identifier:

#### Unknown Team 1

**Signal:** Senior Machine Learning Engineer — posted 2026-03-26
> {context}
> Source: {source_url}

**People:** none

Then ask with a recommendation:

If people data is strong for this team:

Would you like to:
1. See another team
2. Generate the full research brief (recommended)
3. Run deep enrichment for more coverage (uses credits)

If people data is thin (few or no contacts for this team):

Would you like to:
1. Run deep enrichment (recommended — we have signals but not enough people to identify the right leader) ⚡ *uses credits from your plan*
2. See another team
3. Generate the research brief with what we have

7. Research brief

When requested, synthesize per team:

## {company_name} — {pain_point} Research

### {team_name_1}

**People:**
| Name | Role | Status | LinkedIn | Email |
|------|------|--------|----------|-------|
| {name} | {role} | ✓ Perfect team match / ~ Estimated match | {url} | {email} |

**Signals:**
- {signal type}: {one-line summary} — {date} — {source_url}

**Buying window:** {new leader / hiring surge / active evaluation — only if data supports it}

### {team_name_2}
...

### Unknown Teams
{Each unknown team bucket with its signal and any people}

### ICP Contacts (not connected to any signal or team)
{List icp_people separately.
"These contacts match your ICP criteria at {company_name} but aren't connected
to a specific team or signal."}

### Gaps
{What's missing — teams with no people, signals with no team extraction, etc.}

Every claim cites a specific signal. If data is missing, say it's missing.


How the data works

For the agent's understanding — don't explain this to the user unless they ask.

V2 batch response structure:

hiring signals have extracted_team_name — this is the primary team mapping field. Each signal also has people[] with person_team_name (sometimes more specific sub-teams).

socials signals have poster_person (the exec who posted) and sometimes extracted_team_name. Team extraction is weaker on social signals.

linkedin_engagement signals show people at the account engaging with competitor/vendor content.

icp_people are contacts matching ICP role criteria but NOT connected to any signal or team. They exist because enterprises are large — many people match ICP filters but have no signal context. For a 30,000-person company, these lack the specificity needed for targeted outreach. Always present signal-mapped people first. List icp_people separately and note they aren't connected to a specific team.

When team names are missing:

extracted_team_name can be null on older enrichments. Deep enrichment re-processes existing signals to extract teams AND discovers new signals/people with team mapping. Existing icp_people won't be retroactively mapped to teams, but new people from signals will be.

Deep enrichment always helps — even with good team coverage, it can find more teams, more people, and fresher signals.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.43%
按下载量换算55

Claude

27.9%
按下载量换算43

Cursor

19.99%
按下载量换算31

Gemini CLI

8.89%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills