fluxa-agent-wallet

fluxa-agent-wallet is a skill for Claude Code, Codex from deancourse/user-dot-agents. It costs 68 tokens per session (1,747 once invoked), scanned A, original, MIT.

A command-line integration for FluxA Agent Wallet, which lets AI agents make payments for paid APIs, send USDC cryptocurrency to wallets, and create payment links.

In plain words
What is it for?
Use it to pay for an API after an HTTP 402 response, send a USDC payout, or create a shareable link for receiving payment.
Why use it?
It handles these payment operations through commands without requiring the agent to manage private keys. It is intended for requests involving crypto payments, x402, USDC transfers, or payment links.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool.

Good fit Use it to pay for an API after an HTTP 402 response, send a USDC payout, or create a shareable link for receiving payment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/deancourse/user-dot-agents/fluxa-wallet
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 deancourse/user-dot-agents --skill fluxa-wallet
Clone the repo
git clone --depth 1 https://github.com/deancourse/user-dot-agents

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 fluxa-agent-wallet

README.md
[![agentmods](https://agentmods.dev/badge/skills/deancourse/user-dot-agents/fluxa-wallet.svg)](https://agentmods.dev/skills/deancourse/user-dot-agents/fluxa-wallet)
Your own site
<a href="https://agentmods.dev/skills/deancourse/user-dot-agents/fluxa-wallet"><img src="https://agentmods.dev/badge/skills/deancourse/user-dot-agents/fluxa-wallet.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,747 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00068 $0.01747
Opus 5 $0.00034 $0.00873
Sonnet 5 $0.00014 $0.00349
Haiku 4.5 $0.00007 $0.00175

Measured 8d ago against content hash 58952ab90028, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

fluxa-agent-wallet scanned grade A with 1 finding 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/fluxa-cli.bundle.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

1. PAYLOAD=$(curl -s <payment_link_url>) → Get full 402 payload JSON
skills/illustrated-slides-with-nano-banana/fluxa-wallet/SKILL.md · 179 lines

How it starts

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

FluxA Agent Wallet

FluxA Agent Wallet lets AI agents perform onchain financial operations — payments, payouts, and payment links — without managing private keys. All operations use the CLI (scripts/fluxa-cli.bundle.js).

Setup

The CLI bundle is located at scripts/fluxa-cli.bundle.js within this skill directory. It requires Node.js v18+.

node scripts/fluxa-cli.bundle.js <command> [options]

All commands output JSON to stdout:

{ "success": true, "data": { ... } }

Or on error:

{ "success": false, "error": "Error message" }

Exit code 0 = success, 1 = failure.

Capabilities

Capability What it does When to use
x402 Payment (v3) Pay for APIs using the x402 protocol with intent mandates Agent hits HTTP 402, needs to pay for API access
Payout Send USDC to any wallet address Agent needs to transfer funds to a recipient
Payment Link Create shareable URLs to receive payments Agent needs to charge users, create invoices, sell content

Prerequisites — Register Agent ID

Before any operation, the agent must have an Agent ID. Register once:

node scripts/fluxa-cli.bundle.js init \
  --email "[email protected]" \
  --name "My AI Agent" \
  --client "Agent v1.0"

Or pre-configure via environment variables:

export AGENT_ID="ag_xxxxxxxxxxxx"
export AGENT_TOKEN="tok_xxxxxxxxxxxx"
export AGENT_JWT="eyJhbGciOiJ..."

Verify status:

node scripts/fluxa-cli.bundle.js status

The CLI automatically refreshes expired JWTs.

Opening Authorization URLs (UX Pattern)

Many operations require user authorization via a URL (mandate signing, payout approval, agent registration). When you need the user to open a URL:

  1. Always ask the user first using AskUserQuestion tool with options:

    • "Yes, open the link"
    • "No, show me the URL"
  2. If user chooses YES: Use the open command to open the URL in their default browser:

    open "<URL>"
    

Read the full file on GitHub · 179 lines

Files

What ships with it

4 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. 8d ago First seen · 179 lines · 68 tokens per session scan A 58952ab90028

Subscribe to this mod's changes

fluxa-agent-wallet is a skill published in the GitHub repository deancourse/user-dot-agents (7 stars, last pushed 2mo ago), licensed MIT. It adds 68 tokens to every session and 1,747 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.