소스 정보
- 저장소
- axfinn/devtools
- 최근 소스 활동
- 2026년 5월 2일 14:49
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/axfinn/devtools --skill planner명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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