Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

anysite-market-research任意网站市场研究

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

16

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anysiteio/agent-skills --skill anysite-market-research

简介

anysite-market-research 用于综合研究科技市场和初创企业动态。

  • 支持 Y Combinator 项目分析、SEC filings 解读及社交媒体情报收集。
  • 覆盖 70% 的科技类市场数据,侧重 startup 生态和公开公司信息。
  • 输出内容基于公开渠道聚合,不包含未披露的私有商业机密。
  • 建议结合多个数据源交叉验证,避免单一平台偏差影响判断。

SKILL.md

anysite Market Research

Comprehensive market research using Y Combinator, SEC, social media, and web data through anysite MCP. Analyze tech markets, research startups, and study competitive landscapes.

Overview

  • Research startup ecosystems via Y Combinator data
  • Analyze public companies through SEC filings
  • Gather market intelligence from social platforms
  • Study industry trends across communities
  • Identify market opportunities through data analysis

Coverage: 70% - Excellent for tech/startup markets; pivoted from local business to tech focus

Supported Platforms

  • Y Combinator: Startup research, batch analysis, founder discovery, funding data
  • SEC: Public company filings, financial data, disclosures
  • Reddit: Market sentiment, community insights, product discussions
  • LinkedIn: Industry trends, company intelligence, professional discussions
  • Twitter/X: Market pulse, news, influencer opinions
  • Web Scraping: Company websites, industry reports, market data

v2 MCP Tool Interface

All data fetching uses the universal execute() meta-tool. Always call discover(source, category) first if you need to verify endpoint names or parameters.

Core workflow:

  1. execute(source, category, endpoint, params) -- fetch data (returns first page + cache_key)
  2. get_page(cache_key, offset, limit) -- paginate through remaining results
  3. query_cache(cache_key, conditions, sort_by, aggregate, group_by) -- filter/sort/aggregate cached data without new API calls
  4. export_data(cache_key, format) -- export to CSV, JSON, or JSONL for deliverables

Error handling: check response for llm_hint field -- it contains actionable guidance when calls fail or return partial data.

Quick Start

Step 1: Define Research Scope

Choose focus:

  • Startup ecosystem: execute("yc", "search", "search", {"query":...})
  • Public companies: execute("sec", "search", "search", {"query":...})
  • Industry sentiment: execute("reddit", "search", "search", {"query":...}), execute("twitter", "search", "search_users", {"query":...})
  • Company intelligence: execute("linkedin", "search", "search_companies", {...})

Step 2: Gather Data

Execute searches:

# Startup research
execute("yc", "search", "search", {"query": "fintech", "batch": "W24,S23"})

# Public company research
execute("sec", "search", "search", {"query": "tech company"})

# Market sentiment
execute("reddit", "search", "search", {"query": "fintech trends"})
→ use get_page(cache_key, offset, limit) to collect up to 100 results

Step 3: Analyze Results

Use query_cache() to slice data without re-fetching:

# Count startups by category
query_cache(cache_key, aggregate={"field": "category", "function": "count"})

# Filter high-engagement posts
query_cache(cache_key, conditions=[{"field": "score", "operator": ">", "value": 50}], sort_by={"field": "score", "order": "desc"})

Extract insights:

  • Market size indicators
  • Competitive landscape
  • Technology trends
  • Consumer sentiment
  • Funding patterns

Step 4: Synthesize Findings

Use export_data(cache_key, "csv") or export_data(cache_key, "json") to deliver:

  • Market opportunity assessment
  • Competitive analysis
  • Trend identification
  • Strategic recommendations

Common Workflows

Workflow 1: Startup Ecosystem Analysis

Scenario: Analyze fintech startup landscape

Steps:

  1. Find Startups
execute("yc", "search", "search", {
  "query": "fintech",
  "batch": "W24,S23,W23,S22"
})
→ use get_page(cache_key, offset, limit) to paginate through all results
  1. Categorize by Focus
For each startup:
  execute("yc", "company", "get", {"slug": company_slug})

Group by:
- Payments
- Lending
- Investment/Trading
- Banking
- Insurance
- B2B fintech tools

Or use query_cache to group:
  query_cache(cache_key, group_by="category")
  1. Analyze Patterns
Identify:
- Hot subcategories (most startups)
- Team size distribution
- Geographic concentration
- Common tech stacks (from job postings)

Use query_cache for aggregation:
  query_cache(cache_key, aggregate={"field": "team_size", "function": "avg"})
  1. Research Traction
For promising startups:
  execute("linkedin", "search", "search_companies", {"keywords": startup_name})
  → Check employee growth

  execute("twitter", "search", "search_users", {"query": startup_name})
  → Check social presence and buzz

  execute("webparser", "parse", "parse", {"url": startup_website})
  → Check positioning and features
  1. Identify White Spaces
Compare:
- Overcrowded categories
- Underserved segments
- Emerging opportunities
- Geographic gaps

Expected Output:

  • 50-100 startup landscape map
  • Category distribution
  • Funding trends
  • Market gaps identified
  • Competitive intensity by segment

Use export_data(cache_key, "csv") to deliver the startup list as a spreadsheet.

Workflow 2: Public Company Competitive Analysis

Scenario: Research public competitors in cloud infrastructure

Steps:

  1. Find Companies
execute("sec", "search", "search", {
  "query": "cloud"
})
→ use get_page(cache_key, offset, limit) to collect up to 50 results
  1. Get Financial Data
For each company:
  execute("sec", "document", "get", {"url": document_url})

Extract:
- Revenue and growth
- Operating margins
- R&D spending
- Geographic breakdown
- Risk factors mentioned
  1. Analyze Strategy
From 10-K filings:
- Business model
- Target markets
- Competitive advantages
- Growth initiatives
- Challenges and risks
  1. Track Changes
Compare year-over-year:
- Revenue growth trends
- Market focus shifts
- New initiatives
- Risk factor changes
  1. Supplement with Social Intel
execute("linkedin", "search", "search_companies", {"keywords": company_name})
→ Employee count, hiring patterns

execute("linkedin", "company", "get", {"company": company_urn})
→ Company details and strategic messaging

execute("reddit", "search", "search", {"query": company_name})
→ Customer sentiment

Use query_cache to filter sentiment:
  query_cache(cache_key, conditions=[{"field": "text", "operator": "contains", "value": "review"}])

Expected Output:

  • Competitive landscape map
  • Financial benchmarks
  • Strategic positioning
  • Growth trajectories
  • Market opportunities

Use export_data(cache_key, "json") for structured competitive data.

Workflow 3: Industry Trend Analysis

Scenario: Understand AI/ML market evolution

Steps:

  1. YC Startup Trends
execute("yc", "search", "search", {
  "query": "AI OR machine learning OR artificial intelligence"
})
→ use get_page(cache_key, offset, limit) to collect up to 200 results

Group by batch to see:
- Trend over time
- Focus area shifts
- Team size changes

query_cache(cache_key, group_by="batch", aggregate={"field": "id", "function": "count"})
  1. Public Market Signals
execute("sec", "search", "search", {
  "query": "artificial intelligence"
})
→ use get_page(cache_key, offset, limit) to collect up to 50 results

Check 10-K mentions of:
- "AI" or "machine learning" frequency
- AI-related investments
- AI revenue segments
  1. Community Sentiment
execute("reddit", "search", "search", {
  "query": "AI trends 2026"
})
→ use get_page(cache_key, offset, limit) to collect up to 100 results

Analyze for:
- Excitement vs. concern
- Adoption barriers
- Use case validation
- Technology maturity

query_cache(cache_key, sort_by={"field": "score", "order": "desc"})
  1. Professional Discussion
execute("linkedin", "post", "search_posts", {
  "keywords": "artificial intelligence"
})

Check:
- Industry adoption
- Job market signals
- Skill requirements
- Thought leader opinions
  1. Web Intelligence
For key AI companies:
  execute("webparser", "parse", "parse", {"url": website + "/blog"})
  → Technology updates, product launches

Expected Output:

  • Market evolution timeline
  • Technology adoption curves
  • Sentiment analysis
  • Opportunity identification
  • Risk assessment

Use export_data(cache_key, "csv") for trend data tables.

MCP Tools Reference (v2)

Data Fetching

  • execute(source, category, endpoint, params) -- Universal data fetcher; always returns cache_key

Pagination

  • get_page(cache_key, offset, limit) -- Load additional pages from a previous execute()

Analysis

  • query_cache(cache_key, conditions, sort_by, aggregate, group_by) -- Filter, sort, and aggregate cached data

Export

  • export_data(cache_key, format) -- Export to CSV, JSON, or JSONL; returns download URL

Y Combinator Research

  • execute("yc", "search", "search", {"query":...}) -- Find startups by industry, batch, filters
  • execute("yc", "company", "get", {"slug":...}) -- Get detailed company profile

SEC Research

  • execute("sec", "search", "search", {"query":...}) -- Find public companies and filings
  • execute("sec", "document", "get", {"url":...}) -- Get full document content

Social Intelligence

  • execute("reddit", "search", "search", {"query":...}) -- Community insights and sentiment
  • execute("twitter", "search", "search_users", {"query":...}) -- Real-time market pulse
  • execute("linkedin", "post", "search_posts", {"keywords":...}) -- Professional trends

Company Intelligence

  • execute("linkedin", "search", "search_companies", {"keywords":...}) -- Find companies
  • execute("linkedin", "company", "get", {"company":...}) -- Company details
  • execute("webparser", "parse", "parse", {"url":...}) -- Extract website data

Market Discovery

  • Use discover(source, category) to explore available endpoints for any source
  • execute("webparser", "parse", "parse", {"url":...}) -- Scrape any URL for market data

Note: Crunchbase endpoints are disabled in v2. Use LinkedIn company search and Y Combinator data as alternatives for company research.

Market Analysis Frameworks

TAM/SAM/SOM Analysis:

Total Addressable Market (TAM):
- Count YC companies in category x avg market size
- SEC filing market size mentions
- Industry reports via execute("webparser", "parse", "parse", {"url": report_url})

Serviceable Addressable Market (SAM):
- Filter by geography, segment using query_cache()
- LinkedIn company search by ICP
- YC companies by batch/stage

Serviceable Obtainable Market (SOM):
- Realistic capture based on competition
- Competitive analysis via LinkedIn/social
- Market share indicators

Porter's Five Forces:

Using anysite v2 data:

1. Competitive Rivalry:
   - YC startups in space
   - LinkedIn company counts
   - Social mention volume

2. Threat of New Entrants:
   - Recent YC batches
   - Funding announcements
   - Talent movement (LinkedIn)

3. Supplier Power:
   - Technology dependencies
   - Integration partners

4. Buyer Power:
   - Customer reviews (Reddit)
   - Pricing transparency
   - Switching costs mentioned

5. Threat of Substitutes:
   - Alternative solutions
   - Adjacent markets

Output Formats

Chat Summary:

  • Key market insights
  • Competitive landscape summary
  • Opportunity identification
  • Strategic recommendations

CSV Export (via export_data(cache_key, "csv")):

  • Company list with metrics
  • Market segmentation data
  • Trend indicators

JSON Export (via export_data(cache_key, "json")):

  • Complete research data
  • Time-series analysis
  • Cross-platform correlations

Reference Documentation

  • RESEARCH_METHODS.md - Market research methodologies, analysis frameworks, and data synthesis techniques

Ready for market research? Ask Claude to help you analyze markets, research startups, or study competitive landscapes using this skill!

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.83%
按下载量换算27

Claude

31.52%
按下载量换算25

Cursor

19.16%
按下载量换算15

Gemini CLI

9.72%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills