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.
npx skills add borski/travel-hacking-toolkit --skill awardwalletgit clone --depth 1 https://github.com/borski/travel-hacking-toolkitWrote 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.
[](https://agentmods.dev/skills/borski/travel-hacking-toolkit/awardwallet)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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` 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:
AWARDWALLET_API_KEY— Get from https://business.awardwallet.com/profile/apiAWARDWALLET_USER_ID— Your connected user ID. Find it via the List Connected Users endpoint below.
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. |
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.
- 10d ago First seen · 181 lines · 33 tokens per session scan A 02cdc55770fb
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.
Other skills, from other repositories
docs-builder
Reorg a docs corpus, split an oversized doc, search it, keep pages current, index them.
remember
Consolidate stashes + friction into project memory.
live-canvas
Conduct design interviews, generate UI variations, and collect live click-to-annotate feedback that streams into the session so edits land without leaving the browser. Use when the user wants rapid iterative UI refinement, not just batched feedback.
branch-review
Review a branch before merge [target] [level].
root-cause
Use when any test fails, bug appears, or behaviour surprises you, before proposing a fix - find the cause and prove it, by reading real evidence, tracing bad values back to their origin, comparing against a working case, and testing one hypothesis at a time.
ship
Mechanical pre-deploy gate — tests, build, tree state.