TopRank Skills

Home / Claw Skills / Finance / Crypto / copilot-money
Official OpenClaw rules 36%

copilot-money

Query and analyze personal finance data from the Copilot Money Mac app. Use when the user asks about their spending, transactions, account balances, budgets, or financial trends from Copilot Money.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 copilot-money 技能。 若已安装,则直接安装 copilot-money 技能。

Overview

Skill Key
chardigio/copilot-money-mac
Author
chardigio
Source Repo
openclaw/skills
Version
-
Source Path
skills/chardigio/copilot-money-mac
Latest Commit SHA
c837dc77e828dfc281ec684b005ca4631136626f

Extracted Content

SKILL.md excerpt

# Copilot Money

Query local data from the Copilot Money Mac app to analyze transactions, spending patterns, account balances, investments, and budgets. Data is stored in both SQLite (transactions, balances) and Firestore LevelDB cache (recurring names, budgets, investments).

## Database Location

```
~/Library/Group Containers/group.com.copilot.production/database/CopilotDB.sqlite
```

## Schema

### Transactions Table

Primary table for all financial transactions.

| Column | Type | Description |
|--------|------|-------------|
| id | TEXT | Primary key |
| date | DATE | Transaction date |
| name | TEXT | Merchant/transaction name |
| original_name | TEXT | Raw name from bank |
| amount | DOUBLE | Transaction amount (positive = expense) |
| iso_currency_code | TEXT | Currency (e.g., "USD") |
| account_id | TEXT | Linked account reference |
| category_id | TEXT | Category reference |
| pending | BOOLEAN | Whether transaction is pending |
| recurring | BOOLEAN | Whether transaction is recurring |
| recurring_id | TEXT | Links to recurring definition (see Firestore) |
| user_note | TEXT | User-added notes |
| user_deleted | BOOLEAN | Soft-deleted by user |

### accountDailyBalance Table

Daily balance snapshots per account.

| Column | Type | Description |
|--------|------|-------------|
| date | TEXT | Snapshot date |
| account_id | TEXT | Account reference |
| current_balance | DOUBLE | Balance on that date |
| available_balance | DOUBLE | Available balance |

## Firestore Cache (LevelDB)

Additional data is stored in **Firestore's local LevelDB cache**, not in the SQLite database.

**Location:**
```
~/Library/Containers/com.copilot.production/Data/Library/Application Support/firestore/__FIRAPP_DEFAULT/copilot-production-22904/main/*.ldb
```

### Collections

| Collection | Description |
|------------|-------------|
| `items` | Linked bank accounts/institutions |
| `investment_prices` | Historical security prices |
| `investment_performance` | TWR (time-weighted r...

README excerpt

# Copilot Money Skill

A Claude Code skill for querying personal finance data from the [Copilot Money](https://copilot.money) Mac app.

## What It Does

This skill enables Claude to access and analyze your financial data stored locally by Copilot Money, including:

- Transaction history and spending patterns
- Account balances over time
- Category-based expense analysis
- Recurring transaction definitions (rent, subscriptions, etc.)
- Budget amounts and investment data

## Requirements

- macOS with Copilot Money app installed
- Copilot Money must have synced data locally (the app stores data in SQLite and Firestore LevelDB cache)

## Example Uses

- "How much did I spend on restaurants last month?"
- "Show me my largest transactions this year"
- "What's my monthly spending trend?"
- "Find all Amazon purchases"

## Data Locations

**SQLite Database** (transactions, balances):
```
~/Library/Group Containers/group.com.copilot.production/database/CopilotDB.sqlite
```

**Firestore LevelDB Cache** (recurring names, budgets, investments):
```
~/Library/Containers/com.copilot.production/Data/Library/Application Support/firestore/__FIRAPP_DEFAULT/copilot-production-22904/main/*.ldb
```

## Privacy Note

All data stays local - this skill queries the local databases directly on your Mac. No data is sent to external services.

Related Claw Skills