بنقرة واحدة
payment-reminders
Track credit card payment due dates and alert before they're due
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Track credit card payment due dates and alert before they're due
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Daily financial summary — net worth, recent activity, payment due dates, alerts
Manage recurring scheduled tasks — add, list, pause, resume, remove
Build a custom dashboard view from a natural language request — query, API, React component, build, deploy
On-demand financial briefing — spending, balances, portfolio, transactions, reports, CSV export
Override transaction categories via natural language — update rules, reclassify
Guided first-bank setup — credentials, exploration, sync, extraction, import
| name | payment-reminders |
| description | Track credit card payment due dates and alert before they're due |
| trigger | manual |
Check for upcoming credit card payments and alert the user.
Check that data/foliome.db exists. If not, respond: "No financial data found. Run /sync first to populate your accounts."
After querying balances, check staleness:
Payment due dates come from two places:
Balance sync data — some banks include due dates in the dashboard text that the LLM extracts. Check the raw JSON in data/sync-output/*.json for fields mentioning "payment due", "due date", "minimum payment".
Known payment schedules — track in config/payment-schedule.json:
{
"bankname-credit-1234": { "due_day": 5, "account_name": "Credit Card A" },
"bankname-credit-5678": { "due_day": 20, "account_name": "Credit Card B" },
"bankname-credit-9012": { "due_day": 31, "account_name": "Credit Card C" }
}
For each credit card account:
balances table)SELECT b.account_id, b.account_name, b.balance
FROM balances b
INNER JOIN (SELECT account_id, MAX(synced_at) as ms FROM balances GROUP BY account_id) m
ON b.account_id = m.account_id AND b.synced_at = m.ms
WHERE b.account_type = 'credit'
AND b.balance < 0
PAYMENT REMINDERS
⚠ Credit Card A — $850.00 due March 20 (TODAY)
⚠ Credit Card B — $215.00 due March 20 (TODAY)
📅 Credit Card C — $1,200.00 due April 5 (16 days)
📅 Credit Card D — $475.50 due March 31 (11 days)