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 mnlt/teleport --skill lemonsqueezygit clone --depth 1 https://github.com/mnlt/teleportWrote 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/mnlt/teleport/lemonsqueezy)<a href="https://agentmods.dev/skills/mnlt/teleport/lemonsqueezy"><img src="https://agentmods.dev/badge/skills/mnlt/teleport/lemonsqueezy.svg" alt="Measured on agentmods" height="20"></a>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.00084 | $0.01842 |
| Opus 5 | $0.00042 | $0.00921 |
| Sonnet 5 | $0.00017 | $0.00368 |
| Haiku 4.5 | $0.00008 | $0.00184 |
Grade B, and why
lemonsqueezy scanned grade B with 2 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 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
**Do NOT suggest editing `~/.claude/settings.local.json` manually.** The `teleport-setup add-key` command handles it with backup, validation, and masked input. Stop execution until the user has run the command and restar Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sL "${H[@]}" \ How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Lemon Squeezy
Direct REST access to Lemon Squeezy — a Merchant of Record that collects/remits EU VAT + US sales tax, eats chargebacks, and handles fraud for ~5% + fees. Uses the JSON:API spec.
Usage
- Use for: Solo dev / small SaaS selling globally, hosted checkout URLs, software license issuance + validation, subscriptions with tax handled.
- Skip for: Sub-5% fees at scale (use Stripe), physical goods / marketplaces, usage-based metered billing with complex proration.
Credentials check
[ -n "$LEMONSQUEEZY_API_KEY" ] && echo "LEMONSQUEEZY_API_KEY: PRESENT" || echo "LEMONSQUEEZY_API_KEY: MISSING"
Never echo the variable directly — the value would land in the conversation transcript.
If MISSING, respond to the user with EXACTLY this message (do NOT paraphrase, do NOT suggest manual JSON edits):
I need your lemonsqueezy credential. Run this in another terminal — it'll open the signup page, validate format, and save it safely with masked input:
teleport-setup add-key lemonsqueezyThen restart Claude Code (
/exit, thenclaude) and ask me again.
Do NOT suggest editing ~/.claude/settings.local.json manually. The teleport-setup add-key command handles it with backup, validation, and masked input. Stop execution until the user has run the command and restarted.
API
- Base URL:
https://api.lemonsqueezy.com/v1(HTTPS only). - Auth:
Authorization: Bearer $LEMONSQUEEZY_API_KEY. Accept: application/vnd.api+jsonANDContent-Type: application/vnd.api+jsonrequired on every request (both). Omitting them returns misleading401 Unauthenticatedeven with a valid key — the #1 silent-failure source.- Rate limits: 300 req/min main API, 60 req/min license API (tracked separately). Back off on 429.
JSON:API basics
Every response uses the envelope { data, included, meta, links }. Real attrs live at data.attributes.X (not data.X); data.id is a string. relationships are stubs like { store: { data: { type, id } } } — pass ?include=store to hydrate the full object into top-level included[]. Errors come back as {"errors":[{"detail","status","title"}]}, not in data.
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.
- 8d ago First seen · 115 lines · 84 tokens per session scan B 2118afa4f8e3
lemonsqueezy is a skill published in the GitHub repository mnlt/teleport (8 stars, last pushed 4mo ago), licensed MIT. It adds 84 tokens to every session and 1,842 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
card-payment
A Payme card-payment workflow for UzCard and Humo cards. It saves a card token, confirms the card by SMS, creates a receipt, and charges the card.
recurrent-payment
A recurring-payment workflow for T-Kassa, a payment service. It links a customer's card during an initial payment and later charges that saved payment authorisation for a subscription.
wb-pricing
A Wildberries seller workflow for changing product prices and checking the costs behind them. Wildberries is an online marketplace; the workflow accounts for commission, delivery, and storage costs.
payment-link
A Payme payment-link workflow. It creates a receipt and sends the customer an SMS containing a link to pay it, without requiring the customer's card details.
receipts-report
A Payme receipt-reporting workflow. Payme is a payment service; this retrieves receipts for a date range, groups them by status, and totals their amounts.
agreement-setup
Set up a bKash tokenized agreement for repeat charges and check its status.