revenue-tracker
Installation
SKILL.md
Revenue Tracker
Track income, expenses, and profitability across all platforms.
Instructions
-
Record transactions in
~/.openclaw/revenue/transactions.jsonl:{"date": "2026-02-10", "type": "income", "platform": "coconala", "amount": 3000, "fee": 660, "net": 2340, "description": "GAS automation", "currency": "JPY"} {"date": "2026-02-10", "type": "expense", "category": "api", "amount": 750, "description": "Cloudflare Workers", "currency": "JPY"} -
Calculate net revenue:
# Daily income jq -s '[.[] | select(.date=="2026-02-10" and .type=="income")] | map(.net) | add' ~/.openclaw/revenue/transactions.jsonl