Agent Skills
› QuixiAI/Hexis
› travel-prep
travel-prep
GitHub将日历、确认邮件及个人偏好整合为实用的旅行简报,提供行程、清单和应急方案,严禁预订或交易操作。
Trigger Scenarios
用户请求制定旅行计划
需要生成出发前准备清单
查询目的地实时入境要求或天气
Install
npx skills add QuixiAI/Hexis --skill travel-prep -g -y
SKILL.md
Frontmatter
{
"name": "travel-prep",
"aliases": [
"travel",
"trip",
"itinerary",
"packing",
"vacation"
],
"category": "productivity",
"contexts": [
"chat"
],
"requires": {
"tools": [
"calendar_events",
"recall"
]
},
"bound_tools": [
"calendar_events",
"calendar_create",
"calendar_update",
"email_search",
"email_read",
"search_contacts",
"recall",
"remember",
"web_search",
"web_fetch",
"manage_backlog",
"todoist_list_tasks",
"todoist_create_task",
"asana_list_projects",
"asana_create_task"
],
"description": "Turn calendar events, confirmations, current research, and personal context into a practical trip brief"
}
Travel Preparation
Build a source-grounded plan for a trip without turning planning into an unauthorized booking or purchase.
Workflow
- Establish the trip. Confirm the destination, dates, travelers, origin, time zone, and any constraints the user supplied. If several calendar events could be the trip, show the candidates and ask which one they mean.
- Gather owned facts. Read the relevant calendar events and, when useful, search email for booking confirmations. Treat confirmation numbers, addresses, times, and baggage or check-in rules as sensitive. Include them only when they help the user and do not persist them unless asked.
- Recover personal context. Use
recallfor stated preferences, accessibility needs, previous promises, and destination context. Never convert a weak or unrelated memory into a trip requirement. - Research what can change. Use
web_searchandweb_fetchfor current entry requirements, transit disruptions, opening hours, weather-dependent advice, and other time-sensitive facts. Name the source and checked date. Separate official requirements from suggestions. - Build the brief. Present a chronological itinerary, unresolved gaps, departure checklist, local logistics, reservations, contacts, and a short contingency section. Preserve local times and label time zones when ambiguity is possible.
- Offer actions. Propose calendar blocks or tasks after the brief. Create or update them only when the user explicitly chooses the exact action and destination system. Prefer the local backlog when no external task service is configured.
Control and Failure Boundaries
- Never book, buy, cancel, check in, or submit traveler information. This skill prepares; it does not transact.
- Never silently move an event or infer a missing date, traveler, currency, visa status, or reservation.
- A request to "prepare" authorizes reading and drafting, not calendar changes, outbound mail, or task creation.
- If calendar or email access is unavailable, continue from details the user provides and state exactly what is missing. Give the concrete setup or input needed next instead of ending at an error.
- Keep unknowns visible. A short plan with an explicit gap is better than a complete-looking fiction.
Version History
- 97f625f Current 2026-08-29 01:32


