Finance
Personal Ai AgentFrom the repository description
npx -y skills add br3eze-code/br3eze-code --skill financeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 569 tokens by cl100k_base, as published. Nobody here has run it
Skill: finance
Version: 2026.7.0
Dispatcher: manage_finance
Domain: finance
Description
Financial engine for AgentOS operators — revenue reports, 7-day trend data, audit trail, enhanced P2P credit transfers (with phone/email/username resolution and fee support), and Mastercard Account-to-Account (A2A) payment initiation and status tracking.
When to Use
Invoke when the user asks about:
- Revenue summary or income reports
- 7-day voucher sales trends
- Audit logs or transaction history
- Sending credits to another user (P2P transfer)
- Looking up a user by phone, email, or username
- Initiating a Mastercard A2A payment for a voucher
- Checking the status of a Mastercard payment
Tools
| Action | Description |
|---|---|
finance.report | All-time revenue summary grouped by plan |
finance.trends | 7-day daily revenue trend |
finance.audit | Last N audit events |
p2p.transfer | Transfer credits between users with fee deduction |
p2p.resolve | Resolve phone/email/username → Firebase UID |
mastercard.initiate | Initiate A2A bank-to-wallet payment |
mastercard.status | Check status of an initiated payment |
Parameters
P2P Transfer:
{
"action": "p2p.transfer",
"from": "uid_sender",
"to": "+254712345678",
"amount": 5.00
}
Mastercard Initiate:
{
"action": "mastercard.initiate",
"voucherCode": "STAR-4A2F-QWTQ",
"amount": 5.00,
"currency": "USD"
}
P2P Identity Resolvers
Recipient can be specified as:
- Phone (E.164):
+254712345678 - Email:
[email protected] - Username:
alice
Fee Logic
Configured via environment variables:
P2P_FEE_PERCENT— percentage fee (default:0)P2P_FEE_FLAT— flat fee in USD (default:0)
Dual-entry bookkeeping: p2p_transfer_sent and p2p_transfer_received records written separately.
Mastercard A2A
- OAuth 1.0a RSA-SHA256 signing
- Webhook reconciliation:
POST /api/webhook/mastercard - Status check:
GET /api/voucher/payment/status/:paymentId
What ships with it: 2 files
7.2 KB alongside SKILL.md, 1 of them executable
- index.jsruns5.8 KB
- skill.json1.4 KB
Gives 0 of the 12 instructions most finance skills give in 569 tokens
Counted across 469 of the 469 authors here whose files we hold, read 2026-08-07
- Extract date vendor amount and descriptionin 15 of 469, across 3 files
- Scan folder for invoice filesin 14 of 469, across 2 files
- Rename files to standard formatin 14 of 469, across 2 files
- Show organization plan before movingin 14 of 469, across 2 files
- Generate summary CSVin 14 of 469, across 2 files
- Organize files by categoryin 13 of 469, across 1 file
- Preserve original filesin 13 of 469, across 1 file
- Flag files missing critical infoin 13 of 469, across 1 file
- Produce the requested output filein 9 of 469, across 4 files
- Build best, base, and worst case scenariosin 9 of 469, across 5 files
- Implement backoff if rate limit errors occurin 8 of 469, across 3 files
- Determine the weighted average cost of capitalin 8 of 469, across 4 files
Said here and by no other author read
- report all-time revenue grouped by plan
- generate 7-day daily revenue trend
- retrieve last N audit events
- transfer credits between users
- resolve phone email or username to UID
- initiate A2A bank payment for voucher
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.