Sparebank1 transfers
Skill magnusrodseth/sparebank1-cli/skills/sparebank1-transfers
Move money with the `sb1` CLI (SpareBank 1), transfer between the user's own accounts, pay a credit card, or pay into a pension policy. Use when a user explicitly asks to transfer/move money, pay a credit card, or fund a pension via sb1. Handles the confirmation flow safely.From its SKILL.md
npx -y skills add magnusrodseth/sparebank1-cli --skill sparebank1-transfersAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 22 stars22 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.
- runs commandsInstructs the agent to run 6 commands, including `sb1 transfer debit --from Brukskonto --to Sparekonto --amount 250` and 5 more.
SKILL.md
2.2 KB, 474 tokens by cl100k_base, as published. Nobody here has run it
sparebank1-transfers
Money-movement workflows for SpareBank 1 via sb1. Read
sparebank1-shared first.
⚠ Transfers are real and irreversible. Treat every transfer as high-stakes.
Safety rules (follow exactly)
- Never pass
-y/--yesunless the user has explicitly confirmed the exact amount and destination in this conversation. Prefer letting the CLI's own confirmation prompt show, and surface its summary to the user. - Confirm
from,to, andamountagainstsb1 accountsbefore running. debittransfers are own-account only, both--fromand--tomust be the user's own accounts (the CLI rejects external destinations by design).- If anything is ambiguous (which account, how much), stop and ask. Do not guess.
Transfer between your own accounts
sb1 transfer debit --from Brukskonto --to Sparekonto --amount 250
sb1 transfer debit --from Brukskonto --to Sparekonto --amount 250 --message "Sparing"
The CLI prints a summary and asks Proceed? [y/N]. Amounts accept 250,
250.50, or 250,50. Optional --due-date YYYY-MM-DD schedules it.
Pay a credit card
sb1 transfer creditcard --from Brukskonto --credit-card-id <id> --amount 500
--credit-card-id is the credit card account id (find it via sb1 accounts --all).
The payment posts as a payment, so the card balance may update the next business
day.
Pay into a pension policy
sb1 transfer pension --from Brukskonto --policy-number <polisenummer> --amount 500
Non-interactive use
Only when the user has clearly authorized the specific transfer, you may add
-y to skip the prompt. Always echo back exactly what you ran (from / to /
amount) afterwards, and report the returned paymentId and any warnings.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.