ワンクリックで
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)