Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

yelpyelp 搜索

Agent Skill

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

总安装

8,304

周安装

346

GitHub Stars

公开资料未说明

下载量

2,768
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install yelp

简介

搜索 Yelp 企业和评论,比较本地选项,并通过官方 API、公共页面和安全操作边界审核列表质量。

SKILL.md

name
Yelp
slug
yelp
version
1.0.0
homepage
https://clawic.com/skills/yelp
description
Search Yelp businesses and reviews, compare local options, and audit listing quality with official APIs, public pages, and safe action boundaries.
changelog
Initial release with local business discovery, review signal interpretation, shortlist guidance, and listing audit support.
metadata
{"clawdbot":{"emoji":"⭐","requires":{"bins":["curl","jq"],"config":["~/yelp/"]},"os":["linux","darwin","win32"],"configPaths":["~/yelp/"]}}

When to Use

User wants to work on Yelp directly: find restaurants or local services, compare businesses, inspect reviews, check delivery or takeout signals, or audit a Yelp listing with source-aware workflows.

Use this skill when the answer depends on Yelp-specific fields such as rating, review count, categories, price, location, transactions, hours, photos, or business-page evidence rather than generic search alone.

Architecture

Memory lives in ~/yelp/. If ~/yelp/ does not exist, run setup.md. See memory-template.md for structure.

~/yelp/
├── memory.md                 # Activation behavior, preferred markets, and decision patterns
├── sessions/
│   └── YYYY-MM-DD.md         # Current task context and selected candidates
├── businesses/
│   └── {city-or-segment}.md  # Saved shortlists, business aliases, and notes
├── api/
│   ├── alias-cache.md        # name+location -> Yelp alias or business ID
│   └── request-log.md        # Redacted endpoint, params, status, timestamp
└── audits/
    └── {business}.md         # Listing-quality findings and next actions

Quick Reference

Load only the file needed for the current Yelp task.

TopicFile
Setup and activation behaviorsetup.md
Memory schema and status modelmemory-template.md
Official API request patternsapi-workflows.md
Search, compare, and shortlist workflowsearch-playbook.md
Review interpretation and signal weightingreview-analysis.md
Listing QA and owner-side audit workflowlisting-audit.md
Access limits and safe operating boundariesaccess-boundaries.md

Requirements

  • No credentials required for public-page verification and manual comparison.
  • YELP_API_KEY is recommended for official API search, details, and reviews workflows.
  • Owner-side or partner-managed tasks require explicit user approval and the user's own authorized access.
  • Confirm before sending phone numbers, exact addresses, or account-scoped listing data to live Yelp endpoints.

Coverage

This skill is designed for Yelp-specific work that usually breaks when an agent treats it like generic local search:

  • restaurant and local-service discovery
  • head-to-head business comparison in one market
  • review signal analysis and complaint clustering
  • delivery or takeout eligibility checks where Yelp exposes those signals
  • business listing audits for owners, operators, or agencies

Core Rules

1. Choose the operating mode before querying

  • Use page mode for visible public research, API mode for structured fields, and audit mode for listing-quality reviews.
  • State the chosen mode in the output so the user knows where the evidence came from.
  • If API access is missing or degraded, continue in page mode and explain the tradeoff.

2. Resolve the exact business before analysis

  • Use location, category, alias, and phone match when possible before comparing or quoting review signals.
  • Chains and duplicate names often produce wrong merges across neighborhoods or cities.
  • If identity remains ambiguous, ask one disambiguation question instead of guessing.

3. Separate consumer research from owner actions

  • Default to read-first workflows: search, compare, summarize, and audit.
  • Draft review replies, escalation notes, or listing changes only if the user is authorized and asks for them.
  • Do not imply account access, verified ownership, or live edit capability without explicit proof.

4. Rank with decision signals, not stars alone

  • Weight rating, review volume, review recency, complaint themes, price fit, and category match together.
  • Recent negative clusters often matter more than a legacy 4.5 average.
  • Flag low-sample or stale-review situations clearly.

5. Treat Yelp fields as platform-specific, not universal truth

  • price, transactions, hours, attributes, and delivery or takeout flags are useful but not guaranteed to be current everywhere.
  • Re-check operational claims close to the decision when the user is about to book, visit, call, or order.
  • Do not convert Yelp metadata into hard promises.

6. Keep storage minimal and redacted

  • Store reusable filters, accepted or rejected shortlist reasons, and verified aliases in ~/yelp/.
  • Never store secrets, raw API keys, or unredacted signed request URLs.
  • In logs, keep only endpoint path, safe params, outcome, and timestamp.

7. Return outcome-ready outputs

  • For discovery: give a shortlist with why each option is in, what the tradeoffs are, and what should be verified next.
  • For audits: group issues into highest-impact fixes first, then supporting cleanup.
  • For review analysis: separate evidence, inference, and uncertainty.

Common Traps

  • Comparing businesses from different neighborhoods without distance or market normalization -> the shortlist looks better on paper than in real life.
  • Treating a high rating with very low review volume as stable -> one or two new reviews can flip the signal.
  • Ignoring the newest negative reviews -> current service decline stays hidden behind historical averages.
  • Assuming delivery, takeout, or hours flags are universally current -> users act on stale operational data.
  • Mixing consumer lookup with owner-side tasks -> the agent drifts into unauthorized or impossible actions.
  • Logging raw API request headers or URLs -> secrets leak into local notes.

External Endpoints

EndpointData SentPurpose
https://api.yelp.com/v3/businesses/searchquery text, location or coordinates, category, price, and sort filtersdiscover businesses and candidate lists
https://api.yelp.com/v3/businesses/search/phonephone number and country coderesolve exact business identity
https://api.yelp.com/v3/businesses/{id_or_alias} and /reviewsbusiness ID or alias plus locale parametersfetch details, attributes, photos, hours, and reviews
https://api.yelp.com/v3/transactions/delivery/searchlocation and optional category or price filterscheck delivery candidates where supported
https://www.yelp.com/*standard browser navigation signals and user search termsverify visible public-page evidence

No other data is sent externally unless the user explicitly approves another source.

Security & Privacy

Data that may leave your machine:

  • business names, search terms, location hints, phone numbers, and optional filter parameters sent to Yelp

Data that stays local:

  • shortlist decisions, recurring filters, alias cache, and audit notes in ~/yelp/

This skill does NOT:

  • store API keys in markdown files
  • claim listing ownership or edit access without proof
  • use CAPTCHA bypass, anti-bot evasion, or undeclared scraping flows
  • modify its own SKILL.md

Trust

This skill can send business search terms, locations, and optional identifiers to Yelp services. Only use live Yelp calls if you trust Yelp with the local-search context relevant to the task.

Scope

This skill ONLY:

  • searches and compares Yelp businesses with explicit evidence
  • analyzes review signals, listing quality, and operational flags
  • prepares drafts or audit recommendations when the user is authorized

This skill NEVER:

  • fabricate ratings, reviews, or business availability
  • imply owner access or post live changes without explicit instruction
  • hide missing data, stale signals, or unsupported market coverage

Related Skills

Install with clawhub install <slug> if user confirms:

  • google-reviews - Compare Yelp signals against Google review patterns and reputation drift.
  • restaurants - Turn shortlisted places into actual dining recommendations and decision filters.
  • maps - Add routing, geocoding, and distance checks before the user acts on a shortlist.
  • apple-maps - Open chosen places quickly on macOS for directions and location confirmation.
  • tripadvisor - Cross-check travel-heavy restaurant and attraction choices outside Yelp.

Feedback

  • If useful: clawhub star yelp
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.39%
按下载量换算2,004

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills