用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/axfinn/devtools --skill planner命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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