Best use case
trust-income-calculator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
## 描述
Teams using trust-income-calculator should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/trust-income-calculator/SKILL.md --create-dirs "https://raw.githubusercontent.com/aifinlab/FinClaw/main/skillsChoice/trust-suite/trust-income-calculator/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/trust-income-calculator/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How trust-income-calculator Compares
| Feature / Agent | trust-income-calculator | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
## 描述
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# trust-income-calculator
## 描述
信托收益计算与分配工具,支持预期收益测算、实际分配核算、IRR计算、税务筹划分析。
## 功能
- 预期收益计算(年化、累计、复利)
- 收益分配方案设计(按季/半年/年度/到期)
- 实际收益与预期对比
- IRR/XIRR计算
- 税务影响分析
- 费用扣除计算
- 收益再投资模拟
## 使用场景
- 产品发行前收益测算
- 投资者收益预估
- 收益分配执行
- 业绩归因分析
- 税务筹划
## 输入输出
### 输入
```json
{
"calculation_type": "expected|actual|irr|tax",
"principal": 1000000,
"expected_yield": 7.5,
"duration_months": 24,
"distribution_way": "quarterly",
"fee_structure": {
"management_fee": 0.5,
"custody_fee": 0.1,
"performance_fee": 20
},
"tax_rate": 20
}
```
### 输出
```json
{
"status": "success",
"data": {
"expected_return": {
"gross_annual": 75000,
"net_annual": 59100,
"total_gross": 150000,
"total_net": 118200,
"net_yield": 5.91
},
"distribution_schedule": [
{"date": "2026-06-20", "amount": 14775}
],
"fee_breakdown": {
"management": 10000,
"custody": 2000,
"performance": 0
},
"tax": {
"taxable_amount": 118200,
"tax_due": 23640,
"after_tax_return": 94560
}
}
}
```
## 运行方式
```bash
# 预期收益计算
python scripts/main.py --principal 1000000 --yield 7.5 --duration 24
# IRR计算
python scripts/main.py --calc-type irr --cashflows data/cashflows.json
# 税务分析
python scripts/main.py --calc-type tax --principal 1000000 --return 118200
```
## 依赖
- numpy-financial>=1.0.0
- pandas>=1.5.0
## 许可证
MIT LicenseRelated Skills
trust-valuation-engine
105
from aifinlab/FinClaw
## 描述
trust-risk-manager
105
from aifinlab/FinClaw
## 描述
trust-product-analyzer
105
from aifinlab/FinClaw
## 描述
trust-compliance-checker
105
from aifinlab/FinClaw
## 描述
trust-asset-allocation
105
from aifinlab/FinClaw
## 描述
family-trust-designer
105
from aifinlab/FinClaw
## 描述
charity-trust-manager
105
from aifinlab/FinClaw
## 描述
futures-margin-calculator
105
from aifinlab/FinClaw
期货保证金计算工具。计算各期货品种的交易所保证金、期货公司保证金、开仓所需资金。支持不同交易所、不同品种的保证金率查询。使用AkShare实时数据、交易所官方保证金标准。适用于资金管理、风险控制、交易策略制定。
trustee-report
105
from aifinlab/FinClaw
用于信托领域存续管理中的受托报告助手场景,支持结构化处理与报告输出。
trustee-report-special
105
from aifinlab/FinClaw
用于信托领域存续期管理中的受托报告助手-专项版场景。支持结构化输入处理、规则分析与Markdown结果输出。
trustee-report-quarterly
105
from aifinlab/FinClaw
用于信托领域存续期管理中的受托报告助手-季报版场景。支持结构化输入处理、规则分析与Markdown结果输出。
trustee-report-monthly
105
from aifinlab/FinClaw
用于信托领域存续期管理中的受托报告助手-月报版场景。支持结构化输入处理、规则分析与Markdown结果输出。