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 ramp-public/cursor-plugin --skill receipt-compliancegit clone --depth 1 https://github.com/ramp-public/cursor-pluginWrote 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/ramp-public/cursor-plugin/receipt-compliance)<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>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.00066 | $0.01859 |
| Opus 5 | $0.00033 | $0.00929 |
| Sonnet 5 | $0.00013 | $0.00372 |
| Haiku 4.5 | $0.00007 | $0.00186 |
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.
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 returnsmissing_receipt: true/falsein real time. Thereceipt_uuidsfield 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:
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.
- 7d ago First seen · 200 lines · 66 tokens per session scan A 4c1cbe26c7e5
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.
Other skills, from other repositories
sector-rotation
An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.
strategy-pivot-designer
Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.
twitter-reader
Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…
chenhao-limit-up
A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.
trading-risk-gate
Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.
vectorbt
High-performance vectorized backtesting with parameter optimization, portfolio simulation, and rich performance metrics.