Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

monzomonzo 搜索

Agent Skill

monzo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

66,316

周安装

2,709

GitHub Stars

1

下载量

21,239
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:monzo(monzo 搜索)
来源仓库:https://github.com/rhesketh/monzo
安装命令:
openclaw skills install monzo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install monzo

简介

访问 Monzo 银行帐户 - 检查余额、查看交易、管理资金、发送提要通知。用于个人财务查询和银行自动化。

SKILL.md

name
monzo
description
Access Monzo bank account - check balance, view transactions, manage pots, send feed notifications. For personal finance queries and banking automation.
metadata
{"openclaw":{"emoji":"🏦","requires":{"env":["MONZO_KEYRING_PASSWORD"],"bins":["curl","jq","openssl","bc"]},"primaryEnv":"MONZO_KEYRING_PASSWORD"}}

Monzo Banking Skill

Access your Monzo bank account to check balances, view transactions, manage savings pots, and send notifications to your Monzo app.

Prerequisites

Before setting up this skill, you need:

  • A Monzo account (UK personal, joint, or business account)
  • The Monzo app installed on your phone (for SCA approval)
  • OpenClaw running with workspace access
  • Standard tools: curl, jq, openssl, bc (pre-installed on most Linux systems)

Quick Start (TL;DR)

# 1. Set the MONZO_KEYRING_PASSWORD env var (see "Setting the Password" below)

# 2. Create OAuth client at https://developers.monzo.com/
#    - Set Confidentiality: Confidential
#    - Set Redirect URL: http://localhost

# 3. Run setup
scripts/setup.sh

# 4. Approve in Monzo app when prompted, then:
scripts/setup.sh --continue

# 5. Test it
scripts/balance.sh

Detailed Setup Guide

Step 1: Set the Encryption Password

The MONZO_KEYRING_PASSWORD environment variable is used to encrypt your Monzo credentials at rest. Choose a strong, unique password and don't lose it — you'll need it if you ever move or restore the skill.

There are several ways to provide this variable. Choose whichever fits your setup:

Option A: OpenClaw skill config (simplest)

Add to your OpenClaw config (e.g. openclaw.json):

{
  skills: {
    entries: {
      "monzo": {
        enabled: true,
        env: {
          "MONZO_KEYRING_PASSWORD": "choose-a-secure-password-here"
        }
      }
    }
  }
}

Then restart: openclaw gateway restart

Note: This stores the password in plaintext in the config file. Ensure the file has restrictive permissions (chmod 600) and is not checked into version control.

Option B: Shell environment (keeps password out of config files)

Add to your shell profile (~/.bashrc, ~/.zshrc, etc.):

export MONZO_KEYRING_PASSWORD="choose-a-secure-password-here"

Then restart your shell and OpenClaw.

Option C: systemd EnvironmentFile (for server deployments)

Create a secrets file (e.g. /etc/openclaw/monzo.env):

MONZO_KEYRING_PASSWORD=choose-a-secure-password-here

Set permissions: chmod 600 /etc/openclaw/monzo.env

Reference it from your systemd unit with EnvironmentFile=/etc/openclaw/monzo.env.

Option D: Password manager / secrets manager

Use your preferred secrets tool to inject the env var at runtime. Any method that sets MONZO_KEYRING_PASSWORD in the process environment will work.

Step 2: Create Monzo OAuth Client

  1. Go to https://developers.monzo.com/ and sign in with your Monzo account
  2. Click "Clients""New OAuth Client"
  3. Fill in:

- Name: OpenClaw (or your preferred name) - Logo URL: *(leave blank)* - Redirect URLs: http://localhost ← exactly this, no trailing slash - Description: *(leave blank)* - Confidentiality: Confidential ← ⚠️ Important! Enables refresh tokens

  1. Click Submit
  2. Note your Client ID (oauth2client_...) and Client Secret (mnzconf....)

Step 3: Run the Setup Wizard

scripts/setup.sh

The wizard will:

  1. Ask for your Client ID and Client Secret
  2. Give you an authorization URL to open in your browser
  3. Ask you to paste the redirect URL back
  4. Exchange the code for access tokens
  5. Save encrypted credentials

Alternative: Non-interactive mode (useful for automation or agents):

scripts/setup.sh --non-interactive \
  --client-id oauth2client_xxx \
  --client-secret mnzconf.xxx \
  --auth-code eyJ...

Step 4: Approve in Monzo App (SCA)

⚠️ This step is required! Monzo requires Strong Customer Authentication.

  1. Open the Monzo app on your phone
  2. Look for a notification about "API access" or a new connection
  3. Tap to approve

If you don't see a notification:

  • Go to Account → Settings → Privacy & Security → Manage connected apps
  • Find and approve your client

After approving, complete setup:

scripts/setup.sh --continue

Step 5: Verify It Works

# Check authentication
scripts/whoami.sh

# Check your balance
scripts/balance.sh

You should see your account info and current balance. You're done! 🎉


For the Agent

This section tells the agent how to use this skill effectively.

When to Use This Skill

Use this skill when the user asks about:

  • Balance: "How much money do I have?", "What's my balance?"
  • Transactions: "What did I spend on X?", "Show recent transactions"
  • Spending analysis: "How much did I spend on coffee this month?"
  • Savings: "How much is in my savings?", "Move £X to my holiday pot"
  • Notifications: "Send a reminder to my Monzo app"

Common Patterns

# "How much money do I have?"
scripts/balance.sh

# "Show me recent transactions" / "What did I spend?"
scripts/transactions.sh              # All available, newest first

# "Show me my last 5 transactions"
scripts/transactions.sh --limit 5    # 5 most recent

# "What did I spend this week?"
scripts/transactions.sh --since 7d

# "How much did I spend on coffee this month?"
scripts/transactions.sh --search coffee --since 30d

# "What are my savings pots?"
scripts/pots.sh

# "Put £50 in my holiday fund"
scripts/pots.sh deposit pot_XXXXX 5000  # Amount in pence!

# "Send a reminder to my phone"
scripts/feed.sh --title "Don't forget!" --body "Check the gas meter"

Important Notes for Agents

  1. Money is in pence: £50 = 5000, £1.50 = 150
  2. Dates can be relative: --since 7d means last 7 days
  3. Use human-readable output by default (no --json flag)
  4. Pot IDs: Use scripts/pots.sh first to get pot IDs before depositing/withdrawing
  5. Multiple accounts: User may have personal, joint, and business accounts. Default is personal. Use scripts/whoami.sh to see all accounts.

Error Handling

If you see forbidden.insufficient_permissions:

  • Tell the user to check their Monzo app and approve API access
  • Then run scripts/setup.sh --continue

If you see MONZO_KEYRING_PASSWORD not set:

  • The env var isn't available in the process environment
  • Guide user to set it using one of the methods in Step 1 of the setup guide

Script Reference

balance - Check Account Balance

scripts/balance.sh                 # Default account
scripts/balance.sh acc_...         # Specific account
scripts/balance.sh --json          # JSON output

Output:

Current Balance: £1,234.56
Total (with pots): £2,500.00
Spent today: £12.34

transactions - Transaction History

Fetches all available transactions (paginated), displayed newest first.

scripts/transactions.sh                         # All transactions, newest first
scripts/transactions.sh --limit 10              # 10 most recent
scripts/transactions.sh --since 7d              # Last 7 days only
scripts/transactions.sh --since 2026-01-01      # Since specific date
scripts/transactions.sh --search coffee         # Search by merchant/description/notes
scripts/transactions.sh --search "Pret" --since 30d  # Combined filters
scripts/transactions.sh --id tx_...             # Get specific transaction
scripts/transactions.sh --json                  # JSON output

Output:

DATE         AMOUNT     DESCRIPTION                          CATEGORY
============ ========== =================================== ===============
2026-01-29  -£3.50     Pret A Manger                       eating_out
2026-01-29  -£12.00    TfL                                 transport
2026-01-28  -£45.23    Tesco                               groceries

Total: 3 transaction(s)

pots - Savings Management

scripts/pots.sh                              # List all pots
scripts/pots.sh list --json                  # JSON output
scripts/pots.sh deposit pot_... 5000         # Deposit £50 (5000 pence)
scripts/pots.sh withdraw pot_... 2000        # Withdraw £20 (2000 pence)

Output (list):

NAME                      BALANCE      GOAL         ID
========================= ============ ============ ====================
Holiday Fund              £450.00      £1,000.00    pot_0000...
Emergency                 £2,000.00    £3,000.00    pot_0001...

feed - Send App Notifications

scripts/feed.sh --title "Reminder"                        # Simple notification
scripts/feed.sh --title "Alert" --body "Details here"    # With body
scripts/feed.sh --title "Link" --url "https://..."       # With tap action

whoami - Check Authentication

scripts/whoami.sh                  # Show auth status and accounts
scripts/whoami.sh --account-id     # Just the default account ID
scripts/whoami.sh --json           # JSON output

receipt - Attach Receipts to Transactions

scripts/receipt.sh create tx_... --merchant "Shop" --total 1234 --item "Thing:1234"
scripts/receipt.sh get ext_...
scripts/receipt.sh delete ext_...

webhooks - Manage Webhooks (Advanced)

scripts/webhooks.sh list
scripts/webhooks.sh create https://your-server.com/webhook
scripts/webhooks.sh delete webhook_...

Troubleshooting

"forbidden.insufficient_permissions"

Most common issue! Monzo requires app approval (SCA).

Fix:

  1. Open Monzo app → check for notification → approve
  2. Or: Account → Settings → Privacy & Security → Manage connected apps → approve
  3. Run: scripts/setup.sh --continue

"MONZO_KEYRING_PASSWORD not set"

The env var isn't available in the process environment.

Fix: Set MONZO_KEYRING_PASSWORD using any of the methods described in Step 1 of the setup guide, then restart OpenClaw.

"Authorization code has been used"

Each auth code is single-use. Start fresh:

scripts/setup.sh --reset

"No refresh token received"

Your OAuth client isn't set to "Confidential". Create a new client with Confidentiality = Confidential, then:

scripts/setup.sh --reset

"Credentials file not found"

Run setup first:

scripts/setup.sh

"Failed to decrypt credentials"

Wrong MONZO_KEYRING_PASSWORD. Check your config matches what you used during setup.


Security Notes

  • Credentials are encrypted at rest (AES-256-CBC)
  • Encryption key is your MONZO_KEYRING_PASSWORD
  • Access tokens auto-refresh (no manual intervention needed)
  • File permissions are set to 600 (owner only)
  • All API calls use HTTPS
  • No sensitive data is logged

Files

skills/monzo/
├── SKILL.md              # This documentation
└── scripts/
    ├── lib/monzo.sh      # Shared library
    ├── setup             # OAuth setup wizard
    ├── whoami            # Validate authentication
    ├── balance           # Check balance
    ├── transactions      # Transaction history
    ├── pots              # Savings pots
    ├── feed              # App notifications
    ├── receipt           # Receipt management
    └── webhooks          # Webhook management

Credentials: ~/.openclaw/credentials/monzo.json (encrypted, or ~/.clawdbot/credentials/monzo.json on older installs)


API Coverage

FeatureScripts
Authenticationsetup, whoami
Balancebalance
Transactionstransactions
Pots (Savings)pots
Feed (Notifications)feed
Receiptsreceipt
Webhookswebhooks

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.36%
按下载量换算20,254

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills