compare

compare is a command for Claude Code from Hainrixz/agente-pagokit. It costs 36 tokens per session (608 once invoked), scanned A, original, MIT.

A command that compares payment providers for a specific country, amount, currency, and payment situation. It calculates fees and compares coverage, onboarding time, subscriptions, and merchant-of-record support.

In plain words
What is it for?
Use it to compare provider costs, estimate the amount received, check buyer payment coverage, and understand why a provider was included or rejected.
Why use it?
It turns a generic feature comparison into a decision based on the business's actual transaction and market needs.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/advise.js --country <ISO2> --amount <n> --currency <CUR> [--billing ...] [--methods ...].

Part of the pagokit plugin — 8 skills, 8 commands, 1 agent, 5 hooks shipped together

Good fit Use it to compare provider costs, estimate the amount received, check buyer payment coverage, and understand why a provider was included or rejected.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Hainrixz/agente-pagokit
agentmods
npx agentmods add commands/hainrixz/agente-pagokit/compare

Made for: Claude Code.

Or install pagokit, the plugin that ships this one along with the rest of its 8 skills, 8 commands, 1 agent, 5 hooks.

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 compare

README.md
[![agentmods](https://agentmods.dev/badge/commands/hainrixz/agente-pagokit/compare/github.svg)](https://agentmods.dev/commands/hainrixz/agente-pagokit/compare)
Your own site
<a href="https://agentmods.dev/commands/hainrixz/agente-pagokit/compare"><img src="https://agentmods.dev/badge/commands/hainrixz/agente-pagokit/compare/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 compare

Your own site · 80×15
<a href="https://agentmods.dev/commands/hainrixz/agente-pagokit/compare"><img src="https://agentmods.dev/badge/commands/hainrixz/agente-pagokit/compare.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 608 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.00036 $0.00608
Opus 5 $0.00018 $0.00304
Sonnet 5 $0.00007 $0.00122
Haiku 4.5 $0.00004 $0.00061

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

Security

Grade A, and why

compare 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 5d 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.

commands/compare.md · 61 lines

How it starts

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

/pagokit:compare

Comparisons in blog posts are generic. This one is for their situation, with arithmetic.

  1. Read the arguments. If country, amount or currency are missing, either infer them from project-analyzer or ask once — a comparison without a concrete amount is just a feature table.
  2. Run the engine for the situation:
node scripts/advise.js --country <ISO2> --amount <n> --currency <CUR> [--billing ...] [--methods ...]
  1. Pull the named providers out of candidates and rejected. A provider that was ruled out is often the most useful row in the table — say which filter removed it.
  2. Read skills/payment-advisor/data/providers/<id>.json for each one, for the detail the index does not carry.

Output

<A> vs <B> — selling from <country>, charging <amount> <currency>

                        <A>                     <B>
Cost per charge         <fee.explanation>       <fee.explanation>
You receive             <net>                   <net>
Buyer coverage          ...                     ...
Subscriptions           ...                     ...
Merchant of record      ...                     ...
Onboarding              <model>, ~<days> days   ...
PagoKit can             <integration_level>     <integration_level>
Notification model      <webhook | ...>         ...
Settlement              <payout_delay_days>     ...

Where they actually differ:
• <the one or two things that would change the decision>

Ruled out for your situation:
• <name> — <filter>: <reason>

Lead with cost, because that is what they came for — but do not stop there. The decision is usually made by something the fee table does not show: an onboarding gate, a missing local rail, a merchant-of-record trade-off, or the fact that one of them will not send you a webhook at all.

Anti-patterns

  • Do not compare providers on a generic 2.9% + 30¢ when the catalog has real figures for the actual amount and currency.
  • Do not present a provider as available if the engine rejected it on merchant domicile or onboarding. Show it in the ruled-out list with the reason.
  • Do not hide the integration_level difference. "PagoKit builds A completely and only advises on B" is frequently the deciding factor.
  • Do not invent a fee. If the catalog has no figure, say so and link the pricing page.

Read the full file on GitHub · 61 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. 5d ago First seen · 61 lines · 36 tokens per session scan A 24de1a13ce38

Subscribe to this mod's changes

compare is a command published in the GitHub repository Hainrixz/agente-pagokit (46 stars, last pushed 9d ago), licensed MIT. It adds 36 tokens to every session and 608 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-09-04.