Wise

v1.0.0

Wise (TransferWise) — international transfers, multi-currency balances, recipients, exchange rates, and statements.

0· 318·1 current·2 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for aiwithabidi/wise.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Wise" (aiwithabidi/wise) from ClawHub.
Skill page: https://clawhub.ai/aiwithabidi/wise
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: WISE_API_TOKEN
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install wise

ClawHub CLI

Package manager switcher

npx clawhub@latest install wise
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the code and required credential (WISE_API_TOKEN). The script implements expected API calls (profiles, balances, recipients, quotes, transfers, rates, statements) against api.transferwise.com.
Instruction Scope
SKILL.md describes the CLI usage and required env var. The runtime code additionally attempts to read a .env file from WORKSPACE or ~/.openclaw/workspace if the env var is not set — this fallback is not documented in SKILL.md. The code does not access other external endpoints or unrelated system resources.
Install Mechanism
No install spec (instruction-only with an included Python script). No downloads or external installers; uses only Python stdlib. Low installation risk.
Credentials
Only WISE_API_TOKEN is required (appropriate for this purpose). The code also reads WORKSPACE to locate a .env file as a fallback — WORKSPACE is not declared as required and the .env lookup is undocumented, which could surface tokens stored in a workspace file.
Persistence & Privilege
always is false and the skill does not request persistent or elevated platform privileges. It does not modify other skills or system-wide configurations.
Assessment
This skill appears to do what it says: a CLI that calls the Wise API and requires a WISE_API_TOKEN. Before installing, review where you store the token: the script will read WISE_API_TOKEN from the environment and — if missing — attempt to read a .env file under WORKSPACE or ~/.openclaw/workspace (this fallback isn't documented). Use a dedicated token with least privilege, set WISE_API_TOKEN in the environment rather than a shared .env file, and inspect/verify the included scripts yourself. Also be aware of some small bugs in the code (mismatched placeholder names) that may cause certain commands to fail; test in a safe environment first.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

💸 Clawdis
EnvWISE_API_TOKEN
Primary envWISE_API_TOKEN
latestvk975aagjxkmg6z84hfcwpcba0582g5a4
318downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

💸 Wise

Wise (TransferWise) — international transfers, multi-currency balances, recipients, exchange rates, and statements.

Requirements

VariableRequiredDescription
WISE_API_TOKENWise API token

Quick Start

# List profiles (personal/business)
python3 {{baseDir}}/scripts/wise.py get-profiles

# Get multi-currency balances
python3 {{baseDir}}/scripts/wise.py get-balances --profile-id <value>

# List recipients
python3 {{baseDir}}/scripts/wise.py list-recipients --profile-id <value>

# Create recipient
python3 {{baseDir}}/scripts/wise.py create-recipient --profile-id <value> --currency <value> --type <value> --details "JSON"

# Create transfer quote
python3 {{baseDir}}/scripts/wise.py create-quote --profile-id <value> --source <value> --target <value> --amount <value>

# Create transfer
python3 {{baseDir}}/scripts/wise.py create-transfer --quote-id <value> --recipient-id <value> --reference <value>

# Fund a transfer
python3 {{baseDir}}/scripts/wise.py fund-transfer --profile-id <value> --transfer-id <value>

# Get transfer status
python3 {{baseDir}}/scripts/wise.py get-transfer <id>

# List transfers
python3 {{baseDir}}/scripts/wise.py list-transfers --profile-id <value> --limit "10"

# Get exchange rate
python3 {{baseDir}}/scripts/wise.py get-rate --source <value> --target <value>

# Get statement
python3 {{baseDir}}/scripts/wise.py get-statement --profile-id <value> --balance-id <value>

Output Format

All commands output JSON by default.

Script Reference

ScriptDescription
{baseDir}/scripts/wise.pyMain CLI — all commands in one tool

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

Comments

Loading comments...