← 返回 Skills 市场
lizhijun

LovTrip Content Browser

作者 KLeo · GitHub ↗ · v1.1.0
cross-platform ✓ 安全检测通过
278
总下载
0
收藏
2
当前安装
2
版本数
在 OpenClaw 中安装
/install lovtrip-content
功能描述
旅行内容查询 / Travel Content Browser — 搜索攻略、目的地、行程,零 API Key。当用户需要搜索旅行攻略、浏览目的地、查看行程方案时使用。
使用说明 (SKILL.md)

旅行内容查询 / Travel Content Browser

LovTrip (lovtrip.app) — AI 驱动的旅行规划平台,提供智能行程生成、旅行攻略、目的地推荐。

零 API Key 即可使用。通过 lovtrip CLI 或 curl 查询 LovTrip 平台的旅行攻略、目的地信息和行程方案。

Setup / 配置

方式 1: CLI(推荐)

npx lovtrip@latest --help

无需任何 API Key 或环境变量。

方式 2: curl

直接调用 LovTrip 公开 API,无需安装任何工具。

命令 / API 映射

1. 搜索 — search

全文搜索攻略、目的地和行程。

CLI:

npx lovtrip search "京都3天"
npx lovtrip search "Bali beach" --json

curl:

curl -s "https://lovtrip.app/api/search?q=京都3天" | python3 -m json.tool

2. 攻略列表 — guides

浏览旅行攻略。

CLI:

npx lovtrip guides
npx lovtrip guides --destination "Tokyo"

curl:

curl -s "https://lovtrip.app/api/guides?limit=10" | python3 -m json.tool
curl -s "https://lovtrip.app/api/guides?destination=Tokyo&limit=10" | python3 -m json.tool

3. 攻略详情 — guide

查看单篇攻略的完整内容。

CLI:

npx lovtrip guide kyoto-3-day-food-tour

curl:

curl -s "https://lovtrip.app/api/guides/kyoto-3-day-food-tour" | python3 -m json.tool

4. 目的地 — destinations

浏览热门目的地。

CLI:

npx lovtrip destinations
npx lovtrip destinations --trending

curl:

curl -s "https://lovtrip.app/api/destinations?limit=20" | python3 -m json.tool
curl -s "https://lovtrip.app/api/destinations/trending" | python3 -m json.tool

5. 行程 — itineraries

浏览旅行行程方案。

CLI:

npx lovtrip itineraries
npx lovtrip itineraries --destination "Bali" --days 5

curl:

curl -s "https://lovtrip.app/api/itineraries?limit=10" | python3 -m json.tool
curl -s "https://lovtrip.app/api/itineraries?destination=Bali&days=5" | python3 -m json.tool

CLI 全局选项

选项 说明
--json 输出 JSON 格式
--api-url \x3Curl> 覆盖 API 地址
--no-color 禁用颜色输出
--help 显示帮助
--version 显示版本

使用示例

用户: "有没有东京的美食攻略?"

→ 执行: npx lovtrip search "东京 美食"
→ 返回攻略列表,包含标题、摘要、链接

用户: "看看这篇的详情"

→ 执行: npx lovtrip guide tokyo-food-guide-2026
→ 返回完整攻略内容

进阶使用

查询结果可以配合其他 LovTrip 技能使用:

  • 找到感兴趣的目的地 → 使用 lovtrip-travel-planner 生成定制行程
  • 找到国内地点 → 使用 lovtrip-china-map 查看地图和导航
  • 找到视频攻略 → 使用 lovtrip-video2article 转为文章

在线体验

直接访问 lovtrip.app 使用完整的 Web 版功能:


Powered by LovTrip — AI Travel Planning Platform

安全使用建议
This skill appears to be what it says: a set of instructions to query lovtrip.app via curl or to run the lovtrip CLI. Before installing/using: (1) be aware that `npx lovtrip@latest` will fetch and execute code from npm — if you need to limit risk, prefer the curl examples, pin a specific npx package version, or inspect the lovtrip npm package and its repository first; (2) verify the lovtrip.app domain and TLS certificate and that the service is the legitimate site you expect; (3) run commands in a restricted/sandboxed environment if possible; and (4) if you want higher assurance, ask the publisher for the CLI package name, repository link, and a checksum or signed release so you can audit the code before executing it.
功能分析
Type: OpenClaw Skill Name: lovtrip-content Version: 1.1.0 The skill bundle provides a legitimate interface for searching travel content from the lovtrip.app platform using a CLI tool (npx lovtrip) or curl commands. There is no evidence of data exfiltration, malicious execution, or prompt injection; the instructions and examples in SKILL.md and examples/search-guides.md are consistent with the stated purpose of a travel content browser.
能力评估
Purpose & Capability
Name/description match the instructions: the skill is an instruction-only integration that queries lovtrip.app via curl or runs the lovtrip CLI (npx). No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md limits actions to running npx lovtrip commands or curl against https://lovtrip.app and formatting JSON; it does not ask to read arbitrary files or environment variables. The only scope caveat is that it instructs executing remote code via npx (see install_mechanism).
Install Mechanism
There is no explicit install spec in the registry (lowest risk), but the instructions advise using `npx lovtrip@latest`, which will download and execute code from the npm registry at runtime. That behavior is coherent with providing a CLI, but carries the usual risk of executing remotely fetched code — consider pinning versions, inspecting the npm package, or using the curl-based API instead.
Credentials
No environment variables, credentials, or config paths are requested — this is proportionate to the described read-only browsing/search functionality.
Persistence & Privilege
Skill is not always-enabled and uses normal autonomous invocation defaults. It does not request persistent system-wide modifications or access to other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lovtrip-content
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lovtrip-content 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Add lovtrip.app website links, online experience section, SEO improvements
v1.0.0
Initial release: zero-dependency travel content search via CLI or curl
元数据
Slug lovtrip-content
版本 1.1.0
许可证
累计安装 2
当前安装数 2
历史版本数 2
常见问题

LovTrip Content Browser 是什么?

旅行内容查询 / Travel Content Browser — 搜索攻略、目的地、行程,零 API Key。当用户需要搜索旅行攻略、浏览目的地、查看行程方案时使用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 278 次。

如何安装 LovTrip Content Browser?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install lovtrip-content」即可一键安装,无需额外配置。

LovTrip Content Browser 是免费的吗?

是的,LovTrip Content Browser 完全免费(开源免费),可自由下载、安装和使用。

LovTrip Content Browser 支持哪些平台?

LovTrip Content Browser 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 LovTrip Content Browser?

由 KLeo(@lizhijun)开发并维护,当前版本 v1.1.0。

💬 留言讨论