apps/desktop/openclaw-runtime/config/extensions/wecom-openclaw-plugin/skills/wecom-schedule/SKILL.md
企业微信日程管理技能。适用于用户对企业微信日程的各类管理需求。当用户需要:(1) 查询指定时间范围内的日程列表或获取日程详细信息(标题、时间、地点、参与者等),(2) 创建新日程并设置提醒、参与人等,(3) 修改已有日程的标题、时间、地点等信息或取消日程,(4) 添加或移除日程参与人,(5) 查询多个成员的闲忙状态并分析共同空闲时段以安排会议时使用此技能。
npx skillsauth add polaris-dxz/xclaw wecom-scheduleInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
wecom_mcp是一个 MCP tool,所有操作通过调用该 tool 完成。
⚠️ 前置条件:首次调用
wecom_mcp前,必须按wecom-preflight技能执行前置条件检查,确保工具已加入白名单。
通过 wecom_mcp call schedule <接口名> '<json入参>' 与企业微信日程系统交互。
YYYY-MM-DD 或 YYYY-MM-DD HH:MM:SSerrcode != 0 时展示错误信息;返回的 start_time/end_time 为 Unix 时间戳(秒),需转为可读格式YYYY-MM-DD HH:MM:SS),但返回值多为 Unix 时间戳,使用时需进行格式转换使用 wecom_mcp tool 调用 wecom_mcp call schedule get_schedule_list_by_range '{"start_time": "YYYY-MM-DD HH:MM:SS", "end_time": "YYYY-MM-DD HH:MM:SS"}'
返回 schedule_id_list 数组。仅支持当日前后 30 天。
使用 wecom_mcp tool 调用 wecom_mcp call schedule get_schedule_detail '{"schedule_id_list": ["SCHEDULE_ID_1", "SCHEDULE_ID_2"]}'
支持 1~50 个 ID,返回日程标题、时间、地点、参与者等。参见 API 详情。
使用 wecom_mcp tool 调用 wecom_mcp call schedule create_schedule '{"schedule": {"start_time": "YYYY-MM-DD HH:MM:SS", "end_time": "YYYY-MM-DD HH:MM:SS", "summary": "日程标题", "attendees": [{"userid": "USER_ID"}], "reminders": {"is_remind": 1, "remind_before_event_secs": 3600, "timezone": 8}}}'
参见 API 详情 | reminders 字段。
只需传入需修改的字段,未传字段保持不变。
使用 wecom_mcp tool 调用 wecom_mcp call schedule update_schedule '{"schedule": {"schedule_id": "SCHEDULE_ID", "summary": "更新后的标题"}}'
参见 API 详情。
使用 wecom_mcp tool 调用 wecom_mcp call schedule cancel_schedule '{"schedule_id": "SCHEDULE_ID"}'
wecom_mcp tool 调用 wecom_mcp call schedule add_schedule_attendees '{"schedule_id": "SCHEDULE_ID", "attendees": [{"userid": "USER_ID"}]}'wecom_mcp tool 调用 wecom_mcp call schedule del_schedule_attendees '{"schedule_id": "SCHEDULE_ID", "attendees": [{"userid": "USER_ID"}]}'使用 wecom_mcp tool 调用 wecom_mcp call schedule check_availablity '{"check_user_list": ["USER_ID_1", "USER_ID_2"], "start_time": "YYYY-MM-DD HH:MM:SS", "end_time": "YYYY-MM-DD HH:MM:SS"}'
支持 1~10 个用户,返回各用户的忙碌时段列表。参见 API 详情。
经典 query 示例:
流程:
get_schedule_list_by_range 获取日程 ID 列表get_schedule_detail 批量获取详情,将 Unix 时间戳转为可读时间summary 中匹配筛选;未找到则逐步扩大范围至前后 30 天上限经典 query 示例:
流程:
remind_before_event_secs: 900)is_whole_day: 1,时间设为当天 00:00:00 至 23:59:59create_schedule经典 query 示例:
流程:
update_schedule,只传入需修改的字段经典 query 示例:
流程:
cancel_schedule经典 query 示例:
流程:
add_schedule_attendees 或 del_schedule_attendees 完成添加/移除经典 query 示例:
流程:
check_availablity 查询指定时间范围内各用户的忙碌时段create_schedule 创建会议并自动添加参与人testing
公司财报追踪器。自动追踪科技公司财报发布日期并生成摘要。Keywords: 财报, earnings, financial report.
development
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a "report", "memo", "letter", "template", or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
testing
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
content-media
内容复用引擎。将长文章/视频自动拆解为适合不同平台的短内容。Keywords: 内容复用, 多平台适配, content repurpose, 内容拆解.