
by Wells Fargo
No reviews yetGenerate categorized income statements from Wells Fargo transaction data stored in SerenDB by the bank-statement-processing skill.
Skill instructions are preloaded in context when this skill is active. Do not perform filesystem searches or tool-driven exploration to rediscover them; use the guidance below directly.
bank-statement-processing skill must have completed at least one successful run with SerenDB sync enabled.wf_transactions and wf_txn_categories tables.wf_transactions, wf_txn_categories, wf_monthly_summary).wf_income_* tables (never modifies upstream data).resolve_serendb connects to SerenDB using the same resolution chain as bank-statement-processing.query_transactions fetches categorized transactions for the requested date range.classify_line_items maps transaction categories to income statement line items using config/line_item_map.json.build_statement aggregates line items into Income, Expenses, and Net Income sections.render_report produces Markdown and JSON output files.persist_statement upserts the income statement snapshot into SerenDB.cd wellsfargo/income-statement
python3 -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/run.py --config config.json --months 12 --out artifacts/income-statement
python3 scripts/run.py --config config.json --start 2025-01-01 --end 2025-12-31 --out artifacts/income-statement
# Last 12 months (default)
python3 scripts/run.py --config config.json --months 12 --out artifacts/income-statement
# Specific date range
python3 scripts/run.py --config config.json --start 2025-06-01 --end 2025-12-31 --out artifacts/income-statement
# Single month
python3 scripts/run.py --config config.json --start 2025-11-01 --end 2025-11-30 --out artifacts/income-statement
# Skip SerenDB persistence (local reports only)
python3 scripts/run.py --config config.json --months 12 --skip-persist --out artifacts/income-statement
artifacts/income-statement/reports/<run_id>.mdartifacts/income-statement/reports/<run_id>.jsonartifacts/income-statement/exports/<run_id>.line_items.jsonlwf_income_runs - income statement generation runswf_income_line_items - individual line items per runwf_income_snapshots - summary totals per runv_wf_income_latest - most recent income statement snapshotv_wf_income_by_month - monthly income/expense breakdownFree
npx skills add serenorg/seren-skillsSelect “Wells Fargo Income Statement” when prompted
openclaw install wellsfargo-income-statementSee install page for setup instructions
Wells Fargo
Added March 3, 2026