brighty-payouts

brighty-payouts is a skill for Claude Code from razz-team/brighty-agent-toolkit. It costs 129 tokens per session (3,232 once invoked), scanned A, original, MIT.

A payment tool for Brighty business accounts, including grouped payments, payroll, currency exchange between your accounts, and individual transfers.

In plain words
What is it for?
Running payroll, paying suppliers, sending SEPA or SWIFT transfers, and exchanging currencies between your own accounts.
Why use it?
It reduces the manual work of sending many payments or moving money between business accounts.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the brighty plugin — 4 skills, 1 MCP server shipped together

Good fit Running payroll, paying suppliers, sending SEPA or SWIFT transfers, and exchanging currencies between your own accounts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/razz-team/brighty-agent-toolkit/brighty-payouts
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 razz-team/brighty-agent-toolkit --skill brighty-payouts
Clone the repo
git clone --depth 1 https://github.com/razz-team/brighty-agent-toolkit

Made for: Claude Code.

Or install brighty, the plugin that ships this one along with the rest of its 4 skills, 1 MCP server.

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 brighty-payouts

README.md
[![agentmods](https://agentmods.dev/badge/skills/razz-team/brighty-agent-toolkit/brighty-payouts.svg)](https://agentmods.dev/skills/razz-team/brighty-agent-toolkit/brighty-payouts)
Your own site
<a href="https://agentmods.dev/skills/razz-team/brighty-agent-toolkit/brighty-payouts"><img src="https://agentmods.dev/badge/skills/razz-team/brighty-agent-toolkit/brighty-payouts.svg" alt="Measured on agentmods" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,232 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.00129 $0.03232
Opus 5 $0.00064 $0.01616
Sonnet 5 $0.00026 $0.00646
Haiku 4.5 $0.00013 $0.00323

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

Security

Grade A, and why

brighty-payouts 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/brighty-payouts/SKILL.md · 251 lines

How it starts

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

Brighty Payouts

Tools to move money out of Brighty business accounts: batched payouts (CREATED container with N transfers, committed in one shot), one-off internal/external transfers attached to a payout, and FX between two of the business's own accounts (intent + execute).

Activate this skill when the user wants to pay people or vendors, sweep funds between currencies, or stage and run payroll.

Tools provided

Payouts (6) — container + transfers + commit:

  • brighty_list_payouts — list payouts. The API takes no input filter parameters. Returns { payouts: Payout[], nextPage? }. Each Payout has id, createdAt, state (CREATED | STARTED | COMPLETED), paidTransfers, totalTransfers, optional name, description, paidAmount, totalAmount, startedAt, completedAt. Capture createdAt from this list — every other payout call needs it.
  • brighty_create_payout — open a CREATED container. Optional name and description. Returns the new Payout (note createdAt — keep it for follow-up calls).
  • brighty_get_payout — fetch one payout. Requires payoutId AND createdAt (the API rejects without createdAt). Returns { payout, transfers } where each transfer is discriminated by type (Crypto | Fiat | Internal).
  • brighty_create_internal_transfer — add a Brighty-to-Brighty transfer to a payout. Recipient is identified by receiverUsername (the @-tag on the recipient's Brighty profile, not a customer/account id). Source account currency must equal transfer currency; this tool does not FX. Idempotency-Key is required by the API; the tool auto-generates a UUIDv4 when none is supplied. Returns { transfer: { id, createdAt }, idempotencyKey }.
  • brighty_create_external_transfer — add a fiat (IBAN/BIC/account number) or crypto (on-chain address + transferNetworkId) transfer to a payout. Provide either an inline beneficiary (with kind: "FIAT" | "CRYPTO") or a saved beneficiaryId. The API requires createdAt (the payout's timestamp) as a query param — pass it via payoutCreatedAt. Idempotency-Key is required and auto-generated. Returns { transfer: { id, createdAt }, idempotencyKey }.
  • brighty_start_payout — commit a payout (POST /payouts/{id}/start?createdAt=...). Runs a local preflight balance check first: sum per-source-account requirements, fetch each source's balance, abort with a per-account shortfall list if any account is short. Requires payoutId and createdAt. The API returns 204 on success; the tool returns { ok: true }. skipPreflight=true is dangerous and only used when the user has explicitly accepted partial-failure risk.

Read the full file on GitHub · 251 lines

Files

What ships with it

2 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. 7d ago First seen · 251 lines · 129 tokens per session scan A 1a53235167e6

Subscribe to this mod's changes

brighty-payouts is a skill published in the GitHub repository razz-team/brighty-agent-toolkit (2 stars, last pushed 26d ago), licensed MIT. It adds 129 tokens to every session and 3,232 once invoked, about $0.0006 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