add-bookings-from-text

add-bookings-from-text is a skill for Claude Code from everway-ai/everway-mcp-server. It costs 100 tokens per session (1,067 once invoked), scanned A, original, MIT.

A skill that turns pasted travel confirmations, emails, or trip notes into structured Everway itinerary items. Everway is a trip-planning service that keeps bookings in a day-by-day plan with maps.

In plain words
What is it for?
Use it to add pasted reservations or travel details to an Everway itinerary.
Why use it?
It removes the need to re-enter flight, hotel, train, restaurant, or activity details by hand. It can match the booking details to an existing trip or help determine whether a new trip is needed.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the everway plugin — 5 skills, 2 MCP servers shipped together

Good fit Use it to add pasted reservations or travel details to an Everway itinerary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/everway-ai/everway-mcp-server/add-bookings-from-text
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add everway-ai/everway-mcp-server --skill add-bookings-from-text
Clone the repo
git clone --depth 1 https://github.com/everway-ai/everway-mcp-server

Made for: Claude Code.

Or install everway, the plugin that ships this one along with the rest of its 5 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for add-bookings-from-text

README.md
[![agentmods](https://agentmods.dev/badge/skills/everway-ai/everway-mcp-server/add-bookings-from-text/github.svg)](https://agentmods.dev/skills/everway-ai/everway-mcp-server/add-bookings-from-text)
Your own site
<a href="https://agentmods.dev/skills/everway-ai/everway-mcp-server/add-bookings-from-text"><img src="https://agentmods.dev/badge/skills/everway-ai/everway-mcp-server/add-bookings-from-text/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-bookings-from-text

Your own site · 80×15
<a href="https://agentmods.dev/skills/everway-ai/everway-mcp-server/add-bookings-from-text"><img src="https://agentmods.dev/badge/skills/everway-ai/everway-mcp-server/add-bookings-from-text.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,067 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00100 $0.01067
Opus 5 $0.00050 $0.00534
Sonnet 5 $0.00020 $0.00213
Haiku 4.5 $0.00010 $0.00107

Measured 12d ago against content hash 7c55175bb3c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

add-bookings-from-text scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/add-bookings-from-text/SKILL.md · 75 lines

How it starts

The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add Bookings from Text

Keywords

add booking, add this to my trip, add reservation, add my flight, add hotel, paste confirmation, booking confirmation, add these to Everway, put this on the itinerary, import bookings, add dinner reservation, add activity

Overview

Everway's core habit is forwarding confirmation emails to a trip's private @everway.ai address. When the user pastes booking details into chat instead, this skill turns that text into structured itinerary items so the result is the same: everything on one day-by-day plan with maps.

Use this skill when: the user pastes confirmation text, describes bookings in free text, or asks to add one or more reservations to a trip.

Workflow

Step 1: Pick the trip

Call list_trips and match against context (trip name, dates, destination).

  • One obvious match → use it and say which trip you're adding to.
  • Ambiguous → ask, showing trip names and dates.
  • No trip yet → call get_account first. If canCreateTrip is true, offer to create_trip with a name and dates inferred from the bookings. If false, relay the upgrade message rather than failing silently.

Step 2: Extract one item per booking

Split the text into discrete bookings and extract fields for each:

Field What to look for
title Short and specific, e.g. "ANA 109 to Tokyo", "Park Hyatt Tokyo"
category One of: flight, lodging, train, ferry, bus, car, transfer, restaurant, activity, document, note
startsAt / endsAt ISO 8601 local time, e.g. 2026-08-27T11:45 (no timezone offset)
timezone IANA name like Asia/Tokyo when the location makes it clear
locationName / address Venue name and street address — Everway geocodes these onto the trip map automatically, so don't invent coordinates
confirmationNumber Booking reference, PNR, reservation code
costAmount / currency Amount and 3-letter code (defaults to USD if omitted)
provider Airline, hotel chain, or vendor
notes Anything useful that doesn't fit elsewhere (seat, gate, cancellation policy)

Read the full file on GitHub · 75 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 75 lines · 100 tokens per session scan A 7c55175bb3c2

Subscribe to this mod's changes

add-bookings-from-text is a skill published in the GitHub repository everway-ai/everway-mcp-server (1 stars, last pushed 1mo ago), licensed MIT. It adds 100 tokens to every session and 1,067 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens