ソース情報
- リポジトリ
- axfinn/devtools
- ソースの最終更新活動
- 2026年5月2日 14:49
- 検出された SKILL.md の言語
- 中国語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/axfinn/devtools --skill plannerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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