Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

review-analyst-agent审查分析师 Agent

Agent Skill

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

总安装

776

周安装

33

GitHub Stars

10

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/michaelboeding/skills --skill review-analyst-agent

简介

review-analyst-agent 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果。

  • 支持数据分析流程回溯与结论验证。
  • 通过任务背景或数据集描述输入,返回关键指标与逻辑链条复核建议。
  • 需确保输入数据真实有效,避免基于错误前提生成结论。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Review Analyst Agent

Analyze product reviews to find issues and prioritize improvements.

This skill uses 4 specialized agents that analyze reviews from different angles, then synthesizes into actionable recommendations.

What It Produces

OutputDescription
Sentiment OverviewOverall sentiment breakdown (positive/neutral/negative)
Top ComplaintsPrioritized list of issues by frequency and severity
Top PraiseWhat customers love (to protect/emphasize)
Feature RequestsWhat customers want that doesn't exist
Priority MatrixCritical/Important/Nice-to-have improvements
Action PlanSpecific recommendations with expected impact

Prerequisites

  • Web access for scraping reviews
  • No API keys required

Workflow

Step 1: Identify Product and Sources (REQUIRED)

⚠️ DO NOT skip this step. Use interactive questioning — ask ONE question at a time.

Question Flow

⚠️ Use the AskUserQuestion tool for each question below. Do not just print questions in your response — use the tool to create interactive prompts with the options shown.

Q1: Product

"I'll analyze reviews for your product! First — what's the product? *(Product name or URL)*"

*Wait for response.*

Q2: Sources

"Where should I look for reviews? - Amazon - App Store / Google Play - G2 / Capterra - Reddit - All of the above - Or specify"

*Wait for response.*

Q3: Context

"Is this your product or a competitor's? *(Helps frame the analysis)*"

*Wait for response.*

Q4: Issues

"Any known issues you want me to validate or explore? - Yes — describe them - No — find all issues"

*Wait for response.*

Quick Reference

QuestionDetermines
ProductWhat to analyze
SourcesWhere to scrape reviews
ContextFraming of recommendations
IssuesFocus areas for analysis

Step 2: Collect Reviews

Use browser tools to scrape reviews from:

Source TypePlatforms
E-commerceAmazon, Walmart, Target, Best Buy
SoftwareG2, Capterra, TrustRadius, Product Hunt
AppsApp Store, Google Play Store
GeneralTrustpilot, BBB, Yelp
SocialReddit, Twitter/X, YouTube comments
ForumsProduct-specific communities

Collect for each review:

  • Rating (if available)
  • Date
  • Review text
  • Helpful votes (if available)

Step 3: Run Specialized Analysis Agents in Parallel

Deploy 4 agents, each analyzing from a different perspective:

Agent 1: Review Scraper

Focus: Find and collect reviews from multiple sources

Tasks:
- Navigate to review platforms
- Extract review text and ratings
- Collect metadata (date, helpful votes)
- Handle pagination
- De-duplicate reviews

Agent 2: Sentiment Analyzer

Focus: Analyze sentiment and emotional patterns

Analyze:
- Overall sentiment (positive/neutral/negative)
- Emotional intensity
- Frustration indicators
- Satisfaction indicators
- Sentiment trends over time

Agent 3: Issue Identifier

Focus: Categorize complaints and find patterns

Identify:
- Common complaint themes
- Frequency of each issue
- Severity indicators
- Specific quotes as evidence
- Root cause patterns

Agent 4: Improvement Recommender

Focus: Prioritize and recommend fixes

Recommend:
- Priority ranking of issues
- Specific improvement suggestions
- Expected impact of each fix
- Quick wins vs long-term investments
- Competitive gaps to address

Step 4: Synthesize into Analysis Report

Combine all agent outputs into a structured report:

{
  "product": {
    "name": "Product Name",
    "sources_analyzed": ["Amazon (342 reviews)", "Reddit (89 posts)", "G2 (56 reviews)"],
    "total_reviews": 487,
    "date_range": "Jan 2025 - Jan 2026",
    "analysis_date": "2026-01-04"
  },
  "sentiment": {
    "overall_score": 3.8,
    "breakdown": {
      "positive": 62,
      "neutral": 18,
      "negative": 20
    },
    "trend": "Improving (up from 3.5 six months ago)",
    "net_promoter_estimate": 32
  },
  "top_complaints": [
    {
      "rank": 1,
      "issue": "Battery drains too fast",
      "frequency": 47,
      "percentage": "23% of negative reviews",
      "severity": "High",
      "sample_quotes": [
        "Battery only lasts 2 hours, not the 8 advertised",
        "Have to charge it 3x per day",
        "Battery life is a dealbreaker"
      ],
      "root_cause": "Hardware limitation or software optimization needed",
      "recommendation": "Improve battery capacity or optimize power consumption",
      "expected_impact": "Could improve rating by 0.3-0.5 stars"
    },
    {
      "rank": 2,
      "issue": "App crashes frequently",
      "frequency": 32,
      "percentage": "16% of negative reviews",
      "severity": "High",
      "sample_quotes": [
        "App crashes every time I try to sync",
        "Lost all my data after app crashed"
      ],
      "root_cause": "Sync functionality stability",
      "recommendation": "Stability audit of mobile app, fix crash on sync",
      "expected_impact": "Could reduce 1-star reviews by 15%"
    }
  ],
  "top_praise": [
    {
      "feature": "Build quality",
      "frequency": 89,
      "percentage": "45% of positive reviews",
      "sample_quotes": [
        "Feels premium in hand",
        "Solid construction, very durable"
      ],
      "recommendation": "Emphasize in marketing, protect in future versions"
    }
  ],
  "feature_requests": [
    {
      "request": "Water resistance",
      "frequency": 23,
      "sample_quotes": [
        "Wish I could use it in the rain",
        "Would pay extra for waterproof version"
      ],
      "recommendation": "Consider for v2 or premium tier"
    }
  ],
  "competitor_mentions": [
    {
      "competitor": "Competitor X",
      "context": "Switching from",
      "frequency": 15,
      "sentiment": "Mixed - some prefer us, some prefer them"
    }
  ],
  "priority_matrix": {
    "critical": [
      {"issue": "Battery life", "reason": "Top complaint, high severity"},
      {"issue": "App crashes", "reason": "Causes data loss, drives 1-star reviews"}
    ],
    "important": [
      {"issue": "Water resistance", "reason": "Frequent request, competitive gap"}
    ],
    "nice_to_have": [
      {"issue": "Color options", "reason": "Low frequency, low impact"}
    ]
  },
  "action_plan": [
    {
      "priority": 1,
      "action": "Fix app crash on sync",
      "effort": "Medium",
      "impact": "High",
      "expected_outcome": "Reduce 1-star reviews by 15%"
    },
    {
      "priority": 2,
      "action": "Improve battery life or set realistic expectations",
      "effort": "High",
      "impact": "High",
      "expected_outcome": "Improve rating by 0.3-0.5 stars"
    },
    {
      "priority": 3,
      "action": "Add water resistance to roadmap for v2",
      "effort": "High",
      "impact": "Medium",
      "expected_outcome": "Address top feature request"
    }
  ]
}

Step 5: Deliver Actionable Insights

Delivery message:

"✅ Review analysis complete!

Product: [Name] Reviews Analyzed: [Count] from [Sources] Overall Sentiment: [Score] ([Positive]% positive)

Top 3 Issues (by frequency):

  1. 🔴 [Issue 1] - [X]% of complaints
  2. 🔴 [Issue 2] - [X]% of complaints
  3. 🟡 [Issue 3] - [X]% of complaints

What Customers Love: ✅ [Praised feature 1] ✅ [Praised feature 2]

Priority Action: → Fix [Top Issue] first - expected to improve rating by [X]

Want me to:

  • Deep dive on any issue?
  • Compare to competitor reviews?
  • Track changes over time?
  • Create improvement roadmap?"

Integration with Other Agents

review-analyst-agent
    ↓ "Battery is top complaint"
product-engineer-agent
    ↓ "Design better battery solution"
patent-lawyer-agent
    ↓ "Check if solution is patentable"
copywriter-agent
    ↓ "Update marketing to address concern"
AgentHow It Uses Review Data
product-engineer-agentInform what to fix/improve
competitive-intel-agentCompare to competitor reviews
market-researcher-agentValidate market needs
copywriter-agentAddress concerns in marketing
pitch-deck-agentShow customer-centric improvements
media-utilsGenerate PDF report from analysis

Generate PDF Report

After completing the analysis, offer to generate a PDF:

"Would you like me to generate a PDF report of this review analysis?"
python3 ${CLAUDE_PLUGIN_ROOT}/skills/media-utils/scripts/report_to_pdf.py \
  --input review_analysis.md \
  --output review_analysis.pdf \
  --title "Customer Review Analysis" \
  --style business

Agents

AgentFileFocus
Review Scraperreview-scraper.mdFind and collect reviews
Sentiment Analyzersentiment-analyzer.mdAnalyze sentiment patterns
Issue Identifierissue-identifier.mdCategorize complaints
Improvement Recommenderimprovement-recommender.mdPrioritize and recommend

Example Prompts

Your product:

"Analyze reviews for our Bluetooth headphones on Amazon"

Competitor:

"What are people complaining about with Notion?"

Comparison:

"Compare reviews of our product vs Competitor X"

Feature focus:

"Find feature requests for our mobile app from App Store and Reddit"

Priority:

"What should we fix first based on customer feedback?"

Trend:

"How has sentiment changed over the last 6 months?"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

40.06%
按下载量换算109

Claude

27.68%
按下载量换算75

Cursor

19.09%
按下载量换算52

Gemini CLI

9.18%
按下载量换算25

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills