Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

trip-website-generator旅行网站生成器

Agent Skill

trip-website-generator 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,998

周安装

170

GitHub Stars

公开资料未说明

下载量

1,401
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install trip-website-generator

简介

从旅行计划生成 iOS26 液体玻璃风格的多页旅行网站。

  • 适合创建旅行网站、计划页面或专业展示时使用。trip-website-generator 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 通过输入旅行信息自动生成美观的网页结构和样式。
  • 安装前需确认权限范围和维护状态,避免触发文件读写操作。
  • 建议结合来源仓库 README 核验具体用法和限制条件。

SKILL.md

name
trip-website-generator
description
Generates iOS26 liquid glass style multi-page travel websites from travel plans. Invoke when user wants to create a travel website, trip planner page, or provides detailed travel itinerary.

Trip Website Generator

This skill generates a beautiful iOS26 liquid glass style multi-page travel website from a detailed travel plan.

When to Invoke

Invoke this skill when:

  • User wants to create a travel website or trip planner page
  • User provides a detailed travel itinerary and wants it visualized
  • User asks to generate a trip planning tool
  • User mentions "旅行网站", "行程页面", "travel website", "trip planner"

Templates

This skill includes template files in the templates/ directory:

FileDescription
templates/styles.cssComplete CSS design system (copy directly)
templates/app.jsShared JavaScript functionality (copy directly)
templates/index.htmlItinerary page template
templates/prepare.htmlPreparation checklist template
templates/notes.htmlNotes page template
templates/budget.htmlBudget page template

When generating a new travel website:

  1. Create a dedicated output directory named by date and destination (e.g., guangzhou-shenzhen-20260429/, xian-20260715/, beijing-20260801/)
  2. Copy templates/styles.css and templates/app.js directly to the output directory - DO NOT modify these files in any way, copy them exactly as-is
  3. Generate HTML files by replacing template variables with actual content
  4. All HTML files should reference these two files

IMPORTANT:

  • The styles.css and app.js files must be copied verbatim without any changes. Do not read, modify, or regenerate these files - just copy them directly from templates/.
  • All website files (index.html, prepare.html, notes.html, budget.html, styles.css, app.js) must be generated in a separate directory, NOT in the root directory.

Template Variables

Templates use {{VARIABLE_NAME}} syntax for placeholders. Repeatable sections are marked with HTML comments like <!-- SECTION_START --> and <!-- SECTION_END -->.

Common Variables

VariableDescriptionExample
{{TRIP_TITLE}}Trip title广州深圳亲子游
{{TRAVELERS}}Number of travelers一大一小
{{DURATION}}Trip duration6天5夜

index.html (Itinerary Page)

Header Section:

  • {{TRIP_TITLE}} - Trip title
  • {{TRAVELERS}} - Number of travelers
  • {{START_DATE}} - Start date (e.g., 2026.04.29)
  • {{END_DATE}} - End date (e.g., 05.04)
  • {{DURATION}} - Duration (e.g., 6天5夜)
  • {{TAG_1}}, {{TAG_2}}, {{TAG_3}} - Feature tags

Day Section (between <!-- DAY_START --> and <!-- DAY_END -->):

  • {{ANIMATION_DELAY}} - Animation delay (e.g., 0s, 0.05s, 0.1s...)
  • {{GRADIENT}} - Gradient color class (purple, pink, orange, blue, green, red)
  • {{DAY_NUMBER}} - Day number (D1, D2, D3...)
  • {{DAY_TITLE}} - Day title
  • {{DATE}} - Date (e.g., 4月29日 周二)
  • {{SUBTITLE}} - Subtitle (e.g., D2431次)
  • {{HOTEL}} - Hotel name

Timeline Item (between <!-- TIMELINE_START --> and <!-- TIMELINE_END -->):

  • {{HIGHLIGHT_CLASS}} - Add " highlight" for highlighted items, empty string otherwise
  • {{TIME}} - Time (e.g., 08:16)
  • {{ACTIVITY}} - Activity name
  • {{DETAIL}} - Detail description

Guide Section (between <!-- GUIDE_START --> and <!-- GUIDE_END -->):

  • {{GUIDE_TITLE}} - Guide section title
  • {{GUIDE_ITEM}} - Guide item content (repeat between <!-- GUIDE_ITEMS_START --> and <!-- GUIDE_ITEMS_END -->)
  • {{TIP}} - Tip text (between <!-- TIP_START --> and <!-- TIP_END -->)

prepare.html (Preparation Page)

Category Section (between <!-- CATEGORY_START --> and <!-- CATEGORY_END -->):

  • {{ANIMATION_DELAY}} - Animation delay
  • {{CATEGORY_NAME}} - Category name (e.g., 证件, 衣物, 防晒驱蚊)

Checklist Item (between <!-- CHECKLIST_ITEM_START --> and <!-- CHECKLIST_ITEM_END -->):

  • {{ITEM_ID}} - Unique item ID for localStorage
  • {{ITEM_TEXT}} - Item text

Progress Card:

  • {{TOTAL_ITEMS}} - Total number of checklist items

notes.html (Notes Page)

Note Category (between <!-- NOTE_CATEGORY_START --> and <!-- NOTE_CATEGORY_END -->):

  • {{ANIMATION_DELAY}} - Animation delay
  • {{ICON_COLOR}} - Icon color class (red, orange, blue, green)
  • {{{ICON_SVG}}} - SVG icon (use triple braces for HTML)
  • {{CATEGORY_TITLE}} - Category title
  • {{CATEGORY_DESC}} - Category description

Note Item (between <!-- NOTE_ITEM_START --> and <!-- NOTE_ITEM_END -->):

  • {{ITEM_ICON}} - Emoji icon
  • {{ITEM_TITLE}} - Item title
  • {{ITEM_CONTENT}} - Item content

budget.html (Budget Page)

Total Card:

  • {{TOTAL_BUDGET}} - Total budget (e.g., ¥7,250 - 8,800)

Budget Section (between <!-- BUDGET_SECTION_START --> and <!-- BUDGET_SECTION_END -->):

  • {{ANIMATION_DELAY}} - Animation delay
  • {{SECTION_ICON}} - Emoji icon
  • {{SECTION_TITLE}} - Section title

Budget Item (between <!-- BUDGET_ITEM_START --> and <!-- BUDGET_ITEM_END -->):

  • {{ITEM_NAME}} - Item name
  • {{ITEM_PRICE}} - Price
  • {{ITEM_NOTE}} - Note (between <!-- ITEM_NOTE_START --> and <!-- ITEM_NOTE_END -->)
  • {{ITEM_INCLUDED}} - Included text (between <!-- ITEM_INCLUDED_START --> and <!-- ITEM_INCLUDED_END -->)

Tip Card:

  • {{TIP}} - Tip text

Gradients for Day Numbers

DayGradient ClassColors
D1gradient-purple#667eea → #764ba2
D2gradient-pink#f093fb → #f5576c
D3gradient-orange#fa709a → #fee140
D4gradient-blue#4facfe → #00f2fe
D5gradient-green#43e97b → #38f9d7
D6gradient-red#f5576c → #f093fb

SVG Icons for Notes Page

<!-- Clock icon (red) -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  <circle cx="12" cy="12" r="10"/>
  <path d="M12 6v6l4 2"/>
</svg>

<!-- Sun icon (orange) -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  <path d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707"/>
  <circle cx="12" cy="12" r="4"/>
</svg>

<!-- Lightning icon (blue) -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  <path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/>
</svg>

<!-- Smile icon (green) -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"/>
  <path d="M8 14s1.5 2 4 2 4-2 4-2"/>
  <line x1="9" y1="9" x2="9.01" y2="9"/>
  <line x1="15" y1="9" x2="15.01" y2="9"/>
</svg>

Important Notes

  1. Always use Chinese for content unless user specifies otherwise
  2. Include practical tips in guide sections
  3. Make sure all internal links work correctly
  4. Ensure tabbar highlights the current page
  5. Test checklist functionality with localStorage
  6. Verify responsive design on mobile viewports
  7. Include dark mode support via prefers-color-scheme
  8. Animation delays should increment by 0.05s for each card

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.61%
按下载量换算1,143

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills