← 返回 Skills 市场
angelstreet

Konto

作者 angelstreet · GitHub ↗ · v1.1.0
cross-platform ⚠ suspicious
406
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install konto
功能描述
Deploy and run Konto (personal finance dashboard) locally. Use when setting up a new Konto instance, troubleshooting installation, or helping users get start...
使用说明 (SKILL.md)

Konto — Personal Finance API

Query personal finance data from Konto (bank accounts, investments, assets, loans, transactions).

Setup

# ~/.openclaw/secrets/konto.env
export KONTO_API_KEY="konto_xxxxxxxxxxxx"
export KONTO_URL="https://konto.angelstreet.io"

Quick Answers

"How much BTC do I have?"

source ~/.openclaw/secrets/konto.env
curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/investments" | jq '.investments[] | select(.code | test("BTC|bitcoin"; "i")) | {label, quantity, current_value}'

"What's my net worth?"

curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/summary" | jq '{patrimoine_net, accounts: .accounts.total_balance, investments: .investments.total_value, assets: .assets.total_value, loans: .loans.total_remaining}'

"When does my loan end?"

curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/loans" | jq '.loans[] | {name, remaining_amount, end_date, monthly_payment}'

"What are my subscriptions?"

curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/summary" | jq '{count: .subscriptions.count, monthly: .subscriptions.monthly}'

"How much do I spend on housing?"

curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/transactions?months=6&category=logement" | jq '{total: .total, transactions: [.transactions[] | {date, label, amount}]}'

"Financial overview"

curl -s -H "Authorization: Bearer $KONTO_API_KEY" "$KONTO_URL/api/v1/summary"

Helper Script

bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh summary
bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh investments
bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh transactions 3  # last 3 months
bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh loans
bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh assets
bash ~/.openclaw/workspace/skills/konto/scripts/konto.sh accounts

Endpoints

Endpoint Description
GET /api/v1/summary Full financial overview (start here)
GET /api/v1/accounts Bank accounts list
GET /api/v1/transactions?months=6&category=X Categorized transactions
GET /api/v1/investments Portfolio (ETFs, stocks, crypto)
GET /api/v1/assets Real estate, vehicles
GET /api/v1/loans Active loans

Full API Reference

See ~/shared/projects/konto/docs/api.md for complete docs including analytics endpoints.

Scope

This skill uses a personal scope key (free). For cross-user analytics (pro), see the konto-analytics skill.

安全使用建议
This skill appears to be a simple API client for a Konto service (it curls endpoints and expects an API key). Before installing or using it: 1) Be aware that the package description claims it will 'deploy' Konto locally but there are no deployment steps — if you wanted a deploy script, ask the author or reject the skill. 2) The helper script and SKILL.md source ~/.openclaw/secrets/konto.env — do not put secrets there unless you trust the endpoint. Confirm KONTO_URL is the host you expect (script defaults to https://konto.angelstreet.io while api.md mentions localhost). 3) Inspect or run the script yourself in a restricted environment (or a container) to verify behavior; the script only issues curl requests, but those requests will reveal your API key to the configured URL. 4) If you need analytics endpoints, note they require a different scope; only give that key if you understand the implications. If you want deployment instructions or source for running Konto locally, request those explicitly — they are not included here.
功能分析
Type: OpenClaw Skill Name: konto Version: 1.1.0 The Konto skill bundle is a legitimate tool for querying personal finance data via the Konto API. It includes a bash script (scripts/konto.sh) and documentation (SKILL.md, api.md) that facilitate standard API interactions using curl and jq. No evidence of data exfiltration, malicious execution, or prompt injection was found; all actions are consistent with the stated purpose of managing financial data from https://konto.angelstreet.io.
能力评估
Purpose & Capability
The skill description says 'Deploy and run Konto (personal finance dashboard) locally' but the SKILL.md, api.md, and helper script are purely an API client / query helper (curl + jq) and contain no deployment or build instructions. That mismatch could be benign (misleading description) but is an incoherence a user should be aware of.
Instruction Scope
Runtime instructions consistently tell the agent/user to source ~/.openclaw/secrets/konto.env and then curl Konto endpoints. The instructions do not read other system files or credentials beyond that secrets file. They do not attempt to exfiltrate data to unexpected endpoints. Note: example default endpoints differ between files (SKILL.md/script use https://konto.angelstreet.io while api.md lists default http://localhost:5004).
Install Mechanism
There is no install spec (instruction-only) and the only bundled code is a small helper script (konto.sh) that issues curl calls. Nothing in the package downloads or extracts remote code during install.
Credentials
The skill requires an API key and URL (KONTO_API_KEY, KONTO_URL) to function; that is proportionate for an API client. However, the registry metadata lists no required env vars while the SKILL.md and script explicitly expect ~/.openclaw/secrets/konto.env — a minor metadata omission that could confuse users. Ensure you only provide the key to a trusted URL.
Persistence & Privilege
The skill does not request always:true, does not attempt to modify other skills or system-wide configuration, and doesn't persist tokens beyond reading the user's secrets file. It runs as an on-demand helper.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install konto
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /konto 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Konto skill v1.1.0 — now provides API querying for live personal finance data. - Redesigned skill to use API keys and direct API calls for live data queries. - Added comprehensive API usage examples for common finance questions. - Introduced a helper shell script (`scripts/konto.sh`) for quick command-line access to key endpoints. - Added new documentation files: `api.md` and `_meta.json`. - Updated instructions and scope details to clarify setup and personal usage.
v1.0.0
Initial release — self-host personal finance dashboard
元数据
Slug konto
版本 1.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Konto 是什么?

Deploy and run Konto (personal finance dashboard) locally. Use when setting up a new Konto instance, troubleshooting installation, or helping users get start... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 406 次。

如何安装 Konto?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install konto」即可一键安装,无需额外配置。

Konto 是免费的吗?

是的,Konto 完全免费(开源免费),可自由下载、安装和使用。

Konto 支持哪些平台?

Konto 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Konto?

由 angelstreet(@angelstreet)开发并维护,当前版本 v1.1.0。

💬 留言讨论