一键导入
feishu-calendar
When 飞书日历 events or meetings need managing → CRUD calendar events, manage attendees, query free/busy status.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When 飞书日历 events or meetings need managing → CRUD calendar events, manage attendees, query free/busy status.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
When prompt, tool, or agent logic changes need regression testing → run eval benchmarks to detect regressions or improvements.
When a task can be parallelized (bulk code review, multi-module refactor, batch analysis) → split into subtasks running in isolated git worktrees via multiple workers.
When the user wants to research academic papers → search ArXiv, extract PDFs, summarize/review/Q&A, generate experiment code.
When you need to interact with web pages using the user's logged-in browser → control Chrome via @playwright/cli daemon, reusing cookies/session with persistent tabs.
When user needs AnyGenIO content generation → unified CLI for task execution with progressive disclosure.
When you need to persist files (reports, docs, evidence) beyond the session → create/query/delete durable artifacts.
| name | feishu-calendar |
| description | When 飞书日历 events or meetings need managing → CRUD calendar events, manage attendees, query free/busy status. |
| triggers | {"intent_patterns":["日历|日程|calendar|会议|meeting","创建日程|安排会议|查看日历|空闲时间|忙闲","约.*时间|book.*time|找.*空闲|find.*available","今天.*有什么.*会|what.*meetings.*today|明天.*日程|tomorrow.*schedule","取消.*会议|cancel.*meeting|改.*时间|reschedule","邀请.*参加|invite.*to|添加.*参会人|add.*attendee","下周.*安排|next.*week.*schedule|这周.*日程|this.*week"],"context_signals":{"keywords":["calendar","日历","日程","会议","event","attendee","freebusy","约","安排","空闲","取消","邀请","schedule"]},"confidence_threshold":0.5} |
| priority | 9 |
| requires_tools | ["bash"] |
| max_tokens | 300 |
| cooldown | 15 |
| 用户意图 | module | tool_action | 必填参数 |
|---|---|---|---|
| 创建日程 | calendar | create | title, start, duration |
| 查询日程 | calendar | query | start, end |
| 更新日程 | calendar | update | event_id + 要更新的字段 |
| 删除日程 | calendar | delete | event_id |
| 列出日历 | calendar | list_calendars | - |
| 查忙闲 | calendar | freebusy | user_ids, start, end |
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "calendar",
"tool_action": "create",
"title": "周会",
"start": "2026-03-10 10:00",
"duration": "60m",
"attendees": ["ou_xxx", "ou_yyy"],
"description": "每周同步进度"
}'
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "calendar",
"tool_action": "query",
"start": "2026-03-10",
"end": "2026-03-14"
}'
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "calendar",
"tool_action": "freebusy",
"user_ids": ["ou_xxx", "ou_yyy"],
"start": "2026-03-10 09:00",
"end": "2026-03-10 18:00"
}'
"2026-03-10 10:00" 或 ISO 8601 "2026-03-10T10:00:00+08:00""30m", "1h", "1h30m" 等格式open_id(ou_ 开头),数组格式timezone 参数指定(如 "Asia/Shanghai")calendar_id 指定其他日历recurrence 参数(RRULE 格式),如 "FREQ=WEEKLY;BYDAY=MO"| 错误 | 原因 | 解决 |
|---|---|---|
| 无权限访问日历 | 未授权 calendar 相关 scope | 执行 OAuth 授权 |
| 参会人无法添加 | user_id 格式错误 | 确认使用 open_id(ou_开头) |
| 时间冲突 | 目标时间段已有日程 | 先查询忙闲确认空闲 |