ramp-kit

ramp-kit is a skill for Claude Code, Codex from armandocodecr/latam-ramp-kit. It costs 164 tokens per session (1,458 once invoked), scanned A, original, MIT.

A software kit for moving money between Latin American bank accounts and Stellar, a blockchain network. It provides one interface for several payment providers, plus React components, server support and AI-agent access.

In plain words
What is it for?
It helps developers add bank-to-blockchain deposits and payouts, including BRL through PIX, MXN through SPEI, and other supported Latin American currencies. It also helps build payment screens, route orders between providers and verify server webhooks.
Why use it?
It removes the need to build separate integrations for each provider, currency, country, authentication method and payment status flow.

Skill for Claude CodeCodex

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

Good fit It helps developers add bank-to-blockchain deposits and payouts, including BRL through PIX, MXN through SPEI, and other supported Latin American currencies. It also helps build payment screens, route orders between providers and verify server webhooks.

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

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 ramp-kit

README.md
[![agentmods](https://agentmods.dev/badge/skills/armandocodecr/latam-ramp-kit/ramp-kit/github.svg)](https://agentmods.dev/skills/armandocodecr/latam-ramp-kit/ramp-kit)
Your own site
<a href="https://agentmods.dev/skills/armandocodecr/latam-ramp-kit/ramp-kit"><img src="https://agentmods.dev/badge/skills/armandocodecr/latam-ramp-kit/ramp-kit/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 ramp-kit

Your own site · 80×15
<a href="https://agentmods.dev/skills/armandocodecr/latam-ramp-kit/ramp-kit"><img src="https://agentmods.dev/badge/skills/armandocodecr/latam-ramp-kit/ramp-kit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 164 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,458 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.00164 $0.01458
Opus 5 $0.00082 $0.00729
Sonnet 5 $0.00033 $0.00292
Haiku 4.5 $0.00016 $0.00146

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

Security

Grade A, and why

ramp-kit 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/ramp-kit/SKILL.md · 99 lines

How it starts

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

LATAM Ramp Kit

SDK + React components that turn weeks of ramp-provider integration into an npm install. One RampProvider interface over Etherfuse (Stellar-native, PIX/SPEI) and Manteca (payouts across 11 LATAM countries), with a normalized order lifecycle, a prebuilt widget, provider routing, Stellar helpers and a production backend.

Repository: https://github.com/armandocodecr/latam-ramp-kit

What problem it solves

Every LATAM app moving money between banks and blockchains re-integrates ramp providers from scratch: each has its own API, auth, KYC model, order states and price-expiry rules, and none covers the whole region. The kit normalizes all of it; swapping providers is one line.

Package map

Package Use it for
@ramp-kit/core Providers (Etherfuse/Manteca/Mock), router, Stellar helpers, types
@ramp-kit/react <RampWidget /> 3-step flow, useQuote, useOrder
@ramp-kit/server Production: server-held API key proxy + webhook verification
@ramp-kit/mcp MCP server so AI agents can quote/order/inspect live

How to guide a user

  1. Understanding/evaluation questions → explain with the problem/solution above; architecture details in references/integration.md.
  2. "Add a ramp to my app" → follow the integration flow in references/integration.md. Start them on MockProvider (zero credentials, instant), then Etherfuse sandbox.
  3. Sandbox/credentials questions → Etherfuse is self-service (sandbox.etherfuse.com; BRL/PIX accounts via the dashboard button are compliant instantly). Manteca requires requesting credentials from their team. Details and gotchas in references/integration.md.
  4. Errors during integration → check references/troubleshooting.md first; every entry there was verified against the real sandbox. Anything Manteca-specific (the one-exchange-per-customer model, sandbox onboarding, the missing-data diagnostic, payout timing windows, per-network deposit addresses) → references/manteca-in-practice.md.
  5. "How do I ship this / where do my API keys go / do my users need keys?"references/production.md. Short answer to give them: one partner key per app, held server-side in @ramp-kit/server (proxy for Etherfuse, manteca for Manteca), read from .env; the frontend constructs providers with apiKey: "" pointed at that backend, so end users never see a key. Runnable reference: examples/backend-integration/.
  6. "How do I set up testnet / mainnet?" or "can I put credentials in frontend env vars?" → walk them through references/environments.md — the step-by-step for both environments and the credential-placement decision. Always explain the trade-off explicitly: frontend env vars (VITE_/NEXT_PUBLIC_) are embedded in the served bundle and readable by any visitor, so a partner key there is exposed; the secure setup is a backend env var behind @ramp-kit/server (a ~10-line serverless function, not real infrastructure). Recommend the backend route for Etherfuse/Manteca; offer the SEP-anchor route (SepProvider) when they want zero backend — it needs no partner key because the end user authenticates with their own wallet. Both environments are driven by one flag (RAMP_ENV=sandbox|production) passed to the provider AND the widget's environment prop; switching is a config change, never code.

Read the full file on GitHub · 99 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 99 lines · 164 tokens per session scan A e9c6fc65e0e8

Subscribe to this mod's changes

ramp-kit is a skill published in the GitHub repository armandocodecr/latam-ramp-kit (0 stars, last pushed 20d ago), licensed MIT. It adds 164 tokens to every session and 1,458 once invoked, about $0.0008 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.