receipt-compliance

receipt-compliance is a skill for Claude Code, Codex from ramp-public/cursor-plugin. It costs 66 tokens per session (1,859 once invoked), scanned A, original, MIT.

Instructions for finding company transactions that do not have receipts and attaching the correct receipt files. A receipt is proof of purchase, such as a PDF or image from a shop or service provider.

In plain words
What is it for?
Use it to find missing receipts, check whether a receipt is attached, upload supported file types, and attach them after confirming the match.
Why use it?
It helps find missing documentation while reducing the risk of attaching the wrong receipt to a transaction. It also limits the default search to the user's own transactions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to find missing receipts, check whether a receipt is attached, upload supported file types, and attach them after confirming the match.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ramp-public/cursor-plugin/receipt-compliance
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 ramp-public/cursor-plugin --skill receipt-compliance
Clone the repo
git clone --depth 1 https://github.com/ramp-public/cursor-plugin

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 receipt-compliance

README.md
[![agentmods](https://agentmods.dev/badge/skills/ramp-public/cursor-plugin/receipt-compliance.svg)](https://agentmods.dev/skills/ramp-public/cursor-plugin/receipt-compliance)
Your own site
<a href="https://agentmods.dev/skills/ramp-public/cursor-plugin/receipt-compliance"><img src="https://agentmods.dev/badge/skills/ramp-public/cursor-plugin/receipt-compliance.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,859 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.00066 $0.01859
Opus 5 $0.00033 $0.00929
Sonnet 5 $0.00013 $0.00372
Haiku 4.5 $0.00007 $0.00186

Measured 7d ago against content hash 4c1cbe26c7e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

receipt-compliance 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 7d 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/receipt-compliance/SKILL.md · 200 lines

How it starts

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

Non-Negotiables

  • Scope to the user's own transactions unless they explicitly request broader access.
  • Never upload a receipt without confirming the match — wrong receipt on wrong transaction is worse than no receipt.
  • When running in sweep mode, present the plan before uploading. Let the user confirm.
  • Use ramp transactions missing {uuid} as the reliable check for whether a receipt is attached — it returns missing_receipt: true/false in real time. The receipt_uuids field in the list response can be used as a quick filter, but it may be stale (e.g., remaining null even after a successful upload+attach).
  • Receipts must be base64-encoded for upload. Accepted types: PNG, JPEG, PDF, HEIC, WEBP.
  • All CLI flags use underscores, not hyphens (e.g., --from_date, --transaction_uuid).

Workflow

Mode 1: Upload a specific receipt

When the user has a receipt file and wants to attach it to a transaction:

# Find the transaction
ramp transactions list --transactions_to_retrieve my_transactions \
  --from_date {date} --state cleared --agent --page_size 20

# Base64 encode the file (agent does this)
# For a file at /path/to/receipt.pdf:
base64 -i /path/to/receipt.pdf | tr -d '\n'

# Upload and auto-attach in one step
ramp receipts upload \
  --content_type "application/pdf" \
  --filename "receipt.pdf" \
  --file_content_base64 "{base64_string}" \
  --transaction_uuid {txn_uuid}

The response returns receipt_uuid and attached_to_transaction: true/false.

If --transaction_uuid is omitted, the receipt is uploaded but not attached. You can attach later with:

ramp receipts attach {receipt_uuid} {transaction_uuid}

Mode 2: Compliance sweep — find all missing receipts

ramp transactions list --transactions_to_retrieve my_transactions \
  --from_date {start} --to_date {end} --state cleared --agent --page_size 50

Filter results for transactions where receipt_uuids is null or empty. You can also check missing_items on individual transactions:

Read the full file on GitHub · 200 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. 7d ago First seen · 200 lines · 66 tokens per session scan A 4c1cbe26c7e5

Subscribe to this mod's changes

receipt-compliance is a skill published in the GitHub repository ramp-public/cursor-plugin (1 stars, last pushed 1mo ago), licensed MIT. It adds 66 tokens to every session and 1,859 once invoked, about $0.0003 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