Install
openclaw skills install income-tracker-zhouliopenclaw skills install income-tracker-zhouli一站式收入管理工具,帮助自由职业者、创作者、副业者追踪多平台收入,分析收益趋势。
记录收入 100 USDT 来自 a2a市场
记录收入 500 元 来自 外包项目:企业官网
添加收入 50 USD 来源 upwork 备注 logo设计
查看本月收入
收入统计 本周
收入报表 2024年3月
收入趋势 最近30天
收入来源分析
收入占比图表
收入增长率
预测下月收入
// 添加收入记录
await handler({
action: 'add',
amount: 100,
currency: 'USDT',
source: 'a2a-market',
note: '技能销售'
});
// 查询统计
await handler({
action: 'stats',
period: 'month',
year: 2024,
month: 3
});
// 获取趋势图
await handler({
action: 'chart',
type: 'trend',
days: 30
});
// 来源分析
await handler({
action: 'analyze',
by: 'source'
});
收入数据以 JSON 格式本地存储,支持:
{
"records": [
{
"id": "inc_001",
"amount": 100,
"currency": "USDT",
"source": "a2a-market",
"date": "2024-03-20",
"note": "技能销售",
"tags": ["skill", "a2a"]
}
],
"sources": {
"a2a-market": { "name": "A2A市场", "type": "platform" },
"upwork": { "name": "Upwork", "type": "platform" }
},
"settings": {
"baseCurrency": "CNY",
"timezone": "Asia/Shanghai"
}
}
| 命令 | 说明 |
|---|---|
收入 | 查看今日收入 |
收入+ 金额 来源 | 快速记录收入 |
月报 | 本月收入报表 |
趋势 | 收入趋势图 |