New to Claude Skills? Learn how to install them →

sickn33 on GitHub

Brand Reputation Monitoring

Free

Track brand mentions and reviews across platforms.

Get this skill

Free · Opens the source repo

What Brand Reputation Monitoring does

Brand Reputation Monitoring is a skill designed to help users effectively track and analyze reviews, ratings, and mentions of their brand across various platforms. Utilizing Apify Actors, this skill allows you to scrape data from popular sources such as Google Maps, Booking.com, TripAdvisor, Facebook, Instagram, YouTube, and TikTok. By selecting the appropriate Actor based on your specific needs, you can gather insights into customer sentiment and overall brand reputation.

The workflow for this skill is straightforward. First, you determine the data source by selecting an Actor that aligns with your monitoring goals. Once the Actor is chosen, you can fetch its schema to understand the required input parameters and available output fields. This ensures that you are equipped with the necessary information before running the monitoring script.

After selecting your Actor, you can customize the output format to suit your preferences, whether it's a quick answer displayed in chat, a CSV file, or a JSON export. The skill also provides a summary of the results, including the number of reviews or mentions found and suggested next steps for further analysis, such as sentiment evaluation or filtering.

This skill is particularly useful for businesses and marketers who want to maintain a pulse on their brand's online presence and respond proactively to customer feedback. By automating the data collection process, users can save time and focus on interpreting the results to inform their strategies.

When to use it

Use this skill when you need to monitor brand sentiment through reviews and ratings from various online sources.

When not to use it

Avoid this skill if your monitoring needs are outside the supported platforms or if you require real-time data updates.

What you can build with it

Monitoring Google Reviews

Use this skill to scrape and analyze customer reviews from Google Maps to understand public sentiment about your business.

Tracking Social Media Mentions

Set up monitoring for brand mentions on Instagram and Facebook to engage with customers and manage your online reputation.

Evaluating Competitor Reviews

Scrape reviews from platforms like TripAdvisor and Booking.com to compare your brand's reputation against competitors.

How to install Brand Reputation Monitoring

View source

1. Install with the skills CLI

npx skills add sickn33/agentic-awesome-skills/apify-brand-reputation-monitoring --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

Brand Reputation Monitoring

Scrape reviews, ratings, and brand mentions from multiple platforms using Apify Actors.

When to Use

  • You need to monitor reviews, ratings, or brand mentions across social, travel, or map platforms.
  • The task is to select and run an Apify Actor for brand sentiment or reputation tracking.
  • You need exported monitoring results and a summary of reputation signals.

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: Determine data source (select Actor)
- [ ] Step 2: Fetch Actor schema via mcpc
- [ ] Step 3: Ask user preferences (format, filename)
- [ ] Step 4: Run the monitoring script
- [ ] Step 5: Summarize results

Step 1: Determine Data Source

Select the appropriate Actor based on user needs:

User NeedActor IDBest For
Google Maps reviewscompass/crawler-google-placesBusiness reviews, ratings
Google Maps review exportcompass/Google-Maps-Reviews-ScraperDedicated review scraping
Booking.com hotelsvoyager/booking-scraperHotel data, scores
Booking.com reviewsvoyager/booking-reviews-scraperDetailed hotel reviews
TripAdvisor reviewsmaxcopell/tripadvisor-reviewsAttraction/restaurant reviews
Facebook reviewsapify/facebook-reviews-scraperPage reviews
Facebook commentsapify/facebook-comments-scraperPost comment monitoring
Facebook page metricsapify/facebook-pages-scraperPage ratings overview
Facebook reactionsapify/facebook-likes-scraperReaction type analysis
Instagram commentsapify/instagram-comment-scraperComment sentiment
Instagram hashtagsapify/instagram-hashtag-scraperBrand hashtag monitoring
Instagram searchapify/instagram-search-scraperBrand mention discovery
Instagram tagged postsapify/instagram-tagged-scraperBrand tag tracking
Instagram exportapify/export-instagram-comments-postsBulk comment export
Instagram comprehensiveapify/instagram-scraperFull Instagram monitoring
Instagram APIapify/instagram-api-scraperAPI-based monitoring
YouTube commentsstreamers/youtube-comments-scraperVideo comment sentiment
TikTok commentsclockworks/tiktok-comments-scraperTikTok sentiment

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 Results

After completion, report:

  • Number of reviews/mentions found
  • File location and name
  • Key fields available
  • Suggested next steps (sentiment analysis, filtering)

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 Brand Reputation Monitoring

Similar skills