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

funding-signal-monitor资金信号监测

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

630

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:funding-signal-monitor(资金信号监测)
来源仓库:https://github.com/gooseworks-ai/goose-skills
仓库路径:skills/funding-signal-monitor
安装命令:
npx skills add https://github.com/gooseworks-ai/goose-skills --skill funding-signal-monitor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gooseworks-ai/goose-skills --skill funding-signal-monitor

简介

funding-signal-monitor 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

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

SKILL.md

Funding Signal Monitor

Detect recently-funded startups as buying signals. When a company raises a round, they have fresh capital, aggressive growth plans, and urgent needs for tools and services. This skill finds those companies across multiple sources, qualifies them, and outputs a ranked list ready for outreach.

Why This Works

When a company announces funding, they've:

  • Received capital earmarked for growth (hiring, tooling, infrastructure)
  • Committed to investors on aggressive milestones
  • Entered a 12-18 month sprint to hit next-stage metrics
  • Begun evaluating vendors immediately (the "post-raise buying window" is 1-3 months)

Series A-C companies are the sweet spot: enough money to buy, small enough to move fast.

Cost

ComponentCost
Web Search (WebSearch tool)Free
Hacker News (Algolia API)Free
Twitter scraper (Apify)~$0.05-0.10 per run
Reddit scraper (Apify)~$0.05-0.10 per run

Typical run: $0.10-0.20 total. Web Search + HN are free and provide the bulk of results.

Setup

1. Dependencies

pip3 install requests

2. Apify API Token (for Twitter/Reddit scrapers)

export APIFY_API_TOKEN="apify_api_YOUR_TOKEN_HERE"

Not required if you only want Web Search + HN results.

Usage

Phase 1: Configuration

Accept parameters from the user:

ParameterRequiredDefaultDescription
target-stagesYesComma-separated: "Series A, Series B, Series C"
target-industriesNoallFilter: "SaaS, AI, fintech, healthtech"
min-amountNononeMinimum raise amount (e.g., "$5M")
lookback-daysNo7How far back to search
output-pathNostdoutWhere to save the markdown report

Phase 2: Multi-Source Search

Run these searches in parallel to maximize coverage:

A) Web Search (WebSearch tool)

Run 4-6 queries using the WebSearch tool. Vary the phrasing to catch different announcement styles:

  • "Series A announced this week 2026"
  • "Series B funding round 2026"
  • "startup raised Series A"
  • "seed funding announcement startup"
  • "[industry] startup funding" (if industry filter specified)
  • "raised $" AND "Series" AND "2026"

For each result, extract:

  • Company name
  • Amount raised
  • Stage (Seed, A, B, C, etc.)
  • Date of announcement
  • Lead investors

B) Twitter Search (twitter-mention-tracker)

python3 skills/twitter-mention-tracker/scripts/search_twitter.py \
  --query "\"excited to announce\" AND (\"raised\" OR \"Series A\" OR \"Series B\" OR \"funding\")" \
  --since <7-days-ago> --until <today> --max-tweets 50 --output json

Funding announcements often break on Twitter first. Founders post "excited to announce" or "thrilled to share" when rounds close.

C) Hacker News (funding-signal-monitor helper script)

python3 skills/funding-signal-monitor/scripts/search_funding.py \
  --stages "Series A,Series B" --days 7 --min-points 5 --output json

Or use the hacker-news-scraper directly:

python3 skills/hacker-news-scraper/scripts/search_hn.py \
  --query "raised funding Series" --days 7 --output json

D) Reddit Search (reddit-post-finder)

python3 skills/reddit-post-finder/scripts/search_reddit.py \
  --subreddit "startups,SaaS,technology" \
  --keywords "raised,Series A,Series B,funding round" \
  --days 7 --sort hot --output json

Phase 3: Consolidation & Qualification

After collecting results from all sources:

  1. Deduplicate across sources. Same company appearing in multiple sources = higher confidence signal.
  2. For each company, assess: Criterion How to Evaluate Stage Seed, A, B, C, or later — must match target-stages Amount raised Parse from announcement — filter by min-amount if specified Industry Infer from company description — filter if target-industries specified Cloud likelihood Tech/SaaS/AI companies = high; traditional industries = lower Team size estimate Series A = 10-30, Series B = 30-100, Series C = 100-300 Recency More recent = more urgent buying window
  3. Score each company:

- +3 points: Appears in multiple sources - +2 points: Stage matches target exactly - +2 points: Industry matches target - +1 point: High cloud likelihood (tech/SaaS/AI) - +1 point: Announced within last 3 days - -1 point: Stage is outside target range - -2 points: Non-tech industry (unless specifically targeted)

  1. Rank by score descending.

Phase 4: Output

Produce a ranked report with the following columns:

ColumnDescription
RankScore-based ranking
CompanyCompany name
AmountAmount raised
StageFunding stage
DateAnnouncement date
InvestorsLead investors
IndustryCompany's industry/vertical
Source(s)Where the signal was found (web, Twitter, HN, Reddit)
Cloud LikelihoodHigh / Medium / Low
Outreach AngleSuggested approach based on stage and industry

Outreach angle templates:

  • "Scale fast with fresh capital" — Best for Series A. They're building the team and need tools to move fast before the money runs out.
  • "Operationalize before the next round" — Best for Series B. They need to professionalize processes before Series C diligence.
  • "Enterprise-ready at scale" — Best for Series C. They're going upmarket and need enterprise-grade tooling.

Save to the specified output path as markdown, or print to stdout.

Optionally export to Google Sheet using the google-sheets-write capability.

Helper Script

A standalone Python script is included for searching Hacker News specifically for funding signals:

# Search HN for Series A and B announcements in last 7 days
python3 skills/funding-signal-monitor/scripts/search_funding.py \
  --stages "Series A,Series B" --days 7 --output json

# Filter to high-engagement posts only
python3 skills/funding-signal-monitor/scripts/search_funding.py \
  --stages "Series A,Series B,Series C" --days 14 --min-points 10 --output text

# Search all stages with industry keyword
python3 skills/funding-signal-monitor/scripts/search_funding.py \
  --stages "Series A" --days 7 --keywords "AI,fintech" --output json

AI Agent Integration

When using this skill as an agent, the typical flow is:

  1. User specifies target stages, optional industry filter, optional min amount
  2. Agent runs multi-source search (Phase 2) in parallel
  3. Agent consolidates and scores results (Phase 3)
  4. Agent presents ranked list with outreach angles
  5. User selects companies to pursue
  6. Agent chains to company-contact-finder to find decision-makers
  7. Agent chains to cold-email-outreach to launch outreach

Example prompt:

"Find companies that raised Series A or B in the last week. Focus on SaaS and AI companies. We sell developer tools."

The agent should:

  • Run all source searches
  • Consolidate and score
  • Present the top 10-15 companies with reasoning
  • Suggest next steps (find contacts, launch outreach)

The agent should NOT:

  • Do any outreach without user confirmation
  • Skip the scoring/qualification step
  • Rely on a single source (multi-source coverage is the point)

Tips

  • Run weekly for best coverage. Funding announcements have a ~1 week news cycle.
  • Combine with company-contact-finder to get CTO/VP Eng contacts at funded companies.
  • Chain into cold-email-outreach for automated outreach with funding-specific angles.
  • Track hits in contact-cache to avoid duplicate outreach across weeks.
  • Web Search is your best source — it aggregates TechCrunch, Crunchbase, VentureBeat, etc. Twitter and HN provide supplementary signals and early detection.
  • Multi-source appearances are the strongest signal. A company that shows up on TechCrunch AND Hacker News AND Twitter is a higher-quality lead.

Troubleshooting

"No results found"

  • Broaden your stages (add Seed or Series C)
  • Extend lookback to 14 or 30 days
  • Remove industry filter
  • Check that scraper dependencies are installed

"Too many results"

  • Add an industry filter
  • Increase min-amount
  • Reduce lookback days
  • Focus on Series B+ (fewer but larger rounds)

"Twitter scraper failing"

  • Check APIFY_API_TOKEN is set
  • Fall back to Web Search + HN only (still effective)
  • Twitter is supplementary — the skill works without it

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.12%
按下载量换算24

Claude

28.29%
按下载量换算18

Cursor

20.05%
按下载量换算13

Gemini CLI

9.69%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills