generate-tour-report
정보
이 스킬은 Quarto를 사용하여 독립형 HTML/PDF 문서로 포괄적인 여행 보고서를 생성합니다. 오프라인 여행 활용을 위해 서식이 지정된 일정, 내장된 지도, 로지스틱스 표 및 숙박 세부 정보를 포함한 문서를 만듭니다. 개발자는 이를 사용하여 계획되었거나 완료된 여행을 공유 가능한 가이드나 전문적인 제안서로 편집할 수 있습니다.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/generate-tour-reportClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Tourbericht generieren
Generieren a formatted tour report with embedded maps, daily itineraries, logistics tables, and practical travel information.
Wann verwenden
- 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
Eingaben
- Erforderlich: Route data (waypoints, legs, distances, times)
- Erforderlich: Tour dates and duration
- Optional: Accommodation details (name, address, confirmation numbers)
- Optional: Transport bookings (flights, trains, car rental)
- Optional: GPX tracks or spatial data for map embedding
- Optional: Budget information (costs per category)
- Optional: Photos or images to include
Vorgehensweise
Schritt 1: Compile Route and POI Data
Sammeln all tour data into a structured format vor building der Bericht.
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 │
└────────────────────┴──────────────────────────────────────────┘
Organisieren data by day to support the daily section structure:
- Group waypoints and activities by date
- Zuweisen each transport leg to a day
- Match accommodations to overnight dates
- Berechnen daily totals (distance, time, cost)
Erwartet: A complete data collection organized by day, with no gaps in the schedule (every night has accommodation, every leg has transport).
Bei Fehler: If data is incomplete, mark missing items with [TBD] placeholders and add them to a follow-up checklist at the end of der Bericht. If dates don't align (e.g., arrival at accommodation vor departure from previous stop), flag the conflict and adjust times.
Schritt 2: Structure Daily Sections
Erstellen 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 wie folgt:
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
Erwartet: A complete .qmd file skeleton with YAML header, all daily sections as H2 headings, and placeholder content fuer jede section.
Bei Fehler: 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 ist erforderlich, ensure no interactive widgets are included (use static maps stattdessen).
Schritt 3: Embed Maps and Charts
Hinzufuegen 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)")
Erwartet: 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.
Bei Fehler: 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 ist nicht available for a day, include a simple text description of the route stattdessen.
Schritt 4: Hinzufuegen 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** | | |
Erwartet: Abschliessen logistics tables with all bookings listed chronologically. No missing dates in the accommodation table. Budget totals are calculated korrekt.
Bei Fehler: If booking details sind nicht 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.
Schritt 5: Rendern 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:
- Oeffnen the HTML file and verify all maps load korrekt
- Testen that the table of contents links work
- Verifizieren all images and charts render at appropriate sizes
- Pruefen, dass the self-contained HTML works offline (disconnect and reload)
- For PDF: verify page breaks fall at logical points (zwischen days)
Erwartet: A complete, self-contained document that works offline and contains all tour information in a navigable format.
Bei Fehler: 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 stattdessen of interactive maps. If PDF rendering fails with LaTeX errors, install TinyTeX with quarto install tinytex.
Validierung
- Report renders ohne errors in das Ziel 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 korrekt to all sections
- No [TBD] placeholders remain (or they are intentionally flagged)
Haeufige Stolperfallen
- 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. Begrenzen 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. Einschliessen a "last updated" date and remind users to verify vor travel.
- No offline fallback: If der Bericht relies on web-loaded map tiles, it wird blank offline. Use
self-contained: trueor pre-render maps as images. - Inconsistent date formats: Mix of DD/MM and MM/DD causes confusion. Use ISO 8601 (YYYY-MM-DD) consistently durchout.
Verwandte Skills
plan-tour-route— generates the route data compiled into this reportcreate-spatial-visualization— creates the maps and charts embedded in der Berichtcreate-quarto-report— general Quarto document creation and configurationplan-hiking-tour— provides hiking-specific data for mountain tour reportscheck-hiking-gear— generates packing checklists for the logistics appendix
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
