
by Wells Fargo
No reviews yetDetect and track recurring subscriptions, bills, and regular payments from Wells Fargo transaction data stored in SerenDB.
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_recurring_* 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 analysis window.detect_recurring groups transactions by normalized payee and amount to find repeating patterns.score_patterns assigns confidence scores based on frequency regularity and amount consistency.render_report produces Markdown and JSON output files.persist_patterns upserts detected recurring patterns into SerenDB.cd wellsfargo/recurring-transactions
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/recurring-transactions
# Last 12 months (default)
python3 scripts/run.py --config config.json --months 12 --out artifacts/recurring-transactions
# Specific date range
python3 scripts/run.py --config config.json --start 2025-01-01 --end 2025-12-31 --out artifacts/recurring-transactions
# Higher confidence threshold
python3 scripts/run.py --config config.json --months 12 --min-confidence 0.8 --out artifacts/recurring-transactions
# Skip SerenDB persistence (local reports only)
python3 scripts/run.py --config config.json --months 12 --skip-persist --out artifacts/recurring-transactions
artifacts/recurring-transactions/reports/<run_id>.mdartifacts/recurring-transactions/reports/<run_id>.jsonartifacts/recurring-transactions/exports/<run_id>.patterns.jsonlwf_recurring_runs - recurring detection runswf_recurring_patterns - detected recurring transaction patternswf_recurring_snapshots - summary snapshot per runv_wf_recurring_latest - most recent recurring pattern snapshotv_wf_recurring_active - currently active recurring transactionsFree
npx skills add serenorg/seren-skillsSelect “Wells Fargo Recurring Transactions” when prompted
openclaw install wellsfargo-recurring-transactionsSee install page for setup instructions
Wells Fargo
Added March 3, 2026