awardwallet

awardwallet is a skill for Claude Code from borski/travel-hacking-toolkit. It costs 33 tokens per session (1,806 once invoked), scanned A, original, MIT.

A connection to AwardWallet, a service that tracks loyalty accounts, balances, status, and account activity. It requires an AwardWallet Business account, an API key, a user ID, and an approved IP address.

In plain words
What is it for?
Use it to review points inventory, inspect loyalty-account transactions, check airline status, and plan trips using points.
Why use it?
It gathers points and status information from connected programmes in one place instead of requiring separate account checks.

Skill for Claude Code

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

Part of the travel-hacker plugin — 48 skills, 1 agent, 6 MCP servers shipped together

Good fit Use it to review points inventory, inspect loyalty-account transactions, check airline status, and plan trips using points.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/borski/travel-hacking-toolkit/awardwallet
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 borski/travel-hacking-toolkit --skill awardwallet
Clone the repo
git clone --depth 1 https://github.com/borski/travel-hacking-toolkit

Made for: Claude Code.

Or install travel-hacker, the plugin that ships this one along with the rest of its 48 skills, 1 agent, 6 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 awardwallet

README.md
[![agentmods](https://agentmods.dev/badge/skills/borski/travel-hacking-toolkit/awardwallet/github.svg)](https://agentmods.dev/skills/borski/travel-hacking-toolkit/awardwallet)
Your own site
<a href="https://agentmods.dev/skills/borski/travel-hacking-toolkit/awardwallet"><img src="https://agentmods.dev/badge/skills/borski/travel-hacking-toolkit/awardwallet/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 awardwallet

Your own site · 80×15
<a href="https://agentmods.dev/skills/borski/travel-hacking-toolkit/awardwallet"><img src="https://agentmods.dev/badge/skills/borski/travel-hacking-toolkit/awardwallet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,806 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 108
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00033 $0.01806
Opus 5 $0.00016 $0.00903
Sonnet 5 $0.00007 $0.00361
Haiku 4.5 $0.00003 $0.00181

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

Security

Grade A, and why

awardwallet 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 10d 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.

> - **How to find your IP:** `curl ifconfig.me`
plugins/travel-hacking-toolkit/skills/awardwallet/SKILL.md · 181 lines

How it starts

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

AwardWallet Skill

Query loyalty program balances, elite status, and transaction history via the AwardWallet Business Account Access API.

Source: business.awardwallet.com — Requires a Business account.

Authentication

Set these in your .env file:

All requests use the X-Authentication header.

First-time setup gotcha: AwardWallet enforces an IP allowlist on Business API keys. Without your IP whitelisted, every call returns {"error": "access_denied", "code": "IP_DENIED"}. Whitelist before troubleshooting.

  • Where to whitelist: https://business.awardwallet.com/profile/api
  • How to find your IP: curl ifconfig.me
  • Multi-IP: home, office, hotspot, VPN exit nodes, and any travel locations each need their own entry. Easiest is to whitelist a /24 if you're on a stable residential ISP.

Error signatures

Response Meaning Fix
{"error": "access_denied", "code": "IP_DENIED"} IP not on allowlist Whitelist current IP at the developer portal
Unauthorized / 401 Bad key Regenerate key
Empty accounts array User ID wrong or no connections Verify AWARDWALLET_USER_ID

API Base

https://business.awardwallet.com/api/export/v1

Quick Start: Get All Balances

curl -s -H "X-Authentication: $AWARDWALLET_API_KEY" \
  "https://business.awardwallet.com/api/export/v1/connectedUser/$AWARDWALLET_USER_ID" | jq '.accounts'

Response Fields

Each account object contains:

Field Description
accountId Unique ID for deep dive
code Provider code (e.g., "united", "chase", "amex")
displayName Human name (e.g., "United Airlines (MileagePlus)")
kind Category: Airlines, Hotels, Credit Cards, etc.
balance Formatted balance string
balanceRaw Numeric balance
properties Array with status, account number, expiration, etc.
history Last 10 transactions (call /account/{id} for full history)
errorCode 1 = successfully updated, 2 = invalid creds, etc.

Read the full file on GitHub · 181 lines

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. 10d ago First seen · 181 lines · 33 tokens per session scan A 02cdc55770fb

Subscribe to this mod's changes

awardwallet is a skill published in the GitHub repository borski/travel-hacking-toolkit (659 stars, last pushed 2d ago), licensed MIT. It adds 33 tokens to every session and 1,806 once invoked, about $0.0002 per session on Opus 5. 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-30.