Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

financial-reporting财务报告

Agent Skill

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

总安装

950

周安装

40

GitHub Stars

4

下载量

333
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill financial-reporting

简介

financial-reporting 用于生成合规财务报告,支持 GAAP 或 IFRS 标准下的数据聚合与可视化,适合在 Codex、Claude、Cursor、Gemini CLI 中进行季度审计或年度总结时使用。

  • 它能处理收入报表和资产负债表,并提供趋势分析图表。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill financial-reporting,需从 GitHub 获取原始 README 进一步确认用法。
  • 使用前建议核对财务系统接口权限、敏感数据脱敏要求及导出格式合规性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

financial-reporting

Purpose

This skill enables the generation and analysis of financial reports by aggregating data, creating visualizations, and ensuring compliance with standards like GAAP or IFRS. It processes financial datasets to produce actionable insights for reporting tasks.

When to Use

Use this skill for quarterly financial summaries, annual audits, compliance checks, or ad-hoc analyses of income statements and balance sheets. Apply it when integrating with accounting software or when visualizing trends in financial metrics.

Key Capabilities

  • Data aggregation: Pulls data from sources via API endpoint /api/v1/aggregate?start_date=2023-01-01&end_date=2023-12-31, supporting filters for accounts and currencies.
  • Visualization: Generates charts using libraries like Matplotlib; e.g., creates a pie chart for expense breakdown with plot_type='pie'&data_source='expenses'.
  • Compliance tools: Checks reports against rules, such as validating totals with compliance_check('GAAP', report_data), returning boolean results.
  • Analysis functions: Performs ratio analysis, e.g., calculate_ratio('debt_to_equity', balance_sheet_data), outputting a float value.
  • Export formats: Supports JSON, CSV, or PDF output; configure with export_format='PDF'&file_path='/reports/q1.pdf'.

Usage Patterns

To use this skill, import the module in Python scripts or call via CLI. Start by authenticating with $FINANCIAL_API_KEY, then aggregate data before analysis. For scripts, wrap calls in try-except blocks for error resilience. Common pattern: Fetch data, process it, visualize, and export. Example workflow: aggregate_data() -> analyze_data() -> generate_report().

Common Commands/API

  • CLI Command: openclaw financial-report aggregate --start-date 2023-01-01 --end-date 2023-12-31 --key $FINANCIAL_API_KEY

- Aggregates data and outputs to stdout.

  • API Endpoint: POST /api/v1/reports/generate with JSON body: {"type": "balance_sheet", "data": {"assets": 100000}}

- Requires header: Authorization: Bearer $FINANCIAL_API_KEY

  • Code Snippet (Python): import openclaw_financial api_key = os.environ.get('FINANCIAL_API_KEY') report = openclaw_financial.generate_report('income_statement', api_key)
  • Another Snippet (for analysis): from openclaw_financial import analyze result = analyze.calculate_ratio('quick_ratio', {'cash': 50000, 'receivables': 30000, 'liabilities': 100000}) print(result) # Outputs: 0.8
  • Config Format: Use JSON for configurations, e.g., {"api_endpoint": "/api/v1/aggregate", "auth_key": "$FINANCIAL_API_KEY", "default_currency": "USD"} in a file named .financial-config.json.

Integration Notes

Integrate by setting the environment variable $FINANCIAL_API_KEY for authentication before running commands. For external systems, use the SDK to connect; e.g., in a Node.js app, require the package and pass the key: const client = new FinancialClient(process.env.FINANCIAL_API_KEY);. Ensure data sources are compatible (e.g., CSV or API-compatible). For web apps, handle CORS on the /api/v1/* endpoints by adding headers in your server config.

Error Handling

Handle authentication errors by checking for 401 responses and prompting for $FINANCIAL_API_KEY. For data errors (e.g., invalid dates), catch exceptions like ValueError in code: try: openclaw_financial.aggregate_data(start_date) except ValueError as e: print(f"Error: {e} - Use YYYY-MM-DD format"). API timeouts use retry logic with exponential backoff; implement via requests library: response = requests.get(url, headers, timeout=10). Log all errors with details like error codes (e.g., 404 for missing endpoints) for debugging.

Concrete Usage Examples

  1. Generate a quarterly balance sheet: Use CLI: openclaw financial-report generate --type balance_sheet --period Q1-2024 --key $FINANCIAL_API_KEY. This aggregates assets/liabilities and outputs a PDF report for auditing.
  2. Analyze earnings trends: In Python, fetch data and visualize: import openclaw_financial data = openclaw_financial.aggregate_data('earnings', os.environ['FINANCIAL_API_KEY']) openclaw_financial.visualize(data, 'line', 'earnings_trend.png') This plots quarterly earnings to identify growth patterns.

Graph Relationships

  • Related Skills: accounting-tools (for ledger management), data-visualization (for chart generation)
  • Cluster: financial (shares data sources with budgeting and forecasting skills)
  • Dependencies: Requires data-analysis cluster for underlying functions
  • Connections: Links to compliance-auditing via shared API endpoints like /api/v1/compliance-check

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.04%
按下载量换算113

Claude

30.77%
按下载量换算102

Cursor

17.74%
按下载量换算59

Gemini CLI

9.66%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills