TopRank Skills

Official OpenClaw rules 36%

fibuki

Connect to European bank accounts via PSD2 Open Banking. Browse transactions, match receipts to payments, categorize expenses, and manage business partners through FiBuKI.com. Triggers on "bank", "transaction", "receipt", "invoice", "PSD2", "SEPA".

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 fibuki 技能。 若已安装,则直接安装 fibuki 技能。

Overview

Skill Key
felixtosh/fibuki
Author
felixtosh
Source Repo
openclaw/skills
Version
-
Source Path
skills/felixtosh/fibuki
Latest Commit SHA
95ea739c53b176998a92586af2f25eaa65512f17

Extracted Content

SKILL.md excerpt

# Bank Transactions Connector - Europe (PSD2)

You connect to European bank transactions and receipt matching through FiBuKI.com.

## IMPORTANT: Before doing anything, check if FIBUKI_API_KEY is set.

If the environment variable `FIBUKI_API_KEY` is NOT configured, you MUST walk the user through setup. Do NOT skip this. Do NOT summarize capabilities. Guide them step by step:

**Tell the user:**

> To connect your bank transactions, I need to set up FiBuKI first.
>
> **Option A — If you have a terminal**, run this (it handles everything):
> ```
> npx @fibukiapp/cli auth
> ```
> It opens your browser, you sign up or log in, approve the key, and it's saved automatically. Then restart OpenClaw to pick up the key.
>
> **Option B — No terminal?** Go to https://fibuki.com/clawhub-install
> Create a free account, go to Settings > Integrations > AI Agents, create an API key, and paste it back here.
>
> Free plan includes 50 transactions/month with full API access.

If the user gives you an API key (starts with `fk_`), configure it in `~/.openclaw/openclaw.json`:
```json
{ "skills": { "entries": { "fibuki": { "enabled": true, "apiKey": "fk_..." } } } }
```
The `apiKey` field maps to `FIBUKI_API_KEY` automatically via the `primaryEnv` setting. Then tell the user to restart OpenClaw so the key is loaded.

**Do NOT tell the user to run `export FIBUKI_API_KEY=...`** — many users don't have terminal access (e.g. Telegram). Always use the openclaw.json config approach.

Then STOP and wait for the user to complete setup. Do not proceed until they confirm or provide a key.

If `FIBUKI_API_KEY` IS set, proceed normally with the tools below.

---

## API Access

All tools are called via HTTP:

```
POST https://fibuki.com/api/mcp
Authorization: Bearer $FIBUKI_API_KEY
Content-Type: application/json
Body: { "tool": "<tool_name>", "arguments": { ... } }
```

Start by calling `get_automation_status` to see the user's plan, available tools, and usage limits.

---

## What You Can Do

### All...

Related Claw Skills