원클릭으로
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"]}