Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

finance-statements财务报表

Agent Skill

finance-statements 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,290

周安装

507

GitHub Stars

公开资料未说明

下载量

4,015
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install finance-statements

简介

在内存中持续跟踪银行、信用卡等财务报表,支持新声明导入与历史记录管理。

  • 适用于个人或企业财务流水监控、对账及周期性支出分析场景。
  • 通过上传 PDF 文本触发处理,自动归类并更新到本地跟踪文件。
  • 涉及敏感财务数据时需确认存储安全与隐私保护策略是否合规。
  • finance-statements 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
finance-statements
description
Track financial statements (bank, credit card, insurance, CanadaLife, etc.) in memory tracking files. Use when: (1) user provides a new statement (PDF text, pasted content) to record, (2) user wants to add a statement period into an existing memory/finance/*.md file, (3) user mentions 'add to' or 'statement' with financial content. NOT for: reading existing statements, general financial questions, or non-statement documents.
metadata
openclaw
paths
access
rw
description
Reads and appends financial statement data to tracking files

Finance Statements

Track and record financial statement data into memory tracking files.

Workflow

Step 1: Identify the Target File

Scan memory/finance/ for files matching *statement* patterns:

ls memory/finance/*statement* 2>/dev/null

Always present the list and ask the user which file(s) to update, even if they mentioned a target. This ensures the right file is confirmed before writing.

Step 2: Load Target File & Accept New Statement

  1. Read the target file to understand its existing structure, format, and conventions
  2. Accept the new statement content from the user — this includes:

- The source file path (e.g., PDF filename like MasterCard Statement-1234 2025-03-25.pdf) - The statement content (extracted PDF text, pasted content, etc.) - Record both the file path and content for reference

  1. Identify the statement period, card/account, and key figures from the new data

Page-by-Page Mode

When the user says they'll provide pages one by one (or specifies a target file upfront):

  1. After Step 1, read the target file to learn its structure
  2. For each page the user provides:

- Parse the content immediately - Append the parsed transactions to the target file right away (don't wait for all pages) - Confirm what was recorded (e.g., "Page 1: recorded 15 transactions, running total $X")

  1. After the last page (user says "done", "last page", or "that's all"):

- Run Step 4 (validate math) against the full statement - Update the period index table with the summary row

This avoids losing context across many pages and gives the user incremental progress.

Chinese Statements

When statement content is in Chinese:

  • Translate descriptions to English but keep the original Chinese in parentheses

- Example: Amazon Shopping (亚马逊购物)

  • Translate column headers, summary fields, and notes to English
  • Currency amounts stay as-is (CNY ¥, etc.)
  • Date formats: convert to YYYY-MM-DD

Step 3: Record

  1. Match the format and conventions of the existing file exactly (table structure, headers, field names, date formats, description shortening style)
  2. Add a summary row to the period index table (if one exists)
  3. Add the detailed statement section with:

- Period summary (previous balance, payments, purchases, interest, fees, new balance, rewards) - Transaction table with all line items

  1. Insert in chronological order, before any other card sections
  2. Shorten merchant descriptions to match existing style (e.g., "GOOGLE*YOUTUBE SUPER G.CO/HELPPAY#NS ..." → "Google YouTube Super")

Step 4: Validate the Math

After merging, independently verify the statement's arithmetic:

  1. Sum all transactions (positive = charges, negative = credits/payments)
  2. Check: Previous Balance + Purchases & Debits − Payments & Credits + Interest + Fees = New Balance
  3. Check: Transaction sum should equal (Purchases & Debits − Payments & Credits)
  4. Report to user:

- ✅ "Statement math checks out" if totals match (within $0.02 rounding tolerance) - ⚠️ "Discrepancy found: calculated X, statement says Y" if they don't match — flag specific items if possible

Also verify:

  • Cash back / points calculations if data is available
  • Payment due dates and minimum payments are recorded
  • No duplicate transactions (same date + amount + description appearing twice unless genuinely separate)

File Naming Convention

Statement files live in memory/finance/ and follow this pattern:

{bank}-{holder}-{type}-{accountid}-statements.md
  • bank: Institution name (rbc, bmo, cibc, td, mbna, manulife, hsbc-hk, scb)
  • holder: Account holder — john, jane, or joint
  • type: Account type (chequing, saving, mc, visa)
  • accountid: Last digits or full account number

Examples:

  • rbc-john-mc-1234-statements.md
  • rbc-jane-saving-5678901-statements.md
  • td-joint-9876543-statements.md
  • bmo-jane-123456789-statements.md

When creating a new statement file, follow this convention.

Create New Statement File from Existing Template

When the user wants to create a new statement file for a different bank/account using an existing file as a structural template:

  1. Read the source file to extract its structure: section headings, subsection titles, table headers, summary field names, index table format
  2. Create the new file (following the naming convention) with:

- All section headings and subsection titles preserved - All table headers and column structures preserved - No data copied — use placeholders or leave empty rows - Update bank name, account number, card number references to the new account

  1. Present the new file to the user for confirmation before they start adding statements

This ensures consistent formatting across all statement tracking files.

Notes

  • When a card has both primary and co-applicant transactions, keep them in separate sub-tables (matching existing format)
  • Preserve existing content — only append new periods, never modify historical data
  • If the statement period already exists in the file, warn the user before overwriting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.49%
按下载量换算3,272

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills