ワンクリックで
reflect
Wiki maintenance — consolidate pages, update goals with real data, discover patterns, write monthly reflections
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Wiki maintenance — consolidate pages, update goals with real data, discover patterns, write monthly reflections
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 | reflect |
| description | Wiki maintenance — consolidate pages, update goals with real data, discover patterns, write monthly reflections |
| trigger | manual |
Periodic maintenance of the agent's financial memory wiki at data/wiki/. Consolidates messy active-mode captures, updates goals with real data, discovers patterns from foliome.db, and writes monthly reflections.
/morning-brief if wiki has pages and last reflect was >24h ago (check data/wiki/log.md for last date)Read data/wiki/index.md to find all pages. Then read each linked page to understand current state.
If the wiki is empty (no pages linked from index), tell the user: "The wiki is empty — nothing to reflect on yet. As we talk about your finances, I'll start capturing goals, preferences, and context here."
Use dashboard-queries.js to get current state:
const { getOverview, getTransactions, getSpending, getBudgets } = require('./scripts/dashboard-queries.js');
const overview = getOverview();
const spending = getSpending(undefined, { from: monthStart });
const budgets = getBudgets();
Key data points: latest balances per account, net worth + trend, spending by category this month, budget progress.
Scan all pages for overlapping or duplicate content created by active mode captures:
Delete the redundant page after merging its content.
For each active goal page:
overview.balancescurrent_balance / target_amountFor each active concern page:
status: resolved, note the resolution date and what changedFor each active preference page:
Look for notable data patterns that don't have wiki pages yet:
Create a new page in patterns/ for each discovery with data evidence.
Add links between related pages:
Check if reflections/YYYY-MM.md exists for the current month. If not, create one:
---
type: reflection
created: YYYY-MM-DD
updated: YYYY-MM-DD
status: active
tags: [monthly, YYYY-MM]
---
# Month Year Reflection
## Net Worth
Current: $X. Change: +/- $Y since last month.
## Top Spending Categories
1. Category — $X (vs $Y budget)
2. ...
## Goal Progress
- Goal name: X% → Y% this month
## Notable Patterns
- ...
## Resolved Concerns
- ...
index.md with all current pages, organized by section, with one-line summaries and statuslog.md with a dated entry listing all changes made during this reflect sessionTell the user what was done: