money-movement

money-movement is a skill for Claude Code, Codex from Rohit-ATS/Airlock. It costs 41 tokens per session (1,826 once invoked), scanned A, original, MIT.

A set of rules for handling refunds, payouts and other money transfers safely. It focuses on exact amounts, currencies, recipients and cases where money may already have been sent.

In plain words
What is it for?
Use it before writing or reviewing code that moves money, including refunds, payouts, adjustments, payment disputes and duplicate-payment checks.
Why use it?
It helps prevent rounding errors, duplicate payments and mistaken assumptions that a completed payment can simply be undone. It also makes clear what a change includes and excludes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it before writing or reviewing code that moves money, including refunds, payouts, adjustments, payment disputes and duplicate-payment checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rohit-ats/airlock/money-movement
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 Rohit-ATS/Airlock --skill money-movement
Clone the repo
git clone --depth 1 https://github.com/Rohit-ATS/Airlock

Made for: Claude Code, Codex.

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 money-movement

README.md
[![agentmods](https://agentmods.dev/badge/skills/rohit-ats/airlock/money-movement/github.svg)](https://agentmods.dev/skills/rohit-ats/airlock/money-movement)
Your own site
<a href="https://agentmods.dev/skills/rohit-ats/airlock/money-movement"><img src="https://agentmods.dev/badge/skills/rohit-ats/airlock/money-movement/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 money-movement

Your own site · 80×15
<a href="https://agentmods.dev/skills/rohit-ats/airlock/money-movement"><img src="https://agentmods.dev/badge/skills/rohit-ats/airlock/money-movement.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,826 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.00041 $0.01826
Opus 5 $0.00020 $0.00913
Sonnet 5 $0.00008 $0.00365
Haiku 4.5 $0.00004 $0.00183

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

Security

Grade A, and why

money-movement 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 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.

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/money-movement/SKILL.md · 190 lines

How it starts

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

Money movement

Money that has left cannot be recalled by writing an inverse statement. There is no undo certificate for a refund, and claiming one is the single worst thing this skill exists to prevent.

A MONEY_MOVEMENT change always carries a SCOPE certificate. The claim is not "we can put it back". The claim is exactly these payments, to exactly these counterparties, for exactly this total — and explicitly not these others, for these reasons.


1. The four questions

  1. How much, in minor units, and in which currency? Never work in decimal majors. A float somewhere in the pipeline is how £41,904.00 becomes £41,903.99 across a thousand rows and the reconciliation fails for a week.
  2. To whom, counted as counterparties rather than as rows? Ten refunds to one customer is one angry phone call. One refund to ten thousand customers is a different event.
  3. Has any of it already gone out? This is the failure that matters. See §3.
  4. What is deliberately excluded, and why? The exclusion list is the part a reviewer actually reads.

2. Minor units, always

Compute, store, compare and report in the smallest unit of the currency. Convert to a display form exactly once, at the edge, for a human.

-- right
SELECT SUM(amount_minor) FROM charges WHERE ...;

-- wrong: introduces a float, and 0.1 + 0.2 is not 0.3
SELECT SUM(amount / 100.0) FROM charges WHERE ...;

Be careful with currencies that are not two-decimal. JPY and KRW have zero decimal places; BHD, KWD and TND have three. amount_minor / 100 is wrong for five of the currencies you are likely to meet. Read the currency, do not assume it.

Never sum across currencies to produce a single ceiling check. SUM(amount_minor) over mixed EUR and JPY is a meaningless number that will pass a ceiling it should not.


3. Double payment — the failure that matters

The dangerous scenario is not "the refund fails". It is "the refund succeeds twice". Three defences, and use all three.

Read the full file on GitHub · 190 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 · 190 lines · 41 tokens per session scan A 9295e8e5b60c

Subscribe to this mod's changes

money-movement is a skill published in the GitHub repository Rohit-ATS/Airlock (1 stars, last pushed 2d ago), licensed MIT. It adds 41 tokens to every session and 1,826 once invoked, about $0.0002 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