---
id: daily-expense-tracker
name: "expense-tracker"
url: https://skills.yangsir.net/skill/daily-expense-tracker
author: claude-office-skills
domain: finance
tags: ["finance", "budgeting", "accounting", "productivity", "reporting"]
install_count: 400
rating: 4.20 (20 reviews)
github: https://github.com/claude-office-skills/skills
---

# expense-tracker

> 个人和企业财务管理工具。支持费用记录、分类预算、多币种转换和自动化报表。提供消费趋势分析、预算预警和报销单生成。集成银行 API 和发票识别，适用于日常记账、差旅费用管理和项目成本追踪。

**Stats**: 400 installs · 4.2/5 (20 reviews)

## Before / After 对比

### 费用报销全流程自动化

**Before**:

在未使用费用追踪器之前，员工需手动收集所有纸质或电子收据，并逐一核对信息。接着，他们必须手动将收据上的供应商、金额、日期、项目等关键数据录入到电子表格。费用类别（如差旅、餐饮、软件）也需手动选择，并对照公司政策手册检查是否超出限额（如差旅每日$500）。最后，将所有信息汇总并手动创建月度费用报告，整个过程耗时且易出错，常导致数据不一致和报销延迟。

**After**:

引入费用追踪器后，员工只需上传收据图片或PDF，系统便能自动进行OCR识别，提取供应商、总金额、交易日期、支付方式等关键数据。AI随后会自动将费用归类（如“Travel - Ground Transport”），并根据预设的政策（如“Travel”类别限额$500/天）进行合规性检查。如果符合政策，费用将自动进入审批流程并生成结构化的月度费用报告。这大大减少了手动数据输入和核对时间，提高了报销效率和准确性。

| Metric | Before | After | Change |
|---|---|---|---|
| 单笔费用处理时间 | 10分钟 | 1分钟 | -90% |
| 数据录入错误率 | 5% | 0.5% | -90% |
| 月度报告生成时间 | 4小时 | 0.5小时 | -87.5% |

### 智能费用审批提速

**Before**:

在没有智能审批流程时，员工提交的费用报告需要根据总金额大小，手动判断应提交给哪些层级的经理审批。例如，金额在$100-$500之间的费用可能只需直属经理签字，而$2000以上的费用则需直属经理、部门负责人和财务总监层层审批。这通常涉及打印报告、物理递送、等待签字或通过邮件反复沟通，导致审批周期长，且容易因人为疏忽而延误。

**After**:

通过费用追踪器的审批工作流，系统能够根据预设的审批矩阵自动判断费用金额对应的审批人。例如，金额在$100-$500的费用自动流转给直属经理，而$2000以上的费用则自动流转给直属经理、部门负责人和财务总监。金额低于$100的甚至可以自动批准。这消除了手动判断和传递的环节，显著缩短了审批周期，确保了审批流程的合规性，并减少了因人为错误导致的审批延迟。

| Metric | Before | After | Change |
|---|---|---|---|
| 平均审批周期 | 3天 | 0.5天 | -83.33% |
| 审批矩阵合规率 | 80% | 99% | +23.75% |

## Readme

# expense-tracker

# Expense Tracker

Comprehensive expense management skill for tracking, processing, and automating expense workflows.

## Core Workflows

### 1. Receipt Processing Pipeline

```
RECEIPT TO REIMBURSEMENT:
┌─────────────────┐
│  Receipt Image  │
│  (Photo/PDF)    │
└────────┬────────┘
         ▼
┌─────────────────┐
│  OCR Extract    │
│  - Vendor       │
│  - Amount       │
│  - Date         │
│  - Items        │
└────────┬────────┘
         ▼
┌─────────────────┐
│  Auto-Categorize│
│  - Travel       │
│  - Meals        │
│  - Software     │
└────────┬────────┘
         ▼
┌─────────────────┐
│  Policy Check   │
│  - Limits       │
│  - Approvals    │
└────────┬────────┘
         ▼
┌─────────────────┐
│  Submit Report  │
└─────────────────┘

```

### 2. Expense Categories

Category
Examples
Default Limit

Travel
Flights, hotels, transport
$500/day

Meals
Team dinners, client meals
$100/person

Software
SaaS subscriptions
$200/month

Equipment
Hardware, peripherals
$1000/item

Office
Supplies, printing
$50/month

Training
Courses, conferences
$2000/year

### 3. Approval Workflow

```
approval_matrix:
  - amount_range: [0, 100]
    required_approvers: []
    auto_approve: true
  
  - amount_range: [100, 500]
    required_approvers:
      - direct_manager
    
  - amount_range: [500, 2000]
    required_approvers:
      - direct_manager
      - department_head
    
  - amount_range: [2000, null]
    required_approvers:
      - direct_manager
      - department_head
      - finance_director

```

## Receipt OCR Template

### Extraction Fields

```
receipt_extraction:
  required:
    - vendor_name
    - total_amount
    - transaction_date
    - payment_method
  
  optional:
    - line_items
    - tax_amount
    - tip_amount
    - currency
    - receipt_number
  
  validation:
    date_format: "YYYY-MM-DD"
    amount_precision: 2
    currency_codes: ["USD", "EUR", "GBP", "CNY"]

```

### Sample Extracted Data

```
{
  "vendor": "Uber Technologies",
  "date": "2024-01-15",
  "total": 45.50,
  "currency": "USD",
  "category": "Travel - Ground Transport",
  "line_items": [
    {"description": "UberX ride", "amount": 38.00},
    {"description": "Tip", "amount": 7.50}
  ],
  "payment_method": "Corporate Card ****4242",
  "receipt_id": "RCP-2024-0115-001"
}

```

## Expense Report Template

### Monthly Report Structure

```
# Expense Report - {Month} {Year}

**Employee:** {name}
**Department:** {department}
**Submission Date:** {date}
**Report Period:** {start_date} to {end_date}

## Summary

| Category | Amount | Budget | Variance |
|----------|--------|--------|----------|
| Travel | $1,250 | $2,000 | -$750 |
| Meals | $380 | $400 | -$20 |
| Software | $150 | $200 | -$50 |
| Equipment | $0 | $500 | -$500 |
| **Total** | **$1,780** | **$3,100** | **-$1,320** |

## Itemized Expenses

### Travel
| Date | Description | Amount | Receipt |
|------|-------------|--------|---------|
| 01/05 | Flight to NYC | $450 | ✓ |
| 01/05 | Hotel (2 nights) | $600 | ✓ |
| 01/06 | Uber to client | $45 | ✓ |
| 01/07 | Train return | $155 | ✓ |

### Meals
| Date | Description | Attendees | Amount | Receipt |
|------|-------------|-----------|--------|---------|
| 01/06 | Client dinner | 4 | $280 | ✓ |
| 01/10 | Team lunch | 6 | $100 | ✓ |

## Approval Status
- [ ] Direct Manager: Pending
- [ ] Finance Review: Pending

```

## Policy Compliance

### Auto-Check Rules

```
compliance_rules:
  receipt_required:
    threshold: 25
    message: "Receipt required for expenses over $25"
  
  meal_per_person:
    limit: 75
    message: "Per-person meal limit exceeded"
  
  advance_booking:
    travel_days: 14
    savings_expected: 0.20
    message: "Book travel 14+ days ahead for savings"
  
  preferred_vendors:
    hotels: ["Marriott", "Hilton", "Hyatt"]
    airlines: ["United", "Delta", "American"]
    message: "Use preferred vendors when available"

```

### Violation Handling

```
violation_actions:
  soft_violation:
    - flag_for_review
    - notify_submitter
    - allow_justification
  
  hard_violation:
    - reject_expense
    - notify_manager
    - require_correction
  
  repeated_violations:
    - escalate_to_hr
    - training_required

```

## Integration Workflows

### Slack Expense Bot

```
slack_commands:
  /expense:
    - upload_receipt
    - check_balance
    - submit_report
    - view_status
  
  notifications:
    - expense_approved
    - expense_rejected
    - report_due_reminder
    - policy_update

```

### Credit Card Sync

```
card_integration:
  providers:
    - amex_corporate
    - chase_business
    - brex
    - ramp
  
  auto_import:
    frequency: daily
    categorize: true
    match_receipts: true
  
  reconciliation:
    flag_missing_receipts: true
    flag_personal_charges: true

```

## Analytics Dashboard

### Spending Trends

```
MONTHLY SPENDING BY CATEGORY:
Travel    ████████████░░░░ $12,500
Meals     ██████░░░░░░░░░░ $5,800
Software  ████░░░░░░░░░░░░ $3,200
Equipment ██░░░░░░░░░░░░░░ $1,500
Office    █░░░░░░░░░░░░░░░ $800

TOP VENDORS:
1. Delta Airlines    $4,200
2. Marriott Hotels   $3,800
3. AWS              $2,100
4. Uber             $1,500
5. Zoom             $600

```

### Budget vs Actual

```
DEPARTMENT BUDGET STATUS:
Engineering  ████████░░ 78% ($15,600/$20,000)
Sales        ██████████ 95% ($28,500/$30,000)
Marketing    ██████░░░░ 62% $9,300/$15,000)
Operations   ████░░░░░░ 45% ($4,500/$10,000)

```

## Reimbursement Processing

### Payment Schedule

```
reimbursement:
  processing_days: [1, 15]  # Bi-monthly
  payment_methods:
    - direct_deposit
    - payroll_addition
    - check
  
  timing:
    submission_deadline: 5  # Days before processing
    approval_deadline: 3
    payment_delay: 2  # Business days after processing

```

## Best Practices

- **Submit Promptly**: Submit expenses within 7 days of transaction

- **Attach Receipts**: Always include digital receipts

- **Categorize Correctly**: Use standard categories

- **Add Context**: Include business purpose for each expense

- **Review Before Submit**: Check for policy compliance

- **Track Mileage**: Log business miles in real-time

Weekly Installs–Repository[claude-office-s…s/skills](https://github.com/claude-office-skills/skills)GitHub Stars26First Seen–Security Audits[Gen Agent Trust HubPass](/claude-office-skills/skills/expense-tracker/security/agent-trust-hub)[SocketPass](/claude-office-skills/skills/expense-tracker/security/socket)[SnykWarn](/claude-office-skills/skills/expense-tracker/security/snyk)

---
*Source: https://skills.yangsir.net/skill/daily-expense-tracker*
*Markdown mirror: https://skills.yangsir.net/api/skill/daily-expense-tracker/markdown*