openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Nearby Budget Hotels

Find nearby budget hotels. Invoke when user asks for cheap hotels near me.

综合技能

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.0

统计:⭐ 0 · 21 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal:Pending · OpenClaw :可疑

Package:clawkk/budget-hotels

安全扫描(ClawHub)

  • VirusTotal:Pending
  • OpenClaw :可疑

OpenClaw 评估

The skill is mostly coherent and low-privilege, but its runtime instructions reference missing artifacts and leave the data-source / network behavior unspecified, which could let an agent make broad external requests or inconsistent responses.

目的

Name/description (find nearby budget hotels) matches the instructions: inputs (location, radius, filters) and outputs (standard POI list) are appropriate and proportional.

说明范围

SKILL.md is focused on the stated task and includes privacy notes (only after user authorizes location, suggests blurring coordinates). However it references STANDARD_RESPONSE.md for the response schema which is not included in the bundle, and it does not specify any data providers or APIs to use. That omission leaves the agent discretion to perform arbitrary web/API calls or scrape results, which broadens the runtime scope beyond what the ski…

安装机制

Instruction-only skill with no install spec or code files — nothing is written to disk and no external packages are pulled.

证书

The skill requests no environment variables, credentials, or config paths. That is proportionate for a location-based POI helper.

持久

always is false and there is no indication the skill requests persistent privileges or modifies other skills/configurations.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Nearby Budget Hotels」。简介:Find nearby budget hotels. Invoke when user asks for cheap hotels near me.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/clawkk/budget-hotels/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: "Nearby Budget Hotels"
description: "Find nearby budget hotels. Invoke when user asks for cheap hotels near me."
---

# Nearby Budget Hotels

用途
- 提供用户当前位置附近的 Budget Hotels 列表
- 统一返回字段与查询行为,便于前端/接口复用
- 适用于“便宜酒店/性价比住宿/临时住一晚”等场景

触发条件
- 用户询问“Budget Hotels 附近 / cheap hotel near me / budget hotel near me”
- 用户提供定位/城市并希望“找/推荐/看看附近的 Budget Hotels”

输入参数
- location: 经纬度 { lat, lng },必填
- radius_meters: 查询半径,默认 5000
- limit: 返回数量上限,默认 20,最大 50
- filters: 可选筛选(价格等级、评分、是否含早餐、keywords 等)

响应字段
- 统一参见 STANDARD_RESPONSE.md
- 本技能 category 固定为 "budget-hotels"

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

示例
- 输入: { location: { lat: 30.123, lng: 120.456 }, radius_meters: 5000, limit: 10, filters: { price_level: [0,1,2] } }
- 输出: 标准 POI 列表(见 STANDARD_RESPONSE.md)

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