Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

review-sentinel审查哨兵

Agent Skill

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

总安装

3,659

周安装

148

GitHub Stars

公开资料未说明

下载量

1,148
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:review-sentinel(审查哨兵)
来源仓库:https://github.com/rolarenagent-cpu/review-sentinel
安装命令:
openclaw skills install review-sentinel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install review-sentinel

简介

监控Google本地企业评论,支持趋势分析与回复起草。

  • 适合线下门店或服务类商户。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 绑定Google Business账号,自动同步评论流。
  • 需OAuth授权,注意数据使用范围与隐私条款。
  • review-sentinel 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
review-sentinel
description
Monitor, analyze, and respond to Google reviews for local businesses. Use when asked to check reviews, analyze review trends, draft review responses, generate reputation reports, or monitor a business's online reputation. Supports any business findable on Google Maps. Tracks review changes over time using local state files.
metadata
openclaw
requires
env
primaryEnv
GOOGLE_PLACES_API_KEY

Review Sentinel

Automated Google review monitoring, analysis, and response drafting for any local business.

What It Does

  • Fetches current Google reviews and ratings via Google Places API
  • Tracks rating/review count changes over time with local state files
  • Analyzes sentiment, topics, and trends across reviews
  • Drafts owner responses matched to review tone and business type
  • Generates reputation reports with competitor comparison
  • Alerts on new negative reviews (pair with a cron job for daily monitoring)

Prerequisites

  • Python 3.8+ (stdlib only — no pip installs)
  • Google Places API key (required) — provide via one of:

1. GOOGLE_PLACES_API_KEY environment variable (recommended) 2. credentials/google-places-api-key file (relative to working directory) - Enable "Places API (New)" in Google Cloud Console - Free tier: $200/month credit (~5,000 searches)

  • Fallback: web scraping scripts included but fragile

Limitations

  • Places API returns max 5 most relevant reviews per request (Google API limit)
  • Web scraping fallback may break if Google changes their page structure
  • No real-time alerts without a cron job configured
  • Review response posting requires manual copy-paste (no API write access)

Setup

On first use, ask the user for:

  1. Business name and location (city or address)
  2. Google Maps Place ID (optional — will search if not provided)

Store config in the skill directory at review-sentinel/config.json:

{
  "businesses": [
    {
      "name": "Business Name",
      "placeId": "ChIJ...",
      "location": "City, State",
      "searchQuery": "Business Name City",
      "lastChecked": null,
      "reviewCount": 0,
      "rating": 0
    }
  ]
}

Core Workflows

1. Check Reviews

Trigger: "check reviews", "how are our reviews", "any new reviews"

  1. Run scripts/fetch_reviews_places.py <search_query> to fetch current review data via Google Places API (preferred)

- Fallback: scripts/fetch_reviews.py <search_query> (web scraping, fragile)

  1. Compare with stored state in review-sentinel/state/<business-slug>.json
  2. Report: new reviews since last check, rating changes, review count changes
  3. Update state file

2. Analyze Reviews

Trigger: "analyze reviews", "review trends", "what are people saying"

  1. Fetch current reviews using the fetch script
  2. Parse review text, ratings, dates
  3. Categorize by sentiment and topic (service, wait time, staff, price, quality)
  4. Identify patterns: recurring complaints, seasonal trends, rating trajectory
  5. Compare against competitors if configured

3. Draft Responses

Trigger: "respond to reviews", "draft responses", "reply to reviews"

For each unresponded review:

  • 5-star: Thank specifically for what they praised, invite return
  • 4-star: Thank warmly, acknowledge any mild concern
  • 3-star: Thank, address specific concern, offer resolution
  • 1-2 star: Empathize, apologize without admitting fault, offer offline resolution, keep professional

Guidelines:

  • Keep responses under 100 words
  • Never be defensive or argumentative
  • Reference specific details from the review (shows it was read by a human)
  • Include business name naturally
  • Vary templates — don't use identical responses

4. Reputation Report

Trigger: "reputation report", "review report", "monthly report"

Generate a structured report:

  • Overall rating & trend (up/down/stable)
  • Review velocity (reviews per week/month)
  • Sentiment breakdown
  • Top praised aspects
  • Top complaints
  • Competitor comparison (if configured)
  • Recommended actions

Save reports to review-sentinel/reports/YYYY-MM-DD-report.md.

5. Review Alerts (Cron)

For automated monitoring, suggest the user set up a cron job:

Schedule: daily at 9 AM
Task: Check for new reviews, alert on any 1-2 star reviews immediately

Response Tone Guide

Match response tone to the business type:

  • Medical/Professional: Formal, empathetic, privacy-aware (never reference specific treatments/conditions)
  • Retail/Restaurant: Warm, friendly, conversational
  • Service business: Professional, solution-oriented

Competitor Tracking

When configured with competitor businesses, the analysis workflow includes:

  • Side-by-side rating comparison
  • Review velocity comparison
  • Sentiment gap analysis
  • Competitive positioning summary

State Management

All state stored in review-sentinel/state/:

  • <business-slug>.json — latest review snapshot, history
  • config.json — business configuration

Read references/state-schema.md for the full state file schema.

Quickstart Example

User: "Check reviews for my clinic"
Agent: Runs fetch_reviews_places.py "My Clinic Seattle"
Agent: Compares with stored state, reports:
  - Rating: 4.6★ (stable)
  - 3 new reviews since last check (2 positive, 1 negative)
  - Alert: 1-star review from "Jane D." needs response
  - Drafts response for approval

Important Notes

  • Google review scraping is rate-limited. Don't run more than a few times per day per business.
  • Review response drafts should ALWAYS be presented to the user for approval before posting.
  • Never auto-post responses — always human-in-the-loop.
  • For businesses with health privacy concerns (HIPAA/PIPEDA), never reference patient conditions in responses.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.81%
按下载量换算1,100

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills