用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dapperdivers/roundtable-arsenal --skill tax-prep命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Synthesize domain knight summaries into a comprehensive Daily Briefing for Derek's Obsidian vault. Your output IS the briefing file — write the full document, not a summary of it.
Procedure for the morning-briefing verify_claims step: re-run the check behind every mechanically-verifiable claim in the domain summaries, build the authoritative knight-liveness map from vault file mtimes, update the open-items ledgers, and emit one JSON verification report that the synthesizer treats as the only source of numbers.
Protocol for the per-domain open-items ledger at /vault/Briefings/Ledger/<domain>.json. Replaces prose memory as the carry-forward mechanism for tracked items: Day-N counters are computed from first_seen, items are re-verified before being carried, and resolutions are recorded machine-readably so they can never be silently lost.
基于 SOC 职业分类
正在显示 SKILL.md
| name | tax-prep |
| description | CSV transaction parsing, categorization, and tax deduction identification for financial planning |
Parse bank and credit card CSV exports, categorize transactions, and flag tax-relevant items.
Most bank exports follow common formats. Detect columns automatically:
| Bank Style | Date Column | Description | Amount | Notes |
|---|---|---|---|---|
| Chase | "Transaction Date" | "Description" | "Amount" | Negative = charge |
| Amex | "Date" | "Description" | "Amount" | Positive = charge |
| Generic | First date-like col | Longest string col | Numeric col | Varies |
Assign each transaction to exactly one category:
Use substring matching on description (case-insensitive):
# Housing
mortgage, rent, hoa, property tax, homeowner
# Utilities
electric, power, gas company, water, internet, comcast, att, verizon, tmobile
# Transportation
shell, exxon, chevron, bp, uber, lyft, parking, toll
# Food
grocery, kroger, heb, walmart grocer, whole foods, restaurant, mcdonald, starbucks, doordash, grubhub
# Medical
pharmacy, cvs, walgreens, doctor, hospital, dental, optom, therapy, labcorp
# Business:Software
aws, azure, google cloud, digitalocean, github, cloudflare, namecheap
# Charitable
donation, charity, united way, red cross, church, tithe
Flag transactions with tax relevance:
| Flag | Criteria | Tax Form |
|---|---|---|
deductible | Charitable donations, state/local taxes | Schedule A |
business_expense | Any Business:* category | Schedule C |
hsa | HSA contributions or qualified medical | Form 8889 |
education | Tuition, student loan interest | Form 8863/1098-E |
home_office | Internet, utilities (pro-rated if WFH) | Form 8829 |
estimated_tax | IRS/state tax payments | Form 1040-ES |
python3 scripts/categorize.py transactions.csv --output categorized.json
python3 scripts/categorize.py transactions.csv --output categorized.json --year 2025
{
"summary": {
"total_income": 85000.00,
"total_expenses": 42000.00,
"by_category": {"Food": -5200.00, "Housing": -18000.00},
"tax_flags": {"deductible": -3200.00, "business_expense": -8500.00}
},
"transactions": [
{
"date": "2025-01-15",
"description": "STARBUCKS #1234",
"amount": -5.75,
"category": "Food",
"tax_flags"
uncategorized list — add keywords or manually assignbusiness_expense flags — ensure legitimacydeductible totals with tax softwarefinance/paperless-ops)--split flag to separate by cardholder if supported