openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Wise

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

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 157 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aiwithabidi/wise

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent with a Wise/TransferWise CLI: it only asks for a Wise API token and talks to api.transferwise.com, but there are minor implementation issues and a small undocumented behavior to be aware of.

目的

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.

说明范围

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.

安装机制

No install spec (instruction-only with an included Python script). No downloads or external installers; uses only Python stdlib. Low installation risk.

证书

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.

持久

always is false and the skill does not request persistent or elevated platform privileges. It does not modify other skills or system-wide configurations.

综合结论

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, a…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Wise」。简介:Wise (TransferWise) — international transfers, multi-currency balances, recipie…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/wise/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: wise
description: "Wise (TransferWise) — international transfers, multi-currency balances, recipients, exchange rates, and statements."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "💸", "requires": {"env": ["WISE_API_TOKEN"]}, "primaryEnv": "WISE_API_TOKEN", "homepage": "https://www.agxntsix.ai"}}
---

# 💸 Wise

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

## Requirements

| Variable | Required | Description |
|----------|----------|-------------|
| `WISE_API_TOKEN` | ✅ | Wise API token |


## Quick Start

```bash
# 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

| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/wise.py` | Main CLI — all commands in one tool |

## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.

📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)