ailabs-393/finance-manager
Comprehensive personal finance management system for analyzing transaction data, generating insights, creating visualizations, and providing actionable financial recommendations. Use when users need to analyze spending patterns, track budgets, visualize financial data, extract transactions from PDFs, calculate savings rates, identify spending trends, generate financial reports, or receive personalized budget recommendations. Triggers include requests like "analyze my finances", "track my spending", "create a financial report", "extract transactions from PDF", "visualize my budget", "where is my money going", "financial insights", "spending breakdown", or any finance-related analysis tasks.
npx skills add https://github.com/ailabs-393/ai-labs-claude-skills --skill 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.
For PDF files:
python scripts/extract_pdf_data.py <input.pdf> <output.csv>
For CSV/JSON files:
Date, Description, Income (category), Type, AmountRun comprehensive analysis on transaction data:
python scripts/analyze_finances.py <transactions.csv> > analysis_output.json
Output includes:
Create interactive HTML report with visualizations:
python scripts/generate_report.py <analysis_output.json> <report.html>
Report features:
# 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
Savings Rate = (Total Income - Total Expenses) / Total Income × 100
Benchmarks:
For detailed frameworks and methodologies, see references/financial_frameworks.md.
The system generates personalized recommendations based on:
Example recommendations:
Shows proportional breakdown of expenses by category with color coding.
Displays monthly comparison of income and expenses to identify cash flow trends.
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).
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
Edit the category definitions in analyze_finances.py to match your tracking system.
Modify recommendation thresholds in the generate_budget_recommendations() function to match personal goals.
Customize the HTML_TEMPLATE in generate_report.py to adjust colors, fonts, or layout.
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"
For comprehensive financial frameworks, budgeting guidelines, and analysis methodologies, read:
view references/financial_frameworks.md
This includes:
Take ailabs-393/finance-manager from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip.
Without those the skill loads but fails at the first command.