Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计提醒

finance-manager财务经理

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

30,264

周安装

1,259

GitHub Stars

356

下载量

10,608
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ailabs-393/ai-labs-claude-skills --skill finance-manager

简介

根据交易数据进行个人财务分析、支出跟踪和预算建议。

  • 从 PDF、CSV 和 JSON 文件中提取交易;自动处理和分类财务数据
  • 生成带有饼图(按类别支出)和条形图(随时间变化的收入与支出)的交互式 HTML 报告
  • 通过基准比较计算关键指标,包括储蓄率、每日平均值、最高支出和类别细分
  • 根据支出模式和指导阈值(住房、食品、公用事业、储蓄目标)提供个性化预算建议
  • 通过逐月分析确定支出趋势、异常和优化机会

SKILL.md

Finance Manager

A comprehensive toolkit for personal finance management that processes transaction data, performs sophisticated financial analysis, generates actionable insights, and creates beautiful visual reports.

Core Capabilities

  1. Transaction Data Processing: Extract financial data from PDFs, CSVs, or JSON files
  2. Financial Analysis: Calculate key metrics, identify spending patterns, and track savings
  3. Visualization: Generate interactive HTML reports with charts and graphs
  4. Budget Recommendations: Provide personalized, actionable advice based on spending patterns
  5. Trend Analysis: Identify spending patterns, anomalies, and opportunities for optimization

Workflow

1. Data Extraction and Preparation

For PDF files:

python scripts/extract_pdf_data.py <input.pdf> <output.csv>

For CSV/JSON files:

  • Ensure data has columns: Date, Description, Income (category), Type, Amount
  • Date format: YYYY-MM-DD or parseable date string
  • Amount: Positive for income, negative for expenses

2. Financial Analysis

Run comprehensive analysis on transaction data:

python scripts/analyze_finances.py <transactions.csv> > analysis_output.json

Output includes:

  • Summary statistics (total income, expenses, net savings, savings rate)
  • Spending trends (daily averages, top expenses, category percentages)
  • Budget recommendations (personalized based on spending patterns)
  • Visualization data (prepared for charting)

3. Report Generation

Create interactive HTML report with visualizations:

python scripts/generate_report.py <analysis_output.json> <report.html>

Report features:

  • Summary dashboard with key metrics
  • Interactive pie chart showing spending by category
  • Bar chart comparing income vs expenses over time
  • Color-coded indicators (green for positive, red for negative)
  • Personalized recommendations section
  • Responsive design for all devices

4. Complete Workflow Example

# Extract data from PDF
python scripts/extract_pdf_data.py finance_data.pdf transactions.csv

# Analyze the data
python scripts/analyze_finances.py transactions.csv > analysis.json

# Generate visual report
python scripts/generate_report.py analysis.json financial_report.html

Key Metrics and Benchmarks

Savings Rate

Savings Rate = (Total Income - Total Expenses) / Total Income × 100

Benchmarks:

  • Below 10%: Needs improvement
  • 10-20%: Good
  • 20-30%: Excellent
  • Above 30%: Outstanding

Category Guidelines (% of income)

  • Housing: 25-30%
  • Transportation: 10-15%
  • Food: 10-15%
  • Utilities: 5-10%
  • Savings: Minimum 20%

For detailed frameworks and methodologies, see references/financial_frameworks.md.

Analysis Features

Summary Statistics

  • Total income and expenses for the period
  • Net savings (can be positive or negative)
  • Savings rate percentage
  • Transaction count
  • Date range covered

Spending Trends

  • Daily average spending
  • Top 5 largest expenses with details
  • Category percentage breakdown
  • Spending patterns over time

Budget Recommendations

The system generates personalized recommendations based on:

  • Savings rate thresholds
  • Category spending percentages
  • Income diversification
  • Budget guideline comparisons

Example recommendations:

  • "⚠️ Your savings rate is below 10%. Consider reducing discretionary spending."
  • "🍽️ Food spending is 18% of expenses. Consider meal planning to reduce costs."
  • "✅ Excellent savings rate! You're on track for strong financial health."

Visualization Components

Category Spending Chart (Doughnut)

Shows proportional breakdown of expenses by category with color coding.

Income vs Expenses Chart (Bar)

Displays monthly comparison of income and expenses to identify cash flow trends.

Interactive Features

  • Hover tooltips showing exact values
  • Responsive design adapting to screen size
  • Color-coded positive (green) and negative (red) indicators

Tips for Best Results

Data Quality

  • Ensure all transactions are properly categorized
  • Use consistent category names
  • Include complete date information
  • Verify amounts are correctly signed (+ for income, - for expenses)

Analysis Frequency

  • Run monthly analysis for trend tracking
  • Generate reports at month-end for review
  • Compare month-over-month to identify changes

Action on Recommendations

  • Prioritize recommendations by potential impact
  • Set specific, measurable goals based on insights
  • Track progress by re-running analysis regularly

Dependencies

All scripts require Python 3.7+ with standard libraries. Additional requirements:

For PDF extraction:

pip install pdfplumber --break-system-packages

For data analysis:

pip install pandas --break-system-packages

All visualization dependencies are loaded from CDN in the HTML output (Chart.js).

File Organization

finance-manager/
├── scripts/
│   ├── extract_pdf_data.py     # PDF → CSV conversion
│   ├── analyze_finances.py     # Financial analysis engine
│   └── generate_report.py      # HTML report generator
└── references/
    └── financial_frameworks.md # Detailed analysis methodologies

Customization

Adding Custom Categories

Edit the category definitions in analyze_finances.py to match your tracking system.

Adjusting Thresholds

Modify recommendation thresholds in the generate_budget_recommendations() function to match personal goals.

Styling Reports

Customize the HTML_TEMPLATE in generate_report.py to adjust colors, fonts, or layout.

Common Use Cases

Monthly Review: "Analyze my October spending and create a report"

Budget Optimization: "Where am I spending too much money?"

Trend Analysis: "How does my spending this month compare to last month?"

Goal Setting: "What's my savings rate and how can I improve it?"

Category Insights: "Break down my food spending by transaction"

PDF Processing: "Extract all transactions from my bank statement PDF"

Best Practices

  1. Consistent Categorization: Use the same category names across all transactions
  2. Regular Analysis: Run monthly to spot trends early
  3. Act on Insights: Use recommendations to make specific spending changes
  4. Track Progress: Compare reports month-over-month
  5. Verify Data: Always check extracted PDF data for accuracy before analysis

Reference Materials

For comprehensive financial frameworks, budgeting guidelines, and analysis methodologies, read:

view references/financial_frameworks.md

This includes:

  • The 50/30/20 budget rule
  • Category spending benchmarks
  • Financial health indicators
  • Analysis workflow details
  • Visualization best practices
  • Recommendation logic

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.7%
按下载量换算2,726

OpenCode

24.8%
按下载量换算2,631

Codex

16.12%
按下载量换算1,710

Cursor

13.21%
按下载量换算1,401

Gemini CLI

7.34%
按下载量换算779

Antigravity

3.44%
按下载量换算365

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills