AgentSkillsCN

treeline

通过 Treeline Money 与您的财务轻松对话,查询余额、支出、预算与交易记录。

SKILL.md
--- frontmatter
name: treeline
description: Chat with your finances from Treeline Money. Query balances, spending, budgets, and transactions.
version: 0.0.6
user-invocable: true
homepage: https://treeline.money
metadata: {"clawdbot":{"emoji":"🌲"}}

Treeline Money

Chat with your finances. Ask questions like "What's my net worth?", "How much did I spend on groceries?", or "Am I over budget?" and get instant answers from your own financial data.


Quick Start

bash
# 1. Install the CLI
curl -fsSL https://treeline.money/install.sh | sh
source ~/.zshrc  # or restart terminal

# 2. Enable demo mode (sample data)
tl demo on

# 3. Try it out
tl status

First Time Setup

For agents: If tl commands fail with "command not found", guide the user through installation. Start with demo mode so they can try queries immediately.

Installing the CLI

Mac/Linux:

bash
curl -fsSL https://treeline.money/install.sh | sh

Windows (PowerShell):

powershell
irm https://treeline.money/install.ps1 | iex

Verify with tl --version.

Optional: Download the desktop app for CSV import and visual exploration.

Demo Mode

Demo mode loads sample data so users can try queries without connecting a bank:

bash
tl demo on

To switch to real data later:

bash
tl demo off

Demo data is separate from real data.

CLI Behavior Notes

  • tl demo on prints a success message — if it seems to hang, wait a few seconds (first run initializes the database)
  • Use tl demo status to verify demo mode is enabled
  • Some commands may take a few seconds on first run due to database initialization
  • If you see errors about missing tables, try tl demo on again

Connecting Real Data

SimpleFIN ($1.50/month, US & Canada)

  1. Sign up at beta-bridge.simplefin.org
  2. Connect bank accounts and create a setup token
  3. Run tl setup simplefin <setup-token>
  4. Run tl sync

Lunch Flow (~$3/month, global: US, Canada, Brazil, EU, UK, Asia)

  1. Sign up at lunchflow.app
  2. Connect bank accounts and create an API destination
  3. Run tl setup lunchflow <api-key>
  4. Run tl sync

CSV Import (free, requires desktop app)

  1. Export transactions as CSV from bank website
  2. In Treeline app: drag file onto window or click Import
  3. Map columns and import

What is Treeline?

Treeline Money is a local-first personal finance app. All your data stays on your device in a local DuckDB database. No cloud accounts, no subscriptions required (sync services are optional), full SQL access to your financial data.


Limitations

Encrypted databases not supported. If the user has enabled database encryption in Treeline, CLI commands will fail. They'll need to either:

  • Disable encryption if they want OpenClaw access
  • Use the Treeline app directly for encrypted databases

If you see "database is encrypted" errors, explain this limitation.


Response Formatting

Format all responses for mobile/chat:

  • Use bullet points, not markdown tables
  • Round numbers for readability ($1,234 not $1,234.56)
  • Lead with the answer, details second
  • Keep responses concise — chat isn't a spreadsheet
  • Use line breaks to separate sections

Example good response:

code
Your net worth is $125k

Assets: $180k
- Retirement: $85k
- Savings: $25k
- Checking: $10k
- Home equity: $60k

Liabilities: $55k
- Mortgage: $52k
- Credit cards: $3k

Example bad response:

code
| Account | Type | Balance |
|---------|------|---------|
| My 401k Account | asset | 85234.56 |
...

CLI Commands

The tl CLI can do more than just queries:

bash
tl status              # Quick account summary with balances
tl status --json       # Same, but JSON output

tl query "SQL" --json  # Run any SQL query

tl sync                # Sync accounts/transactions from bank integrations
tl sync --dry-run      # Preview what would sync

tl backup create       # Create a backup
tl backup list         # List available backups
tl backup restore NAME # Restore a backup

tl doctor              # Check database health
tl compact             # Compact database (reclaim space, optimize)

tl tag "groceries" --ids ID1,ID2  # Apply tags to transactions

tl demo on|off         # Toggle demo mode (sample data)

Use tl status for quick balance checks — it's faster than a SQL query.

Use tl compact if the user mentions slow queries — it optimizes the database.


User Context

Before answering finance questions, check for CONTEXT.md in this skill directory.

If it exists, read it first — it contains user-specific knowledge:

  • Account meanings (which accounts are retirement vs brokerage, etc.)
  • Tag conventions and cash flow rules
  • Plugin configurations
  • Personal preferences

Learning new context: When you discover something about the user's setup:

  1. For small observations, note them in CONTEXT.md silently
  2. For significant assumptions or corrections, ask: "Want me to save that to your Treeline context?"

See the User Context Pattern section at the end for the template.


Quick Reference

Net Worth

bash
tl query "
WITH latest AS (
  SELECT DISTINCT ON (account_id) account_id, balance
  FROM sys_balance_snapshots
  ORDER BY account_id, snapshot_time DESC
)
SELECT
  SUM(CASE WHEN a.classification = 'asset' THEN s.balance ELSE 0 END) as assets,
  SUM(CASE WHEN a.classification = 'liability' THEN ABS(s.balance) ELSE 0 END) as liabilities,
  SUM(CASE WHEN a.classification = 'asset' THEN s.balance ELSE -ABS(s.balance) END) as net_worth
FROM accounts a
JOIN latest s ON a.account_id = s.account_id
" --json

Account Balances

bash
tl query "
WITH latest AS (
  SELECT DISTINCT ON (account_id) account_id, balance
  FROM sys_balance_snapshots
  ORDER BY account_id, snapshot_time DESC
)
SELECT a.name, a.classification, a.institution_name, s.balance
FROM accounts a
JOIN latest s ON a.account_id = s.account_id
ORDER BY s.balance DESC
" --json

True Spending (Excluding Internal Moves)

Check CONTEXT.md for internal_transfer_tags. Default pattern:

bash
tl query "
SELECT SUM(ABS(amount)) as total_spent
FROM transactions
WHERE amount < 0
  AND transaction_date >= date_trunc('month', current_date)
  AND NOT (tags && ARRAY['transfer', 'savings', 'investment'])
" --json

Spending by Tag

bash
tl query "
SELECT tags, SUM(ABS(amount)) as spent
FROM transactions
WHERE amount < 0
  AND transaction_date >= '2026-01-01' AND transaction_date < '2026-02-01'
  AND tags IS NOT NULL AND tags != '[]'
GROUP BY tags
ORDER BY spent DESC
" --json

Recent Transactions

bash
tl query "
SELECT t.description, t.amount, t.transaction_date, a.name as account
FROM transactions t
JOIN accounts a ON t.account_id = a.account_id
ORDER BY t.transaction_date DESC
LIMIT 10
" --json

Database Schema

Core Tables

accounts

ColumnDescription
account_idUUID primary key
nameAccount display name
classificationasset or liability
account_typecredit, investment, Loan, other, or null
institution_nameBank/institution name
currencyCurrency code (e.g., USD)
is_manualBoolean — manually added vs synced

sys_balance_snapshots — Source of truth for balances

ColumnDescription
snapshot_idUUID primary key
account_idFK to accounts
balanceBalance at snapshot time
snapshot_timeWhen recorded
sourcesync, manual, etc.

transactions

ColumnDescription
transaction_idUUID primary key
account_idFK to accounts
amountSigned (negative = expense)
descriptionTransaction description
transaction_dateWhen it occurred
posted_dateWhen it cleared
tagsArray of tags

Tags vs Categories

Tags are the primary concept in Treeline — transactions can have multiple tags.

Categories come from the budget plugin (plugin_budget), which maps tags to budget categories. Not all users have this plugin.


Plugin System

Plugins have their own DuckDB schemas: plugin_<name>.*

Discovering Installed Plugins

bash
tl query "
SELECT schema_name
FROM information_schema.schemata
WHERE schema_name LIKE 'plugin_%'
" --json

Common Plugin Schemas

plugin_budget.categories — Budget categories

ColumnDescription
category_idUUID primary key
monthYYYY-MM format
typeincome or expense
nameCategory name
expectedBudgeted amount
tagsArray of tags to match

plugin_goals.goals — Savings goals

ColumnDescription
idUUID primary key
nameGoal name
target_amountTarget amount
target_dateTarget date
completedBoolean
activeBoolean

plugin_subscriptions — Detected recurring charges

plugin_cashflow — Cash flow projections

plugin_emergency_fund — Emergency fund tracking

Check CONTEXT.md for which plugins the user has and cares about.


Common Patterns

Getting Current Balances

Always use latest snapshot:

sql
WITH latest AS (
  SELECT DISTINCT ON (account_id) account_id, balance
  FROM sys_balance_snapshots
  ORDER BY account_id, snapshot_time DESC
)
SELECT a.name, s.balance
FROM accounts a
JOIN latest s ON a.account_id = s.account_id

Working with Tags

Tags are arrays:

sql
-- Contains a specific tag
WHERE tags @> ARRAY['groceries']

-- Contains any of these tags
WHERE tags && ARRAY['food', 'dining']

-- Note: UNNEST doesn't work in all contexts in DuckDB
-- Instead, GROUP BY tags directly

Date Filters

sql
-- This month
WHERE transaction_date >= date_trunc('month', current_date)

-- Specific month
WHERE transaction_date >= '2026-01-01'
  AND transaction_date < '2026-02-01'

Budget vs Actual

sql
SELECT
  c.name,
  c.expected,
  COALESCE(SUM(ABS(t.amount)), 0) as actual,
  c.expected - COALESCE(SUM(ABS(t.amount)), 0) as remaining
FROM plugin_budget.categories c
LEFT JOIN transactions t ON t.tags && c.tags
  AND t.amount < 0
  AND t.transaction_date >= (c.month || '-01')::DATE
  AND t.transaction_date < (c.month || '-01')::DATE + INTERVAL '1 month'
WHERE c.month = strftime(current_date, '%Y-%m')
  AND c.type = 'expense'
GROUP BY c.category_id, c.name, c.expected

Question Mapping

User asksApproach
"Net worth?"Net worth query
"Balances?"Account balances query
"How much in [X]?"Filter by name ILIKE '%X%'
"How much did I spend?"True spending query (exclude internal moves)
"Spending on [tag]?"Filter by tag
"Am I over budget?"Budget vs actual (requires budget plugin)
"Recent transactions"Order by date DESC, limit
"Savings?"Filter accounts by name/type
"Retirement?"Filter by 401k, IRA, retirement keywords

Tips

  1. Always use --json for parseable output
  2. Amounts are signed — negative = expense
  3. Use classification for asset/liability
  4. Balances live in snapshots, not the accounts table
  5. Check CONTEXT.md for user-specific account meanings and tag conventions

User Context Pattern

When this skill is installed, create CONTEXT.md alongside it to store user-specific knowledge. This keeps the skill generic/shareable while personalizing behavior.

Template for CONTEXT.md:

markdown
# Treeline User Context
*Auto-updated by your assistant as it learns your setup*

## Account Notes
<!-- What specific accounts mean, e.g.: -->
<!-- - "Company 401k" = retirement account -->
<!-- - "Home Equity" = home value estimate (manual) -->

## Tag Conventions
<!-- How the user uses tags -->

## Cash Flow Rules
<!-- Tags to exclude from "true spending" calculations -->
internal_transfer_tags: [transfer, savings, investment]

## Income Sources
<!-- Known income sources for better reporting -->

## Active Plugins
<!-- Which plugins are installed and relevant -->

## Preferences
<!-- Reporting style, rounding, spouse-friendly mode, etc. -->

## Learned Facts
<!-- Anything else discovered about the user's financial setup -->

Maintenance:

  • Update silently for small observations
  • Ask before recording significant assumptions
  • Periodically validate against live data (accounts may close, tags may change)

Privacy Note

All data is local (~/.treeline/treeline.duckdb). Never share transaction descriptions or account details outside the conversation unless explicitly asked.