Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

finance-reconcile财务协调

Agent Skill

finance-reconcile 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,505

周安装

64

GitHub Stars

4

下载量

527
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/insight68/skills --skill finance-reconcile

简介

用于处理 GitHub 仓库、Issue、Pull Request 等协作信息。

  • 适合围绕代码变更或协作事项进行整理和跟踪。
  • 可结合来源仓库和原始 README 继续核验具体功能。
  • 安装前建议确认权限范围和仓库访问级别。finance-reconcile 属于待分类类 Skill,可作为该场景下的辅助能力补充。
  • 注意维护状态及是否依赖外部 API 调用。

SKILL.md

Finance Audit

Overview

Comprehensive financial audit tool that validates balance sheets and income statements. Performs four core audits: balance sheet equilibrium, income statement verification, account change tracking, and cross-statement relationship validation.

Quick Start

Basic Balance Sheet Audit

Verify balance sheet with account changes:

scripts/reconcile.py \
    --balance-sheet balance_sheet.xlsx \
    --account-changes account_changes.xlsx \
    --output audit_report.xlsx

Complete Financial Audit (Balance Sheet + Income Statement)

Full audit including profit statement:

scripts/reconcile.py \
    --balance-sheet balance_sheet.xlsx \
    --account-changes account_changes.xlsx \
    --income-statement income_statement.xlsx \
    --income-details income_details.xlsx \
    --transactions transactions.xlsx \
    --output complete_audit.xlsx \
    --period "2024年1月"

Using Custom Column Names

Use JSON config file for custom column names:

scripts/reconcile.py \
    --balance-sheet bs.xlsx \
    --account-changes ac.xlsx \
    --config my_config.json

Command Parameters

ParameterShortRequiredDescription
--balance-sheet-bYesBalance sheet file path
--account-changes-aYesAccount change details file path
--income-statement-iNoIncome statement file path
--income-details-dNoIncome statement details file path
--transactions-tNoTransaction details file path
--output-oNoOutput Excel audit report path
--period-pNoAudit period (default: 本期)
--tolerance-NoTolerance for acceptable difference (default: 0.01)
--config-cNoJSON config file for column names
--bs-sheet-NoBalance sheet sheet name or index
--ac-sheet-NoAccount changes sheet name or index
--is-sheet-NoIncome statement sheet name or index
--id-sheet-NoIncome details sheet name or index
--trans-sheet-NoTransaction details sheet name or index

Required File Formats

1. Balance Sheet (资产负债表) - Required

ColumnDescription
科目Account name
期初余额Opening balance
期末余额Closing balance
类型Account type (资产/负债/所有者权益)
金额Amount for totals

2. Account Changes (科目变动明细表) - Required

ColumnDescription
科目Account name
借方Debit amount
贷方Credit amount

3. Income Statement (利润表) - Optional

ColumnDescription
项目Income statement item
金额Amount

4. Income Details (利润明细表) - Optional

ColumnDescription
项目Item name (must match income statement)
金额Detail amount

5. Transactions (交易明细表) - Optional

ColumnDescription
科目Affected account
借方Debit amount
贷方Credit amount
日期 (optional)Transaction date
凭证号 (optional)Voucher number

See references/file_formats.md for detailed format specifications and custom column configuration.

Audit Objectives

The script performs four core audit objectives:

1. Balance Sheet Equilibrium Verification

Formula: 资产总计 = 负债总计 + 所有者权益总计

Verifies that the balance sheet is balanced overall.

2. Income Statement Verification

Logic: Income statement items = Corresponding detail summary

Validates each income statement item (revenue, expenses, etc.) against detail records.

3. Account Change Tracking

Logic: Opening Balance + Changes = Closing Balance

For each account:

  • Asset accounts: Closing = Opening + Debit - Credit
  • Liability/Equity accounts: Closing = Opening + Credit - Debit

4. Cross-Statement Relationship Validation

Logic: Retained earnings change ≈ Net profit

Validates relationships between balance sheet and income statement.

See references/verification_rules.md for detailed audit logic and troubleshooting.

Audit Outputs

Console Report

================================================================================
                              财务审计报告 - 本期
================================================================================

一、审计概述
--------------------------------------------------------------------------------
审计结果: 通过 ✓

二、资产负债表审计
--------------------------------------------------------------------------------
资产总计: ¥1,000,000.00
负债总计: ¥600,000.00
所有者权益总计: ¥400,000.00
资产负债平衡: 是 ✓

三、利润表审计
--------------------------------------------------------------------------------
利润项目匹配: 5/5

四、报表勾稽关系
--------------------------------------------------------------------------------
净利润: ¥100,000.00
未分配利润变动: ¥100,000.00
勾稽关系验证: 通过 ✓

五、不平衡项目清单
--------------------------------------------------------------------------------
  无不平衡项目

Excel Audit Report

When --output is specified, generates an Excel file with these sheets:

SheetContent
审计报告Full audit report text
科目变动分析Account analysis with opening/closing balances
交易影响追踪Transaction impact tracking
利润表核对Income statement verification results
不平衡项List of unbalanced items

Account Change Analysis Table

科目科目类型期初余额借方变动贷方变动净变动期末余额是否平衡差异
货币资金资产100000200000200001200000

Using the Script as a Module

from scripts.reconcile import (
    audit_financial_statements,
    generate_audit_report,
    export_audit_report
)

result, accounts = audit_financial_statements(
    balance_sheet_file='balance_sheet.xlsx',
    account_changes_file='account_changes.xlsx',
    income_statement_file='income_statement.xlsx',
    income_details_file='income_details.xlsx',
    transactions_file='transactions.xlsx',
    tolerance=0.01,
    period='2024年1月'
)

# Print console report
print(generate_audit_report(result, period='2024年1月'))

# Export Excel report
export_audit_report(result, 'audit_report.xlsx', accounts, period='2024年1月')

# Check audit result
if result.is_passed:
    print("Audit passed!")
else:
    print(f"Found {len(result.unbalanced_items)} unbalanced items")

Tolerance Setting

Default tolerance is ±0.01 yuan. Adjust with --tolerance:

scripts/reconcile.py \
    --balance-sheet bs.xlsx \
    --account-changes ac.xlsx \
    --tolerance 1.0

Consider these factors when setting tolerance:

  • Exchange rate fluctuations (for foreign currency)
  • System precision differences
  • Rounding errors

Troubleshooting

Balance Sheet Not Balanced

Possible causes:

  • Incorrect balance entries
  • Incorrect totals calculation
  • Opening/closing mismatch

Solutions:

  1. Check balance sheet total rows
  2. Verify account balances
  3. Check account type classification

Account Changes Unbalanced

Possible causes:

  • Missing change records
  • Incorrect debit/credit direction
  • Account name mismatch

Solutions:

  1. Ensure account names match exactly
  2. Verify debit/credit records
  3. Check for missing change records

Income Statement Not Matching

Possible causes:

  • Missing detail items
  • Inconsistent item names
  • Incorrect summary calculation

Solutions:

  1. Ensure detail table includes all items
  2. Check item name consistency
  3. Verify summary calculations

Cross-Statement Relationship Failed

Possible causes:

  • Profit distribution (dividends, retained earnings)
  • Mismatched accounting periods
  • Incorrect net profit calculation

Solutions:

  1. Consider profit distribution events
  2. Verify income statement net profit
  3. Confirm period consistency

Resources

scripts/reconcile.py

Core audit script supporting:

  • Balance sheet equilibrium verification
  • Income statement validation
  • Account change tracking
  • Cross-statement relationship validation
  • Transaction impact tracing
  • Comprehensive audit report generation

references/file_formats.md

Detailed file format specifications, column name mapping, and configuration options.

references/verification_rules.md

Comprehensive audit rules, validation logic, output examples, and troubleshooting guide.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.21%
按下载量换算191

Claude

31.45%
按下载量换算166

Cursor

17.71%
按下载量换算93

Gemini CLI

10.15%
按下载量换算53

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills