一键导入
planner
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室
生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账
家庭物品整理 — 物品库存管理、位置标注、到期提醒、AI 智能添加/分析、小票 OCR 识别。触发:整理物品、添加物品、库存管理、物品快过期、收纳整理
粘贴板 — 创建/查看代码片段分享,支持文件上传、分片上传、代码分析、安全扫描。触发:分享代码、粘贴代码、上传文件、分享文本、pastebin
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
科学上网线路管理 — 查看节点、切换线路、测速。当用户请求切换代理线路、查看代理状态、管理科学上网节点时使用此技能。
| name | planner |
| description | 事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划 |
| triggers | ["事项管理","添加任务","今日计划","会议记录","待办事项","记录事情","planner"] |
通过 DevTools 后端 API 管理任务、会议纪要和日程。后端默认运行在 https://t.jaxiu.cn。
creator_key,后续操作需要传递password 创建,之后通过 password 登录获取 creator_keycurl -s -X POST https://t.jaxiu.cn/api/planner/profile \
-H "Content-Type: application/json" \
-d '{
"title": "我的事项管理",
"password": "your_password"
}'
# 返回: {"id":"xxx","creator_key":"xxx","password":"..."}
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/login \
-H "Content-Type: application/json" \
-d '{
"id": "profile_id",
"password": "your_password"
}'
# 返回: {"id":"xxx","creator_key":"xxx",...}
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}?creator_key=xxx"
curl -s -X PUT https://t.jaxiu.cn/api/planner/profile/{id} \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"action": "rename",
"title": "新名称"
}'
action 可选: rename、extend(延长过期)
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/tasks \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"title": "完成项目方案",
"description": "编写Q3项目方案文档",
"priority": "high",
"category": "work",
"due_date": "2026-05-03T18:00:00+08:00",
"tags": ["项目", "文档"]
}'
priority 可选: low、medium、high、urgent
category 可选: work、life、study、other
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/tasks/batch \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"tasks": [
{"title": "任务1", "priority": "high", "category": "work"},
{"title": "任务2", "priority": "medium", "category": "life"}
]
}'
curl -s -X PUT https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId} \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"status": "done",
"title": "更新后的标题",
"description": "更新后的描述",
"priority": "medium"
}'
status 可选: todo、in_progress、done、cancelled
curl -s -X DELETE "https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId}?creator_key=xxx"
# 添加评论
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId}/comments \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"content": "这个任务需要注意时间节点"
}'
# 查看评论
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId}/comments?creator_key=xxx"
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId}/activities?creator_key=xxx"
curl -o task.ics "https://t.jaxiu.cn/api/planner/profile/{id}/tasks/{taskId}/calendar?creator_key=xxx"
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/timeline?creator_key=xxx&year=2026&month=5"
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/review?creator_key=xxx&period=week"
period 可选: day、week、month
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/ai/parse \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"text": "明天下午3点前完成项目方案,高优先级;周末买牛奶和鸡蛋"
}'
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/ai/advise \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"prompt": "帮我安排下周的工作计划"
}'
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/meetings \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"title": "Q3 项目启动会",
"date": "2026-05-01T10:00:00+08:00",
"attendees": ["张三", "李四", "王五"],
"content": "1. 讨论项目目标\n2. 分配任务...",
"action_items": ["张三负责后端开发", "李四负责前端"],
"duration_minutes": 60
}'
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/meetings?creator_key=xxx"
curl -s "https://t.jaxiu.cn/api/planner/profile/{id}/meetings/{meetingId}?creator_key=xxx"
curl -s -X POST https://t.jaxiu.cn/api/planner/profile/{id}/meetings/{meetingId}/summarize \
-H "Content-Type: application/json" \
-d '{"creator_key": "xxx"}'
curl -X POST https://t.jaxiu.cn/api/planner/profile/{id}/recordings \
-H "creator_key: xxx" \
-F "file=@meeting_audio.mp3"
当用户说"记录一个任务"或"帮我添加待办"时,使用创建任务 API;说"查看计划"时,使用时间线 API;说"AI分析我的任务"时,使用 AI parse API。
Base URL: https://t.jaxiu.cn