rate-parity-monitor

rate-parity-monitor is a skill for Claude Code, Codex from mtnrabi/travel-agent-skills. It costs 0 tokens per session (3,252 once invoked), scanned A, original, MIT.

A hotel price-comparison tool that checks the same property and dates as seen by customers in different countries.

In plain words
What is it for?
Use it to compare hotel availability, room types, prices, and stay details across countries.
Why use it?
It reveals geo-pricing and rate differences that may be hidden when checking a hotel from only one market.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the travel-agent-skills plugin — 8 skills, 2 MCP servers shipped together

Good fit Use it to compare hotel availability, room types, prices, and stay details across countries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mtnrabi/travel-agent-skills/rate-parity-monitor
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 mtnrabi/travel-agent-skills --skill rate-parity-monitor
Clone the repo
git clone --depth 1 https://github.com/mtnrabi/travel-agent-skills

Made for: Claude Code, Codex.

Or install travel-agent-skills, the plugin that ships this one along with the rest of its 8 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 rate-parity-monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/mtnrabi/travel-agent-skills/rate-parity-monitor/github.svg)](https://agentmods.dev/skills/mtnrabi/travel-agent-skills/rate-parity-monitor)
Your own site
<a href="https://agentmods.dev/skills/mtnrabi/travel-agent-skills/rate-parity-monitor"><img src="https://agentmods.dev/badge/skills/mtnrabi/travel-agent-skills/rate-parity-monitor/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 rate-parity-monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/mtnrabi/travel-agent-skills/rate-parity-monitor"><img src="https://agentmods.dev/badge/skills/mtnrabi/travel-agent-skills/rate-parity-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,252 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00000 $0.03252
Opus 5 $0.00000 $0.01626
Sonnet 5 $0.00000 $0.00650
Haiku 4.5 $0.00000 $0.00325

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

Security

Grade A, and why

rate-parity-monitor scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sS -X POST "https://booking-live-api.p.rapidapi.com/hotel_by_name" \
skills/rate-parity-monitor/SKILL.md · 133 lines

How it starts

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

Rate Parity Monitor

Overview

proxy_country on the hotels REST API routes the request through a residential proxy in that country, so the same hotel and the same dates can be priced as a shopper resident there would see them. That turns a hotel lookup into a rate-parity and geo-pricing audit, which is a commercial job for revenue managers, distribution teams, and competitive-pricing analysts.

Two things make this harder than it looks, and the whole workflow below exists to handle them:

  • Room rates move on their own. Two identical calls to the same market minutes apart can come back different. That movement can be as large as a genuine country-to-country gap, so a single call per country cannot tell the two apart.
  • Real geo-pricing gaps are modest, and they depend on the property. In a controlled test on 2026-08-28, three independent Rome guest houses came back roughly 4% cheaper from Japan than from Germany, and that held across repeated samples. The same fixed test on a chain hotel returned an identical price from every country tried. Properties under a chain parity contract can show no gap at all, and that is a valid result, not a failed check.

So: fix one named property, sample every market more than once, and report a gap only when it is bigger than the movement you can see inside a single market.

Use travel-data-api for auth, base URL, and endpoint details. Parity work runs on the hotels REST host booking-live-api.p.rapidapi.com with the RapidAPI header pair, or on the ad-free hotels MCP server, where price_as_seen_from is the same input under a different name. The fields you compare across markets are available, price, price_string, room_type, and nights from POST /hotel_by_name.

Endpoints

Job the user has Endpoint Required Parity-relevant optional
"Is this hotel priced differently in other countries?" POST /hotel_by_name hotel_name, checkin_date, checkout_date (YYYY-MM-DD) proxy_country (two-letter code), currency, area, adults, children, free_cancellation
"Does the whole market look different from abroad?" POST /search destination, checkin_date, checkout_date proxy_country, currency (default USD), adults (default 2), children (default 0), budget_per_night, filters[]

Read the full file on GitHub · 133 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. 8d ago Changed · +6 lines c390caea41f1
  2. 12d ago First seen · 127 lines · 0 tokens per session scan A 93af6731be92

Subscribe to this mod's changes

rate-parity-monitor is a skill published in the GitHub repository mtnrabi/travel-agent-skills (4 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,252 tokens. A static security scan graded it A with 1 finding (makes network calls). 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

paid-ads-amazon

Plan and review Amazon Ads with margin-aware ACoS, product, and search-term guardrails. Use for Amazon advertising, Sponsored Products, Sponsored Brands, Sponsored Display, ASIN targeting, Amazon ACoS, or Amazon Ads performance exports.

nowork-studio/notfair-plugin · 55 tokens

beat-sync-reel

Generates Instagram Reels where product image cuts are synced to audio beats. Accepts audio as a local file, URL, or search query. Uses librosa for beat detection, FFmpeg Ken Burns for scene animation, and Pillow for text overlays. No AI video generation — fully free, fast, and scalable.

gooseworks-ai/goose-skills · 68 tokens

ebay-search

Search eBay listings - find items, auctions, deals, and compare prices.

gooseworks-ai/goose-skills · 19 tokens

einbeziehung-online-clickwrap-browsewrap

Für Einbeziehung Online Clickwrap Browsewrap: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 42 tokens

kurzfristige-preiserhoehung-lieferfrist

Für Kurzfristige Preiserhöhung 309: prüft Frist, Form, Zuständigkeit und Eilbedarf; Ergebnis: Fristen- und Risikoampel. Fachgebiet: AGB-Recht-Prüfer. Route: kurzfristige-preiserhoehung-lieferfrist.

Klotzkette/claude-fuer-deutsches-recht · 72 tokens

plattform-online-gate-rollout-rangfolge

Für Plattform und Online Checkout: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: plattform-online-gate-rollout-rangfolge.

Klotzkette/claude-fuer-deutsches-recht · 62 tokens