ワンクリックで
expense-tracker
User wants to track, categorize, or analyze their expenses and spending
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
User wants to track, categorize, or analyze their expenses and spending
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Read iPhone data (contacts, calendar, reminders, location, photos, files, clipboard) and execute device commands (CRUD operations + open apps via URL schemes). Use when user asks about their phone data, wants to schedule events, set reminders, manage contacts, copy to clipboard, or open an app on their phone. NEVER suggest .ics files, email workarounds, or manual steps — always use device.sh.
Persistent memory system. Automatically remember facts, decisions, and user preferences across conversations. Query past information.
Manages nightly learning sessions. Stores learning plan, journal, and progress in persistent storage. Used automatically during the 1am-6am learning window.
User asks to draft, create, or write a contract, agreement, NDA, or legal document
User shares a contract or agreement and wants it reviewed, analyzed, or explained
User needs to create, send, or track invoices for freelance work or business services
| name | expense_tracker |
| description | User wants to track, categorize, or analyze their expenses and spending |
Expenses are stored as structured data in your cloud storage. Each expense has:
When the user mentions a purchase or expense, save it:
echo '{"date":"2026-02-12","amount":49.99,"category":"software","description":"GitHub Copilot subscription","tags":["business","tax-deductible"]}' | bash /root/workspace/skills/s8t/files.sh write data/expenses/2026-02.jsonl
bash /root/workspace/skills/s8t/files.sh read data/expenses/2026-02.jsonl
Standard expense categories:
When asked for a summary, produce:
| Category | Amount | % of Total |
|---|---|---|
| Software | $XXX | XX% |
| Food | $XXX | XX% |
| Total | $X,XXX | 100% |
Show top spending categories with trends vs previous month.
data/expenses/YYYY-MM.jsonl{"date":"YYYY-MM-DD","amount":XX.XX,"category":"cat","description":"desc","tags":["tag1"]}