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

competitive-intel竞争情报

Agent Skill

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

总安装

1,151

周安装

47

GitHub Stars

68

下载量

372
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/brightdata/skills --skill competitive-intel

简介

competitive-intel 实时整理竞品动态并结合战略框架生成 actionable 洞察。

  • 必须先用 bdata 命令获取 live 数据,再进行分析合成。
  • 覆盖定价、功能、营销与客户评价等多维度情报。
  • 不得仅依赖训练知识回答竞争问题,必须调用真实数据源。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Competitive Intelligence

Real-time competitive intelligence powered by live web data. Combines Bright Data CLI (bdata) for data collection with strategic analysis frameworks to deliver actionable competitive insights — not stale training knowledge.

Never answer competitive questions from training knowledge alone. Always gather live data first using bdata commands, then analyze and synthesize.

Prerequisites

  1. Bright Data CLI installed: curl -fsSL https://cli.brightdata.com/install.sh | bash
  2. One-time login completed: bdata login

That's it. No env vars, no zone config, no API keys to manage.

Core Workflow

For every competitive intelligence request, follow this workflow:

  1. Clarify scope — Which competitors? What specifically does the user want to know? Select the right module(s).
  2. Gather live data — Run bdata commands. Parallelize independent calls. Prefer bdata pipelines (structured JSON) over bdata scrape (raw markdown) when a pipeline exists.
  3. Analyze — Apply the appropriate strategic framework. Read references/analysis-frameworks.md for SWOT, Porter's Five Forces, positioning matrices, and more.
  4. Format output — Use the report templates from references/output-templates.md.
  5. Deliver actionable insights — Every report MUST end with a "Strategic Recommendations" section. Never deliver raw data without interpretation.

Data Collection Rules

  • Always use --json flag when you need to pipe or parse bdata output programmatically
  • Prefer bdata pipelines over bdata scrape whenever a pipeline type exists for the target platform — pipelines return clean structured JSON
  • Be cost-efficient — A snapshot should use 3-8 bdata calls, not 50. Scrape what you need.
  • Parallelize — Run independent bdata calls in parallel using multiple Bash tool calls in a single response
  • Handle failures gracefully — If a page is gated or returns empty, say so and try the fallback. Never hallucinate data to fill gaps.
  • Cite every data point — Include source URLs for everything. Users must be able to verify.

For the full mapping of intelligence needs to bdata commands, read references/data-source-guide.md.

For interpreting raw data as strategic signals, read references/industry-signals.md.


Analysis Modules

1. Competitor Snapshot

When to use: User asks to analyze, profile, or understand a specific competitor.

Data gathering:

# Step 1: Discover competitor's website and recent news
bdata search "[competitor name]" --json

# Step 2: Scrape key pages (run in parallel)
bdata scrape [competitor-url]              # Homepage — positioning, messaging
bdata scrape [competitor-url]/pricing      # Pricing tiers and model
bdata scrape [competitor-url]/about        # Team, mission, history (try /about, /about-us, /company)

# Step 3: Structured data enrichment (if URLs available)
bdata pipelines crunchbase_company "[crunchbase-url]"       # Funding, investors, employee count
bdata pipelines linkedin_company_profile "[linkedin-url]"   # Employee count, growth, locations

Analysis: Synthesize into a structured profile. Identify positioning, target audience, key claims, strengths, and vulnerabilities. Compare to user's product if context is available.

Output: Use the Competitor Snapshot template from references/output-templates.md.


2. Pricing Intelligence

When to use: User wants to compare pricing, understand pricing models, or find pricing positioning opportunities.

Data gathering:

# Scrape pricing pages for each competitor (run in parallel)
bdata scrape [competitor-a-url]/pricing
bdata scrape [competitor-b-url]/pricing
bdata scrape [competitor-c-url]/pricing

# For e-commerce products
bdata pipelines amazon_product "[amazon-url]"
bdata pipelines walmart_product "[walmart-url]"

# Supplementary: third-party pricing breakdowns
bdata search "[competitor] pricing review" --json

Analysis: Extract plan names, prices, feature lists, and limits from each page. Normalize into a comparison matrix. Identify pricing model types (per-seat, usage-based, freemium, enterprise-only). Flag positioning signals and recommend opportunities.

Output: Use the Pricing Intelligence template from references/output-templates.md.


3. Review Intelligence

When to use: User wants to understand customer sentiment, find competitor pain points, or identify exploitable gaps.

Data gathering:

# Find review pages via search
bdata search "[competitor] site:g2.com" --json
bdata search "[competitor] site:capterra.com" --json

# Scrape review pages
bdata scrape [g2-url]
bdata scrape [capterra-url]

# Structured review data (use when direct URLs are available)
bdata pipelines google_maps_reviews "[google-maps-url]" 30
bdata pipelines amazon_product_reviews "[amazon-url]"
bdata pipelines google_play_store "[play-store-url]"
bdata pipelines apple_app_store "[app-store-url]"

Analysis: Categorize sentiment (positive/neutral/negative). Extract top praised features, top complaints, and feature requests. Identify comparison mentions ("switched from X", "better than Y"). Complaints are the user's positioning opportunity.

Output: Use the Review Intelligence template from references/output-templates.md.


4. Hiring Signal Analysis

When to use: User wants to infer a competitor's strategic direction from their hiring patterns.

Data gathering:

# Find LinkedIn company page
bdata search "[competitor] linkedin company" --json

# Get structured job listings
bdata pipelines linkedin_job_listings "[linkedin-company-url]"

# Fallback: scrape careers page directly
bdata search "[competitor] careers" --json
bdata scrape [careers-url]

Analysis: Categorize roles by department. Analyze hiring velocity (scaling vs. stable vs. contracting). Identify technology signals from job descriptions. Look for geographic expansion signals. Interpret seniority mix (hiring leaders = new initiative; hiring ICs = scaling existing).

Output: Use the Hiring Signal Analysis template from references/output-templates.md.


5. Content & SEO Battle

When to use: User wants to understand competitors' content strategy or search positioning for specific keywords.

Data gathering:

# Check SERP rankings for target keywords (run in parallel)
bdata search "[keyword 1]" --json
bdata search "[keyword 2]" --json
bdata search "[keyword 3]" --json

# Estimate competitor's indexed content
bdata search "site:[competitor.com]" --json

# Scrape blog/content pages
bdata scrape [competitor-url]/blog
bdata scrape [top-ranking-article-url]

Analysis: Map which competitors rank for which keywords. Estimate content volume and publishing frequency. Identify topic clusters each competitor invests in. Find content gaps — topics nobody covers well that the user could own.

Output: Use the Content & SEO Battle template from references/output-templates.md.


6. Market Landscape Map

When to use: User wants to understand all players in a market, find white space, or map the competitive landscape.

Data gathering:

# Discover players via multiple search queries (run in parallel)
bdata search "[industry] companies" --json
bdata search "best [product category] tools" --json
bdata search "[product category] alternatives" --json

# Scrape category/comparison pages
bdata scrape [g2-category-url]

# Quick snapshot of each discovered competitor
bdata scrape [competitor-1-url]
bdata scrape [competitor-2-url]
# ... for each key player (limit to top 8-10)

# Enrich key players with funding/size data
bdata pipelines crunchbase_company "[crunchbase-url]"

Analysis: Categorize players by tier (enterprise, mid-market, SMB, open-source). Build a positioning map (e.g., price vs. feature breadth). Identify white space — underserved segments or positioning no one owns. Note market trends, recent entrants, and consolidation signals.

Output: Use the Market Landscape Map template from references/output-templates.md.


Multi-Module Analysis

When the user asks for a comprehensive competitive analysis (e.g., "full battlecard", "deep dive", "board meeting prep"), combine multiple modules:

  1. Start with Competitor Snapshot for each competitor
  2. Add Pricing Intelligence for comparison
  3. Add Review Intelligence for customer sentiment
  4. Optionally add Hiring Signals and Content & SEO for strategic depth
  5. Wrap everything in the Executive Summary template from references/output-templates.md

For full battlecards, use the Competitive Battlecard template.

Choosing the Right Module

User says...Module to use
"Analyze [competitor]", "Tell me about [company]"Competitor Snapshot
"Compare pricing", "How much does [X] cost"Pricing Intelligence
"What do customers think", "Reviews of [X]", "Pain points"Review Intelligence
"What are they hiring for", "Job postings", "Where are they expanding"Hiring Signal Analysis
"How do they rank", "Their content strategy", "SEO"Content & SEO Battle
"Who are the players", "Market landscape", "Competitive landscape"Market Landscape Map
"Full battlecard", "Deep competitive analysis", "Board prep"Multi-Module (combine all)

Output Quality Standards

  1. Every data point must have a source URL — no unattributed claims
  2. Separate facts from analysis — clearly distinguish scraped data from Claude's interpretation
  3. End with "So What?" — every report must have actionable strategic recommendations
  4. Be honest about gaps — if data is unavailable, say so. Never fill gaps with training knowledge presented as live data.
  5. Date-stamp the analysis — include "Data collected on [date]" so users know freshness

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.67%
按下载量换算133

Claude

28.76%
按下载量换算107

Cursor

19.26%
按下载量换算72

Gemini CLI

9.7%
按下载量换算36

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills