Nearby Bakeries

v0.1.0

Find nearby bakeries. Invoke when user asks for bakeries near me.

0· 131·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for clawkk/bakeries.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nearby Bakeries" (clawkk/bakeries) from ClawHub.
Skill page: https://clawhub.ai/clawkk/bakeries
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install bakeries

ClawHub CLI

Package manager switcher

npx clawhub@latest install bakeries
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the behavior: the skill expects a user location and returns bakery POIs. However it references STANDARD_RESPONSE.md (not included) and does not specify any data provider or API — leaving the agent broad discretion to pick a network source.
Instruction Scope
SKILL.md stays on task (inputs, filters, error codes, privacy guidance). It does not instruct reading unrelated files or env vars. It is somewhat vague about how to obtain data (which API/provider to call), which grants broad agent discretion.
Install Mechanism
No install spec and no code files — lowest-risk instruction-only skill; nothing is written to disk by the skill package itself.
Credentials
No environment variables, credentials, or config paths are requested; the only sensitive input is the user location, and the skill explicitly recommends obtaining user authorization and blurring coordinates as needed.
Persistence & Privilege
Defaults (not always-enabled, agent invocation allowed) are reasonable for this kind of skill; it does not request persistent presence or modify other skills/settings.
Assessment
This skill appears coherent and low-risk because it is instruction-only and requests no credentials. Before installing, consider: (1) the skill omits the referenced STANDARD_RESPONSE.md — ask the author for that schema if you need compatibility guarantees; (2) it does not name a data provider (Google Places, Foursquare, OpenStreetMap, etc.), so the agent will need network access and possibly API keys to actually fetch POIs — decide which provider you trust and whether to supply credentials; (3) the skill will require the user's location at runtime — ensure your app obtains explicit consent and applies the recommended blurring/caching to protect privacy. If you need stricter controls, request the author add an explicit provider and a non-network fallback.

Like a lobster shell, security has layers — review code before you run it.

latestvk977zmbb1qd3ywr5rgp66npyks83fve9
131downloads
0stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

Nearby Bakeries

用途

  • 提供用户当前位置附近的 Bakeries 列表
  • 统一返回字段与查询行为,便于前端/接口复用
  • 支持常见筛选(评分、价格等级、是否营业、关键词等)

触发条件

  • 用户询问“Bakeries 附近 / bakeries near me / nearby bakeries”
  • 用户提供定位/城市并希望“找/推荐/看看附近的 Bakeries”

输入参数

  • location: 经纬度 { lat, lng },必填
  • radius_meters: 查询半径,默认 3000
  • limit: 返回数量上限,默认 20,最大 50
  • filters: 可选筛选(open_now、min_rating、price_level、keywords 等)

响应字段

  • 统一参见 STANDARD_RESPONSE.md
  • 本技能 category 固定为 "bakeries"

错误码

  • INVALID_LOCATION: 经纬度不合法
  • RADIUS_TOO_LARGE: 超过最大查询半径
  • PROVIDER_UNAVAILABLE: 数据源不可用
  • RATE_LIMITED: 触发速率限制

示例

  • 输入: { location: { lat: 30.123, lng: 120.456 }, radius_meters: 2000, limit: 10, filters: { open_now: true } }
  • 输出: 标准 POI 列表(见 STANDARD_RESPONSE.md)

隐私与速率限制

  • 仅在用户授权定位后查询
  • 避免保留精确坐标,必要时进行网格化模糊处理
  • 建议对同一 location+category+radius 做短时缓存以降低频率

Comments

Loading comments...