Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/halojerry/poundingcore --skill finance-accounting명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Ozon 上架工具。当用户发送 1688 链接时直接上架,发送 Ozon 链接时直接跟卖。 当用户说"帮我找蓝海产品""帮我选品"且没有给链接时,去 Ozon 中国站自动选品。 支持批量上架、以图搜款。
TL;DR: 23 marketing playbooks (CRO, SEO, copy, analytics, experiments, pricing, launches, ads, social). Use to get checklists + copy/paste deliverables fast.
Zero-config, zero-dependency intelligent academic research report generator. Automatically tracks, summarizes, and reports on the latest academic papers and research trends.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | finance-accounting |
| version | 1.0.0 |
| description | 财务会计文书处理综合技能包 - 包含记账、对账、税务、报表等核心功能 |
| author | 天元 (⚡) |
| category | finance |
| tags | ["accounting","finance","tax","document","invoice"] |
| dependencies | ["python>=3.11","pandas","openpyxl","reportlab"] |
本技能包提供完整的财务会计文书处理功能,包括记账、对账、税务计算、报表生成等核心业务流程。
# 记录收入
python finance.py record --type income --amount 1000 --category "销售收入" --date "2026-02-28"
# 记录支出
python finance.py record --type expense --amount 500 --category "办公用品" --date "2026-02-28"
# 查看余额
python finance.py balance
# 导入银行流水
python finance.py reconcile import --file bank_statement.csv
# 自动对账
python finance.py reconcile auto
# 生成对账报告
python finance.py reconcile report --output reconciliation_report.pdf
# 计算增值税
python finance.py tax vat --period 2026-02
# 生成税务申报表
python finance.py tax report --type vat --period 2026-02 --output vat_report.xlsx
# 税务规划建议
python finance.py tax plan --year 2026
# 生成资产负债表
python finance.py report balance-sheet --period 2026-02 --output balance_sheet.pdf
# 生成利润表
python finance.py report income-statement --period 2026-02 --output income_statement.pdf
# 生成现金流量表
python finance.py report cash-flow --period 2026-02 --output cash_flow.pdf
# config/accounts.yaml
accounts:
assets:
- code: 1001
name: 现金
type: current_asset
- code: 1002
name: 银行存款
type: current_asset
liabilities:
- code: 2001
name: 短期借款
type: current_liability
equity:
- code: 3001
name: 实收资本
type: equity
income:
- code: 4001
name: 主营业务收入
type: revenue
expenses:
- code: 5001
name: 办公费用
type: expense
# config/tax.yaml
tax:
vat_rate: 0.13 # 增值税率
income_tax_rate: 0.25 # 企业所得税率
tax_threshold: 300000 # 起征点
declarations:
vat: monthly # 增值税申报周期
income_tax: quarterly # 所得税申报周期
date,type,account,amount,description,category
2026-02-28,income,4001,1000.00,销售产品,销售收入
2026-02-28,expense,5001,500.00,购买办公用品,办公费用
date,description,amount,balance
2026-02-28,工资收入,10000.00,15000.00
2026-02-28,水电费支出,-500.00,14500.00
# 查看运行日志
tail -f logs/finance.log
# 查看错误日志
tail -f logs/error.log
技能状态: ✅ 就绪
最后更新: 2026-02-28
维护者: 天元 (⚡)