⚡ Track personal finances in Google Sheets with AI agent via Slack

656 views · ⚡ Personal Productivity

Description

Workflow Overview

Who’s it for

This workflow is perfect for individuals who want to maintain detailed financial records without the overhead of complex budgeting apps. If you prefer natural language over data entry forms and want an AI assistant to handle the bookkeeping, this template is for you. It’s especially useful for:

What it does

This AI-powered finance tracker transforms your Slack workspace into a personal finance command center. Simply mention your bot with transactions in plain English (e.g., “₹500 cash food, borrowed ₹1000 from John”), and the AI agent will:

  1. Parse transactions using natural language understanding via Google Gemini
  2. Calculate balance changes for cash and online accounts
  3. Show a preview of changes before saving anything
  4. Update Google Sheets only after you approve
  5. Track debts (who owes you, who you owe, repayments)
  6. Send daily reminders at 11 PM with current balances and active debts

The workflow maintains conversational context using PostgreSQL memory, so you can say things like “yesterday’s transactions” or “that payment to Sarah” and it understands the context.

How it works

Scheduled Daily Check-in (11 PM)

AI Agent Transaction Processing

When you mention the bot in Slack:

Phase 1: Parse & Analyze

Phase 2: Calculate & Preview

Phase 3: Update Database (only after approval)

Phase 4: Confirmation

Requirements

Essential Services:

Recommended:

How to set up

1. Google Sheets Setup

Create a new Google Sheet with three tabs named exactly:

Balances Tab:

DateCash_BalanceOnline_BalanceTotal_Balance

Transactions Tab:

Transaction_IDDateTimeAmountPayment_TypeCategoryTransaction_TypePerson_NameDescriptionAdded_At

Debts Tab:

Person_NameAmountTypeDate_createdStatusNotes

Add header rows and one initial balance row in the Balances tab with today’s date and starting amounts.

2. Slack App Setup

  1. Go to api.slack.com/apps and create a new app
  2. Under OAuth & Permissions, add these Bot Token Scopes:
    • app_mentions:read
    • chat:write
    • channels:read
  3. Install the app to your workspace
  4. Copy the Bot User OAuth Token
  5. Create a dedicated channel (e.g., #personal-finance-tracker)
  6. Invite your bot to the channel

3. Google Gemini API

  1. Visit ai.google.dev
  2. Create an API key
  3. Save it for n8n credentials setup

4. PostgreSQL Database

Set up a PostgreSQL database (you can use Supabase free tier):

  1. Create a new project
  2. Note down connection details (host, port, database name, user, password)
  3. The workflow will auto-create the required table

5. n8n Workflow Configuration

Import the workflow and configure:

A. Credentials

B. Update Node Parameters

  1. All Google Sheets nodes: Select your finance spreadsheet
  2. Slack nodes: Select your finance channel
  3. Schedule Trigger: Adjust time if you prefer a different check-in hour (default: 11 PM)
  4. Postgres Chat Memory:
    • Change sessionKey to something unique (e.g., finance_tracker_your_name)
    • Keep tableName as n8n_chat_history_finance or rename consistently

C. Slack Trigger Setup

  1. Activate the “Bot Mention trigger” node
  2. Copy the webhook URL from n8n
  3. In Slack App settings, go to Event Subscriptions
  4. Enable events and paste the webhook URL
  5. Subscribe to bot event: app_mention
  6. Save changes

6. Test the Workflow

  1. Activate both workflow branches (scheduled and agent)
  2. In your Slack channel, mention the bot: @YourBot ₹100 cash snacks
  3. Bot should respond with a preview
  4. Reply “yes” to approve
  5. Verify Google Sheets are updated

How to customize

Change Transaction Categories

Edit the AI Agent’s system message to add/remove categories. Current categories:

Modify Daily Check-in Time

Change the Schedule Trigger’s triggerAtHour value (0-23 in 24-hour format).

Add Currency Support

Replace with your currency symbol in:

Switch AI Models

The workflow uses Google Gemini, but notes recommend Claude. To switch:

  1. Replace “Google Gemini Chat Model” node
  2. Add Claude credentials
  3. Connect to AI Agent node

Customize Debt Types

Modify AI Agent’s system prompt to change debt handling logic:

Add More Payment Methods

Current: cash, online To add more (e.g., credit card):

Change Approval Keywords

Edit AI Agent’s Phase 2 approval logic to recognize different approval phrases.

Add Spending Analytics

Extend the daily check-in to calculate:

Important Notes

⚠️ Never trigger with normal messages - Only use app mentions (@botname) to avoid infinite loops where the bot replies to its own messages.

💡 Context Awareness - The bot remembers conversation history, so you can reference “yesterday”, “last week”, or previous transactions naturally.

🔒 Data Privacy - All your financial data stays in your Google Sheets and PostgreSQL database. The AI only processes transaction text temporarily.

📊 Backup Regularly - Export your Google Sheets periodically as backup.


Pro Tips:

🔗 Nodes Used

Google Sheets, Slack, Schedule Trigger, AI Agent, Calculator, Google Gemini Chat Model

📥 Import

Download workflow.json and import into n8n: Workflow menu → Import from File

📖 Importing guide · 🔑 Credential setup