원클릭으로
expense
生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室
家庭物品整理 — 物品库存管理、位置标注、到期提醒、AI 智能添加/分析、小票 OCR 识别。触发:整理物品、添加物品、库存管理、物品快过期、收纳整理
粘贴板 — 创建/查看代码片段分享,支持文件上传、分片上传、代码分析、安全扫描。触发:分享代码、粘贴代码、上传文件、分享文本、pastebin
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
科学上网线路管理 — 查看节点、切换线路、测速。当用户请求切换代理线路、查看代理状态、管理科学上网节点时使用此技能。
| name | expense |
| description | 生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账 |
| triggers | ["记账","记账本","花销","支出","收入","财务统计","语音记账","expense"] |
通过 DevTools 后端 API 管理个人财务。后端默认运行在 https://t.jaxiu.cn。
创建账本后获得 creator_key,所有操作需要它。也支持 password 创建,通过登录获取 key。
curl -s -X POST https://t.jaxiu.cn/api/expense \
-H "Content-Type: application/json" \
-d '{
"title": "我的账本",
"password": "your_password"
}'
# 返回: {"id":"xxx","creator_key":"xxx"}
curl -s -X POST https://t.jaxiu.cn/api/expense/login \
-H "Content-Type: application/json" \
-d '{"id":"profile_id","password":"your_password"}'
curl -s -X PUT https://t.jaxiu.cn/api/expense/{id}/extend \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx","expires_in":90}'
curl -s -X POST https://t.jaxiu.cn/api/expense/{id}/accounts \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"name": "工商银行储蓄卡",
"balance": 50000.00,
"currency": "CNY"
}'
curl -s "https://t.jaxiu.cn/api/expense/{id}/accounts?creator_key=xxx"
curl -s -X PUT https://t.jaxiu.cn/api/expense/{id}/accounts/{accountId} \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx","name":"新名称","balance":45000.00}'
curl -s -X POST https://t.jaxiu.cn/api/expense/{id}/categories \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"name": "餐饮",
"type": "expense",
"icon": "food",
"color": "#ff6b6b",
"budget": 3000.00
}'
type 可选: income(收入)、expense(支出)
常用分类(支出): 餐饮、交通、购物、住房、娱乐、医疗、教育、通讯、人情、其他 常用分类(收入): 工资、奖金、理财、兼职、报销、其他
curl -s "https://t.jaxiu.cn/api/expense/{id}/categories?creator_key=xxx"
curl -s -X POST https://t.jaxiu.cn/api/expense/{id}/transactions \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"type": "expense",
"amount": 35.50,
"category_id": "category_id",
"account_id": "account_id",
"description": "午餐 - 牛肉面",
"date": "2026-04-30T12:30:00+08:00",
"tags": ["午餐", "牛肉面"]
}'
type: income 或 expense
# 全部
curl -s "https://t.jaxiu.cn/api/expense/{id}/transactions?creator_key=xxx"
# 按月筛选
curl -s "https://t.jaxiu.cn/api/expense/{id}/transactions?creator_key=xxx&year=2026&month=4"
# 按分类筛选
curl -s "https://t.jaxiu.cn/api/expense/{id}/transactions?creator_key=xxx&category_id=xxx"
# 更新
curl -s -X PUT https://t.jaxiu.cn/api/expense/{id}/transactions/{txId} \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx","amount":40.00,"description":"更正金额"}'
# 删除
curl -s -X DELETE "https://t.jaxiu.cn/api/expense/{id}/transactions/{txId}?creator_key=xxx"
curl -s "https://t.jaxiu.cn/api/expense/{id}/stats?creator_key=xxx&year=2026&month=4"
返回: 总收入、总支出、结余、分类汇总、日趋势等。
curl -s -X POST https://t.jaxiu.cn/api/expense/{id}/analyze \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx"}'
curl -s -X POST https://t.jaxiu.cn/api/expense/{id}/voice-parse \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"text": "今天中午吃牛肉面花了35块5"
}'
# AI 自动解析金额、分类、日期等
当用户说"记账 35元 午餐"或"今天花了xxx"时,调用创建交易 API。 当用户说"本月开销"或"财务状况"时,调用统计 API。 当用户说"语音记账"时,使用 AI voice-parse API。
Base URL: https://t.jaxiu.cn