返回技能列表

generate-tour-report

pjt222
更新于 2 days ago
8 次查看
17
2
17
在 GitHub 上查看
pdfwordaidesign

关于

This skill generates a formatted travel report using Quarto, embedding maps, itineraries, and logistics into a self-contained HTML or PDF. It's designed for creating offline-accessible tour guides, documenting trips, or producing professional proposals. Developers can use it to compile travel data into a single, shareable document.

快速安装

Claude Code

推荐
主要方式
npx skills add pjt222/agent-almanac -a claude-code
插件命令备选方式
/plugin add https://github.com/pjt222/agent-almanac
Git 克隆备选方式
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/generate-tour-report

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Generate Tour Report

Generate a formatted tour report with embedded maps, daily itineraries, logistics tables, and practical travel information.

适用场景

  • Compiling a planned tour into a shareable document
  • Creating an offline-accessible travel guide for a trip
  • Documenting a completed trip with photos, maps, and statistics
  • Producing a professional tour proposal for a group or client
  • Consolidating route, accommodation, and transport data into one document

输入

  • 必需: Route data (waypoints, legs, distances, times)
  • 必需: Tour dates and duration
  • 可选: Accommodation details (name, address, confirmation numbers)
  • 可选: Transport bookings (flights, trains, car rental)
  • 可选: GPX tracks or spatial data for map embedding
  • 可选: Budget information (costs per category)
  • 可选: Photos or images to include

步骤

第 1 步:Compile Route and POI Data

Gather all tour data into a structured format before building the report.

Data Sources to Compile:
┌────────────────────┬──────────────────────────────────────────┐
│ Category           │ Required Fields                          │
├────────────────────┼──────────────────────────────────────────┤
│ Route legs         │ From, To, distance_km, time_hrs, mode   │
│ Waypoints          │ Name, lat, lon, arrival, departure, notes│
│ Accommodation      │ Name, address, check-in/out, cost, conf#│
│ Transport          │ Type, operator, depart, arrive, ref#     │
│ Activities         │ Name, time, duration, cost, booking_req  │
│ Emergency contacts │ Local emergency #, embassy, insurance    │
│ POIs               │ Name, category, lat, lon, description    │
└────────────────────┴──────────────────────────────────────────┘

Organize data by day to support the daily section structure:

  1. Group waypoints and activities by date
  2. Assign each transport leg to a day
  3. Match accommodations to overnight dates
  4. Calculate daily totals (distance, time, cost)

预期结果: A complete data collection organized by day, with no gaps in the schedule (every night has accommodation, every leg has transport).

失败处理: If data is incomplete, mark missing items with [TBD] placeholders and add them to a follow-up checklist at the end of the report. If dates don't align (e.g., arrival at accommodation before departure from previous stop), flag the conflict and adjust times.

第 2 步:Structure Daily Sections

Create the Quarto document skeleton with daily sections.

---
title: "Tour Name: Region/Country"
subtitle: "Date Range"
author: "Planner Name"
date: today
format:
  html:
    toc: true
    toc-depth: 3
    theme: cosmo
    self-contained: true
    code-fold: true
  pdf:
    documentclass: article
    geometry: margin=2cm
    toc: true
execute:
  echo: false
  warning: false
  message: false
---

Structure the document as follows:

Report Structure:
1. Overview
   - Tour summary (dates, total distance, highlights)
   - Overview map (all waypoints, full route)
   - Quick reference table (key dates, bookings, contacts)

2. Day 1: [Title]
   - Day summary (start, end, km, hours)
   - Route map for the day
   - Timeline / schedule table
   - Accommodation details
   - POIs and activities

3. Day 2: [Title]
   ... (repeat for each day)

N. Logistics Appendix
   - Full accommodation table
   - Transport bookings table
   - Packing checklist
   - Emergency contacts
   - Budget summary

预期结果: A complete .qmd file skeleton with YAML header, all daily sections as H2 headings, and placeholder content for each section.

失败处理: If the tour is too long for a single document (more than 14 days), consider splitting into weekly parts or using a tabset layout ({.tabset}) to keep the document navigable. If PDF output is required, ensure no interactive widgets are included (use static maps instead).

第 3 步:Embed Maps and Charts

Add spatial visualizations to each section.

Overview map:

#| label: fig-overview-map
#| fig-cap: "Tour overview with all stops"

leaflet::leaflet() |>
  leaflet::addProviderTiles("OpenTopoMap") |>
  leaflet::addPolylines(data = full_route, color = "#2563eb", weight = 3) |>
  leaflet::addMarkers(data = stops, popup = ~paste(name, "<br>", date))

Daily route map:

#| label: fig-day1-map
#| fig-cap: "Day 1 route: City A to City B"

day1_route <- full_route[full_route$day == 1, ]
leaflet::leaflet() |>
  leaflet::addProviderTiles("OpenStreetMap") |>
  leaflet::addPolylines(data = day1_route, color = "#2563eb", weight = 4) |>
  leaflet::addCircleMarkers(data = day1_stops, radius = 6, popup = ~name)

Elevation profile (for hiking/cycling days):

#| label: fig-day3-elevation
#| fig-cap: "Day 3 elevation profile"

ggplot2::ggplot(day3_elevation, ggplot2::aes(x = dist_km, y = elev_m)) +
  ggplot2::geom_area(fill = "#bfdbfe", alpha = 0.5) +
  ggplot2::geom_line(color = "#1d4ed8", linewidth = 0.7) +
  ggplot2::theme_minimal() +
  ggplot2::labs(x = "Distance (km)", y = "Elevation (m)")

预期结果: Each daily section has at minimum a route map. Multi-modal days (driving + hiking) have both a road map and an elevation profile. Overview section has a map showing the complete tour.

失败处理: If leaflet maps fail to render (common in PDF mode), fall back to static maps using tmap::tmap_mode("plot") or ggplot2 with ggspatial::annotation_map_tile(). If spatial data is not available for a day, include a simple text description of the route instead.

第 4 步:Add Logistics Tables

Insert structured tables for accommodations, transport, and budget.

Accommodation table:

| Night | Date       | Accommodation      | Address            | Check-in | Cost   | Conf# |
|-------|------------|--------------------|--------------------|----------|--------|-------|
| 1     | 2025-07-01 | Hotel Alpine       | Bergstrasse 12     | 15:00    | EUR 95 | AB123 |
| 2     | 2025-07-02 | Mountain Hut       | Zugspitze Huette   | 16:00    | EUR 45 | --    |
| 3     | 2025-07-03 | Pension Edelweiss  | Dorfplatz 3        | 14:00    | EUR 72 | CD456 |

Transport table:

| Date       | Type  | From          | To            | Depart | Arrive | Ref#   |
|------------|-------|---------------|---------------|--------|--------|--------|
| 2025-07-01 | Train | Munich Hbf    | Garmisch      | 08:15  | 09:32  | DB1234 |
| 2025-07-03 | Bus   | Zugspitze     | Ehrwald        | 10:00  | 10:25  | --     |
| 2025-07-04 | Train | Innsbruck     | Munich Hbf    | 16:45  | 18:30  | OBB567 |

Budget summary:

| Category        | Estimated | Actual | Notes                   |
|-----------------|-----------|--------|-------------------------|
| Accommodation   | EUR 212   |        | 3 nights                |
| Transport       | EUR 85    |        | Rail passes recommended |
| Food            | EUR 150   |        | EUR 50/day estimate     |
| Activities      | EUR 60    |        | Cable car, museum       |
| **Total**       | **EUR 507** |      |                         |

预期结果: Complete logistics tables with all bookings listed chronologically. No missing dates in the accommodation table. Budget totals are calculated correctly.

失败处理: If booking details are not yet confirmed, use [TBD] and highlight the row. If the tour involves multiple currencies, add a currency column and include exchange rates in a footnote.

第 5 步:Render Report

Compile the Quarto document into the final output format.

# Render to self-contained HTML (best for offline use)
quarto render tour-report.qmd --to html

# Render to PDF (for printing)
quarto render tour-report.qmd --to pdf

# Preview with live reload during editing
quarto preview tour-report.qmd

Post-rendering checks:

  1. Open the HTML file and verify all maps load correctly
  2. Test that the table of contents links work
  3. Verify all images and charts render at appropriate sizes
  4. Check that the self-contained HTML works offline (disconnect and reload)
  5. For PDF: verify page breaks fall at logical points (between days)

预期结果: A complete, self-contained document that works offline and contains all tour information in a navigable format.

失败处理: If rendering fails, check the R console for package errors (missing sf, leaflet, or ggplot2). If self-contained HTML is too large (over 20 MB), reduce map tile resolution or use PNG screenshots instead of interactive maps. If PDF rendering fails with LaTeX errors, install TinyTeX with quarto install tinytex.

验证清单

  • Report renders without errors in the target format
  • Overview map shows the complete route with all stops
  • Each day has a route map and schedule
  • Accommodation table covers every night of the trip
  • Transport table includes all legs
  • Budget totals are accurate
  • Self-contained HTML works offline
  • Table of contents navigates correctly to all sections
  • No [TBD] placeholders remain (or they are intentionally flagged)

常见问题

  • Interactive maps in PDF: Leaflet and other HTML widgets cannot render in PDF. Always provide static map alternatives for PDF output.
  • Oversized self-contained HTML: Embedding many map tiles creates very large files. Limit zoom levels or use static map screenshots for tile-heavy maps.
  • Missing time zones: International tours cross time zones. Always specify the time zone for departure and arrival times to avoid confusion.
  • Stale booking references: Confirmation numbers and times can change. Include a "last updated" date and remind users to verify before travel.
  • No offline fallback: If the report relies on web-loaded map tiles, it will be blank offline. Use self-contained: true or pre-render maps as images.
  • Inconsistent date formats: Mix of DD/MM and MM/DD causes confusion. Use ISO 8601 (YYYY-MM-DD) consistently throughout.

相关技能

  • plan-tour-route — generates the route data compiled into this report
  • create-spatial-visualization — creates the maps and charts embedded in the report
  • create-quarto-report — general Quarto document creation and configuration
  • plan-hiking-tour — provides hiking-specific data for mountain tour reports
  • check-hiking-gear — generates packing checklists for the logistics appendix

GitHub 仓库

pjt222/agent-almanac
路径: i18n/zh-CN/skills/generate-tour-report
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能