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

find-companies-having-simple-signals寻找具有简单信号的公司

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

7

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:find-companies-having-simple-signals(寻找具有简单信号的公司)
来源仓库:https://github.com/openfunnel/openfunnel
仓库路径:skills/find-companies-having-simple-signals
安装命令:
npx skills add https://github.com/openfunnel/openfunnel --skill find-companies-having-simple-signals
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openfunnel/openfunnel --skill find-companies-having-simple-signals

简介

find-companies-having-simple-signals 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Find Accounts Skill

Find companies based on what they're doing — hiring, posting, or using specific technologies. This skill checks if a signal is already tracking what the user wants, returns results if so, or deploys a new signal if not.

If the user is looking for people (not companies), use the find-people-having-simple-signals skill instead. If the user is asking about a specific company, use account intelligence or enterprise research instead.

When to Use This Skill

  • "Find companies that are looking to adopt Kubernetes"
  • "Find companies posting about SOC2 compliance"
  • "Companies using Snowflake"
  • "Companies hiring AI engineers"
  • "Find companies posting about their Series A"

Agent Rules

  1. Don't deploy signals without confirming. Signals cost credits. Always confirm before deploying.
  2. Don't guess the signal type. If ambiguous (could be hiring or social), ask.
  3. Close match ≠ loose match. "Building voice AI agents" ≈ "building voice agents" but ≠ "building in-house voice agents." If you have to think about it, it's not a match.
  4. Present what the API returns. No fabrication, no inference.

Workflow

0. Agent Auth Check

Before anything, check that .env contains OPENFUNNEL_API_KEY and OPENFUNNEL_USER_ID.

If both exist: skip to Step 1.

If either is missing:

### Welcome to OpenFunnel

OpenFunnel finds companies based on what they're doing — hiring, posting, or using specific technologies.

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

**What's your work email?**

Wait for user input. Then:

  1. Call POST /api/v1/agent/sign-up with {"email": "<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 POST /api/v1/agent/verify with {"email": "<user_email>", "otp_code": "<code>"}
  4. On success, write to .env:

- OPENFUNNEL_API_KEY={api_key} - OPENFUNNEL_USER_ID={email}

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

1. Understand the request

What activity or behavior is the user looking for? If unclear, ask.

2. Check existing signals

POST /api/v1/signal/get-signal-list → get all currently deployed signals.

A signal is unique by query + ICP pair. The same query with a different ICP is a different signal and needs separate deployment. When checking for matches, compare BOTH:

  1. Query match — close match on signal name. Same meaning, different wording is fine:

- "Find companies building voice AI agents" ≈ "Find companies building voice agents" → match - "Find companies building voice AI agents" ≠ "Find companies building in-house voice agents" → not a match - "Companies hiring for Kubernetes" ≈ "Companies looking to adopt Kubernetes" → match - "Companies hiring for Kubernetes" ≠ "Companies migrating to container orchestration" → not a match, too much inference

  1. ICP match — the signal's icp.id must match the user's intended ICP. If the user hasn't specified an ICP yet, note which ICP the existing signal uses.

If potential match found (query + ICP both match):

I found an existing signal that covers this:

**{signal_name}** (ID: {signal_id})
**ICP:** {icp.name}

Want to use this one, or deploy a new signal?

If query matches but ICP is different:

I found a signal with a similar query but a different ICP:

**{signal_name}** (ID: {signal_id})
**ICP:** {icp.name}

This uses a different ICP than what you need. Want to:
1. Use this one anyway
2. Deploy a new signal with the right ICP

Wait for user input.

3. Get results from existing signal

POST /api/v1/signal/ {signal_id} → returns accounts and people matched by this signal.

### Results from: {signal_name}

**{total_accounts} accounts found | {total_people} people found**

If the user wants full details, pull with POST /api/v2/account/batch {account_ids: [...]}.

After presenting:

Would you like to:
1. See full details on specific accounts
2. Narrow results with filters (size, funding, location)
3. Deploy an additional signal for broader coverage ⚡ *uses credits*

4. Classify and deploy a new signal

Three company signal types:

Deep Hiring Signal

When: Companies hiring for something, looking to build something, facing a pain point.

Core principle: Job posts are modern RFPs — budget is committed, leadership is aligned, they're ready to act. What a company hires for tells you what they're building, scaling, or fixing.

Prompt format: "Find companies that are looking to [activity] or facing [pain point]"

Examples:

  • "Find Companies with Hiring post mentioning Implementing Guardrails for AI agents"
  • "Find Companies with Hiring post mentioning Setting up Agent Evals and Testing"
  • "Find Companies with Hiring post mentioning Migrating from Heroku to AWS"
  • "Find Companies with Hiring post mentioning Scaling their PLG motion"
  • "Find Companies with Hiring post mentioning Building out their first data engineering team"
  • "Find Companies with Hiring post mentioning Adopting Kubernetes"

Timeframe: Last day to last year. Default: last 3 months.

Deploy: POST /api/v1/signal/deploy/deep-hiring-agent {name, search_query, timeframe, icp_id}


Social Listening Signal (Company)

When: Companies posting about a topic, milestone, or announcement.

What it captures:

  • Decision-maker pain posts (VP/C-level posting about challenges — stronger than press releases)
  • Budget signals (headcount growth, new initiatives, strategic pivots)
  • Vendor evaluation (comparing tools, asking for recommendations, discussing migrations)
  • Conference/event attendance

Prompt format: "Find companies posting about [topic or milestone or announcement]"

Examples:

  • "Find companies posting about their Series A round"
  • "Find companies posting about growing their GTM team"
  • "Find companies posting about attending RSAC conference"
  • "Find companies posting about adding AI to their existing stack"

Timeframe: Last day to last year.

Deploy: POST /api/v1/signal/deploy/social-listening-agent {name, search_query, signal_target: "account", timeframe, icp_id}


Technography Signal

When: Companies using a specific tool, platform, or technology. Inferred from job postings.

Important: Input must be a specific tool name — not general descriptions.

Good inputs: Kubernetes, Snowflake, React, Terraform, dbt, Kafka Bad inputs: "cloud infrastructure" (too general), "data tools" (not specific), "modern stack" (meaningless)

Note on timing: Technographic data alone is a trait (static). It becomes a signal when combined with timing — "just adopted Snowflake" vs "has used Snowflake for 5 years" are very different. The timeframe parameter controls this.

Timeframe: Last day to last year. Default: last 3 months.

Deploy: POST /api/v1/signal/deploy/technography-search-agent {name, technographic_list, technographic_variations, technography_context, timeframe, icp_id}


If ambiguous — e.g., "companies investing in AI" could be hiring or social — ask:

This could be tracked through hiring signals or social signals. Which would be more useful?

1. **Hiring signals** — reveals budget commitment, team building, specific roles
2. **Social signals** — reveals announcements, thought leadership, public positioning
3. **Both** — deploy two signals for broader coverage ⚡ *uses more credits*

5. Confirm before deploying

First, fetch available ICP profiles via GET /api/v1/icp/list. If the user has ICPs, present them:

I'll deploy a **{signal type}** signal:

**Name:** {auto-generated descriptive name}
**Query:** "{formatted prompt}"
**Timeframe:** {default}

**ICP Profile:**
{list available ICPs by name}
→ I'd recommend using **{first/most relevant ICP name}** to qualify results.
   Or "none" to skip ICP filtering.

⚡ *This will use credits from your plan.*

Other options:
- **Repeat daily** — re-run this signal every day for continuous monitoring
- **Audience name** — auto-add results to a named audience
- **Credit limit** — cap spending on this signal

Set any of these, or "deploy" to go with defaults.

If the user types "none" or skips ICP selection:

Auto-create a broad fallback ICP:

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

Call POST /api/v1/icp/create with the above, then tell the user:

No ICP selected, so I created a broad fallback ICP: **{name}** (ID: {id})

Using this ICP for your signal.

If the user has no ICP profiles:

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 POST /api/v1/icp/create.

If skip → auto-create the broad fallback ICP as above.

Then deploy with the selected or created ICP ID.

6. Post-deploy

Signal deployed: **{name}** (ID: {signal_id})

This is now scanning {job posts / social posts / tech stack data}.
Results come in as they're found — just say "check on {signal_name}" anytime.

7. Check back

POST /api/v1/signal/ {signal_id} → present whatever accounts and people have been found so far.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.93%
按下载量换算24

Claude

25.89%
按下载量换算17

Cursor

17.86%
按下载量换算11

Gemini CLI

9.66%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills