📦 Trip Website Generator — 技能工具

v1.0.5

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 pro...

0· 97·0 当前·0 累计
dustink66 头像by @dustink66·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/6
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's files, templates, and runtime instructions are coherent with its stated purpose (generating static multi-page travel websites); it requests no credentials, performs no network or privileged actions, and the included JS/CSS are typical client-side code.
评估建议
This skill appears to do exactly what it says: generate static travel website pages from templates. Before installing or running, verify you are comfortable with the agent writing a new output directory to disk and review the bundled templates (styles.css and app.js) if you plan to publish the generated site (they include client-side localStorage behavior for checklist state). There are no network calls or credential requirements, so there is low risk of secret exfiltration — but as always, don’...
详细分析 ▾
用途与能力
Name/description match the provided templates and app.js; no unrelated binaries, credentials, or config paths are requested and the bundled files are exactly what a static website generator would need.
指令范围
SKILL.md limits operations to creating an output directory, copying templates/styles/app.js verbatim, and replacing template placeholders in HTML. It does not instruct the agent to read unrelated system files, network endpoints, or secrets. Note: the agent will write files to disk (the output directory) as part of normal operation.
安装机制
No install spec — instruction-only with bundled templates and a single client-side JS file. Nothing is downloaded or executed from external URLs and no archives are extracted.
凭证需求
No environment variables, credentials, or config paths are required. The included app.js uses only browser localStorage and DOM APIs (client-side behavior), which is consistent with the skill's purpose.
持久化与权限
Skill is not always-enabled and uses normal model invocation. It does not request persistent platform privileges or modify other skills/config; client-side localStorage is used only for checklist state in the generated site.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.52026/4/5

Add HTML template files (index, prepare, notes, budget)

无害

安装命令

点击复制
官方npx clawhub@latest install trip-website-generator
镜像加速npx clawhub@latest install trip-website-generator --registry https://cn.longxiaskill.com

技能文档

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:
  • Create a dedicated output directory named by date and destination (e.g., guangzhou-shenzhen-20260429/, xian-20260715/, beijing-20260801/)
  • 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
  • Generate HTML files by replacing template variables with actual content
  • 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 and .

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 and ):

  • {{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 and ):

  • {{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 and ):

  • {{GUIDE_TITLE}} - Guide section title
  • {{GUIDE_ITEM}} - Guide item content (repeat between and )
  • {{TIP}} - Tip text (between and )

prepare.html (Preparation Page)

Category Section (between and ):

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

Checklist Item (between and ):

  • {{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 and ):

  • {{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 and ):

  • {{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 and ):

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

Budget Item (between and ):

  • {{ITEM_NAME}} - Item name
  • {{ITEM_PRICE}} - Price
  • {{ITEM_NOTE}} - Note (between and )
  • {{ITEM_INCLUDED}} - Included text (between and )

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


Important Notes

  • Always use Chinese for content unless user specifies otherwise
  • Include practical tips in guide sections
  • Make sure all internal links work correctly
  • Ensure tabbar highlights the current page
  • Test checklist functionality with localStorage
  • Verify responsive design on mobile viewports
  • Include dark mode support via prefers-color-scheme
  • Animation delays should increment by 0.05s for each card
数据来源ClawHub ↗ · 中文优化:龙虾技能库