New to Claude Skills? Learn how to install them →

sickn33 on GitHub

Competitor Intelligence

Free

Extract and analyze competitor data across multiple platforms.

Get this skill

Free · Opens the source repo

What Competitor Intelligence does

Competitor Intelligence is a skill designed to help developers and marketers analyze competitor strategies, content, pricing, ads, and market positioning by leveraging Apify Actors. This skill allows users to gather structured data from various platforms, including Google Maps, Booking.com, Facebook, Instagram, YouTube, and TikTok. By utilizing this skill, users can make informed decisions based on competitor benchmarks for content, reviews, pricing, and audience engagement.

The workflow begins by helping users identify the type of competitor analysis they need, allowing them to select the appropriate Apify Actor for their specific requirements. Each Actor is tailored for different data extraction tasks, such as business data, review analysis, ad strategies, and more. Once the Actor is selected, users can fetch the Actor's schema to understand the input parameters and output fields, ensuring they have the necessary information for a successful analysis.

After setting up the environment and selecting preferences for output format and result count, users can execute the analysis script. The results can be displayed in chat for quick insights or exported in various formats, including CSV and JSON, for further analysis. Finally, the skill summarizes the findings, providing key insights and suggested next steps for deeper analysis or benchmarking.

This skill is particularly useful for marketers, product managers, and business analysts looking to gain a competitive edge by understanding their competitors' strategies and performance metrics. By automating data extraction and analysis, users can save time and focus on strategic decision-making.

When to use it

Use this skill when you need to benchmark competitors' performance or analyze their strategies across various platforms.

When not to use it

Do not use this skill for tasks outside of competitor analysis or when specific environmental validation is required.

What you can build with it

Benchmarking Competitor Pricing

Use the skill to analyze and compare competitor pricing strategies on platforms like Booking.com.

Review Analysis for Product Insights

Extract and compare customer reviews from Google Maps to understand competitor strengths and weaknesses.

Ad Strategy Comparison

Analyze ad performance and creative strategies of competitors on Facebook to refine your marketing approach.

How to install Competitor Intelligence

View source

1. Install with the skills CLI

npx skills add sickn33/agentic-awesome-skills/apify-competitor-intelligence --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by sickn33

Competitor Intelligence

Analyze competitors using Apify Actors to extract data from multiple platforms.

When to Use

  • You need competitor benchmarks for content, reviews, pricing, ads, audience, or channel performance.
  • The task involves selecting Apify Actors to compare competitors across maps, booking, social, or video platforms.
  • You need structured competitor data plus synthesized takeaways for strategy or positioning.

Prerequisites

(No need to check it upfront)

  • .env file with APIFY_TOKEN
  • Node.js 20.6+ (for native --env-file support)
  • mcpc CLI tool: npm install -g @apify/mcpc

Workflow

Copy this checklist and track progress:

Task Progress:
- [ ] Step 1: Identify competitor analysis type (select Actor)
- [ ] Step 2: Fetch Actor schema via mcpc
- [ ] Step 3: Ask user preferences (format, filename)
- [ ] Step 4: Run the analysis script
- [ ] Step 5: Summarize findings

Step 1: Identify Competitor Analysis Type

Select the appropriate Actor based on analysis needs:

User NeedActor IDBest For
Competitor business datacompass/crawler-google-placesLocation analysis
Competitor contact discoverypoidata/google-maps-email-extractorEmail extraction
Feature benchmarkingcompass/google-maps-extractorDetailed business data
Competitor review analysiscompass/Google-Maps-Reviews-ScraperReview comparison
Hotel competitor datavoyager/booking-scraperHotel benchmarking
Hotel review comparisonvoyager/booking-reviews-scraperReview analysis
Competitor ad strategiesapify/facebook-ads-scraperAd creative analysis
Competitor page metricsapify/facebook-pages-scraperPage performance
Competitor content analysisapify/facebook-posts-scraperPost strategies
Competitor reels performanceapify/facebook-reels-scraperReels analysis
Competitor audience analysisapify/facebook-comments-scraperComment sentiment
Competitor event monitoringapify/facebook-events-scraperEvent tracking
Competitor audience overlapapify/facebook-followers-following-scraperFollower analysis
Competitor review benchmarkingapify/facebook-reviews-scraperReview comparison
Competitor ad monitoringapify/facebook-search-scraperAd discovery
Competitor profile metricsapify/instagram-profile-scraperProfile analysis
Competitor content monitoringapify/instagram-post-scraperPost tracking
Competitor engagement analysisapify/instagram-comment-scraperComment analysis
Competitor reel performanceapify/instagram-reel-scraperReel metrics
Competitor growth trackingapify/instagram-followers-count-scraperFollower tracking
Comprehensive competitor dataapify/instagram-scraperFull analysis
API-based competitor analysisapify/instagram-api-scraperAPI access
Competitor video analysisstreamers/youtube-scraperVideo metrics
Competitor sentiment analysisstreamers/youtube-comments-scraperComment sentiment
Competitor channel metricsstreamers/youtube-channel-scraperChannel analysis
TikTok competitor analysisclockworks/tiktok-scraperTikTok data
Competitor video strategiesclockworks/tiktok-video-scraperVideo analysis
Competitor TikTok profilesclockworks/tiktok-profile-scraperProfile data

Step 2: Fetch Actor Schema

Fetch the Actor's input schema and details dynamically using mcpc:

export $(grep APIFY_TOKEN .env | xargs) && mcpc --json mcp.apify.com --header "Authorization: Bearer $APIFY_TOKEN" tools-call fetch-actor-details actor:="ACTOR_ID" | jq -r ".content"

Replace ACTOR_ID with the selected Actor (e.g., compass/crawler-google-places).

This returns:

  • Actor description and README
  • Required and optional input parameters
  • Output fields (if available)

Step 3: Ask User Preferences

Before running, ask:

  1. Output format:
    • Quick answer - Display top few results in chat (no file saved)
    • CSV - Full export with all fields
    • JSON - Full export in JSON format
  2. Number of results: Based on character of use case

Step 4: Run the Script

Quick answer (display in chat, no file):

node --env-file=.env ${CLAUDE_PLUGIN_ROOT}/reference/scripts/run_actor.js \
  --actor "ACTOR_ID" \
  --input 'JSON_INPUT'

CSV:

node --env-file=.env ${CLAUDE_PLUGIN_ROOT}/reference/scripts/run_actor.js \
  --actor "ACTOR_ID" \
  --input 'JSON_INPUT' \
  --output YYYY-MM-DD_OUTPUT_FILE.csv \
  --format csv

JSON:

node --env-file=.env ${CLAUDE_PLUGIN_ROOT}/reference/scripts/run_actor.js \
  --actor "ACTOR_ID" \
  --input 'JSON_INPUT' \
  --output YYYY-MM-DD_OUTPUT_FILE.json \
  --format json

Step 5: Summarize Findings

After completion, report:

  • Number of competitors analyzed
  • File location and name
  • Key competitive insights
  • Suggested next steps (deeper analysis, benchmarking)

Error Handling

APIFY_TOKEN not found - Ask user to create .env with APIFY_TOKEN=your_token mcpc not found - Ask user to install npm install -g @apify/mcpc Actor not found - Check Actor ID spelling Run FAILED - Ask user to check Apify console link in error output Timeout - Reduce input size or increase --timeout

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

Frequently asked questions about Competitor Intelligence

Similar skills