Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Shiyinq/myaaw --skill cashflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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"}}'