一键导入
cashflow
Manage personal finances (income, expense, analytics).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage personal finances (income, expense, analytics).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Manage user schedules (add, update, delete, search).
Manage user notes (create, read, update, delete, search).
Convert values between various units (excluding currency).
Scrape data from a specified URL using the scraping tool.
Performs a search or extracts content using the Tavily API.
Get current time information in a specific timezone using Python.
基于 SOC 职业分类
| name | Cashflow |
| description | Manage personal finances (income, expense, analytics). |
This skill allows you to manage cashflow transactions and view analytics.
Run the cashflow.py script using the bash tool.
Command:
.venv/bin/python scripts/cashflow.py '<json_arguments>'
Arguments: The script accepts a single JSON string argument.
Parameters (JSON structure):
action: (Required) add_transaction, get_transactions, update_transaction, delete_transaction, get_analytics, add_category, get_categories.user_id: (Required for transactions/analytics).transaction: (Required for add/update) Object with type (income/expense), amount, category ({name}), description, date.transaction_id: (Required for update/delete).date_range: (Required for get_transactions/analytics) Object with start and end.category: (Required for add_category) Object with name.Examples:
Add Transaction:
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/cashflow/scripts/cashflow.py '{"action": "add_transaction", "user_id": "u1", "transaction": {"type": "expense", "amount": 50000, "category": {"name": "food"}, "description": "Lunch", "date": "2023-10-27T12:00:00Z"}}'
Get Analytics:
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/cashflow/scripts/cashflow.py '{"action": "get_analytics", "user_id": "u1", "date_range": {"start": "2023-10-01", "end": "2023-10-31"}}'