Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

calendar-automation日历自动化

Agent Skill

calendar-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

39,984

周安装

1,681

GitHub Stars

89

下载量

14,008
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:calendar-automation(日历自动化)
来源仓库:https://github.com/claude-office-skills/skills
仓库路径:skills/calendar-automation
安装命令:
npx skills add https://github.com/claude-office-skills/skills --skill calendar-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill calendar-automation

简介

通过 Slack 和 Sheets 集成,自动执行 Google 日历和 Outlook 日程安排、时间限制、会议准备和每日摘要。

  • 支持五个核心工作流程:每日日历摘要到 Slack、会议前一小时准备自动化、智能每周时间锁定、Calendly 预订同步和日历分析报告
  • 包括针对创客和经理日程表的预构建模板,以及可配置的时间限制规则(最小间隔、每天最多会议、焦点块分配)
  • 与 Slack 通知、Google Sheets 日志记录、CRM 系统 (HubSpot) 和与会者研究工具(LinkedIn、电子邮件搜索)集成
  • 生成会议准备文档,其中包含与会者资料、过去互动的背景以及人工智能建议的议程和谈话要点
  • 提供每周分析,涵盖时间分布、会议质量指标、生产力评分和碎片分析

SKILL.md

Calendar Automation

Automate Google Calendar and Outlook workflows for meeting management, time blocking, daily digests, and cross-platform synchronization. Based on n8n workflow templates.

Overview

This skill covers:

  • Meeting scheduling automation
  • Time blocking strategies
  • Daily calendar digests to Slack
  • Meeting prep reminders
  • Calendar analytics

Core Workflows

1. Daily Calendar Digest to Slack

workflow: "Morning Calendar Briefing"

schedule: "6:00 AM daily"

steps:
  1. get_today_events:
      calendar: primary
      time_min: today_start
      time_max: today_end

  2. categorize_events:
      categories:
        meetings: has_attendees == true
        focus_time: title contains "Focus" OR "Deep Work"
        one_on_ones: title contains "1:1" OR "1-on-1"
        interviews: title contains "Interview"

  3. calculate_stats:
      total_meetings: count(meetings)
      total_hours: sum(duration)
      free_time: 8 - total_hours
      back_to_back: count(gap < 15min)

  4. format_message:
      template: |
        ☀️ *Good morning! Here's your day:*

        📅 *{date}*

        *Schedule Overview:*
        • {total_meetings} meetings ({total_hours}h)
        • {free_time}h of free time
        • {back_to_back} back-to-back slots ⚠️

        *Today's Events:*
        {event_list}

        💡 *Tip:* {daily_tip}

  5. send_to_slack:
      channel: "#daily-schedule" or DM

  6. log_to_sheets:
      spreadsheet: "Calendar Analytics"
      data: [date, meetings, hours, categories]

Event List Format:

• 9:00 AM - Team Standup (15m) 📞 Zoom
• 10:00 AM - 1:1 with Sarah (30m) 👥
• 11:00 AM - Focus Time (2h) 🧠
• 2:00 PM - Client Call (1h) 🤝 Google Meet
• 4:00 PM - Interview - PM Role (45m) 🎯

2. Meeting Prep Automation

workflow: "Meeting Preparation"

trigger:
  type: calendar_event
  time: 1_hour_before_meeting
  filter: has_attendees AND duration >= 30min

steps:
  1. get_meeting_details:
      extract: [title, attendees, description, meeting_link]

  2. research_attendees:
      for_each: attendee
      actions:
        - linkedin_lookup: get_title_company
        - crm_lookup: get_past_interactions
        - email_search: recent_threads

  3. generate_prep_doc:
      template: |
        # Meeting Prep: {title}

        **Time:** {start_time}
        **Duration:** {duration}
        **Link:** {meeting_link}

        ## Attendees
        {attendee_profiles}

        ## Context
        - Last interaction: {last_meeting_date}
        - Open items: {open_tasks}
        - Recent emails: {email_summary}

        ## Suggested Agenda
        {ai_suggested_agenda}

        ## Talking Points
        {ai_talking_points}

  4. send_reminder:
      slack_dm:
        message: |
          ⏰ Meeting in 1 hour: *{title}*

          📋 [Prep Doc]({prep_doc_link})
          🔗 [Join Meeting]({meeting_link})

          Quick context: {one_line_summary}

3. Smart Time Blocking

workflow: "Auto Time Blocking"

schedule: "Sunday 8pm" # Plan for next week

steps:
  1. analyze_calendar:
      range: next_7_days
      identify:
        - existing_meetings
        - recurring_meetings
        - available_slots

  2. get_priorities:
      source: [todoist, asana, notion]
      filter: due_this_week AND high_priority

  3. allocate_focus_time:
      rules:
        - morning_block: 9-11am (deep work)
        - afternoon_block: 2-4pm (collaborative)
        - minimum_gap: 15min between meetings
        - max_meetings_per_day: 5

  4. create_blocks:
      types:
        deep_work:
          duration: 2h
          frequency: daily
          preferred_time: 9-11am
          color: blue

        admin_time:
          duration: 1h
          frequency: daily
          preferred_time: 4-5pm
          color: gray

        buffer:
          duration: 15min
          after: external_meetings
          color: yellow

  5. notify:
      slack: "✅ Weekly time blocks created. {x} hours of focus time protected."

4. Calendly → Calendar + CRM

workflow: "Calendly Booking Handler"

trigger:
  type: calendly
  event: booking_created

steps:
  1. get_booking_details:
      extract: [invitee, event_type, scheduled_time, answers]

  2. enrich_contact:
      clearbit: lookup_by_email
      linkedin: get_profile

  3. create_calendar_event:
      google_calendar:
        title: "{event_type} with {invitee_name}"
        time: scheduled_time
        description: |
          **Booked via Calendly**

          Name: {invitee_name}
          Email: {invitee_email}
          Company: {company}

          **Pre-meeting questions:**
          {calendly_answers}
        attendees: [invitee_email, owner_email]
        reminders: [1_day, 1_hour, 15_min]

  4. update_crm:
      hubspot:
        create_or_update_contact:
          email: invitee_email
          properties:
            last_meeting_booked: scheduled_time
            meeting_type: event_type
        create_engagement:
          type: MEETING
          timestamp: scheduled_time

  5. send_confirmation:
      email:
        to: invitee_email
        template: meeting_confirmation
        include: [calendar_invite, prep_questions]

  6. notify_slack:
      channel: "#meetings"
      message: "📅 New booking: {event_type} with {invitee_name} on {date}"

5. Calendar Analytics

analytics_workflow:
  name: "Weekly Calendar Report"
  schedule: "Friday 5pm"

  metrics:
    time_distribution:
      - meetings_total_hours
      - focus_time_hours
      - admin_time_hours
      - 1on1_time_hours

    meeting_quality:
      - avg_meeting_length
      - back_to_back_count
      - meetings_with_agenda
      - external_vs_internal

    productivity:
      - longest_focus_block
      - fragmentation_score
      - after_hours_meetings

  output:
    format: markdown
    destinations: [slack, google_sheets]

  report_template: |
    # 📊 Weekly Calendar Analytics

    ## Time Distribution
    | Category | Hours | % of Week |
    |----------|-------|-----------|
    | Meetings | {meetings_hours} | {meetings_pct}% |
    | Focus Time | {focus_hours} | {focus_pct}% |
    | Admin | {admin_hours} | {admin_pct}% |
    | Available | {available_hours} | {available_pct}% |

    ## Meeting Insights
    - Total meetings: {total_meetings}
    - Average length: {avg_length} min
    - Back-to-back: {b2b_count} ({b2b_pct}%)
    - With agenda: {agenda_pct}%

    ## Productivity Score
    🎯 **{productivity_score}/100**

    - Longest focus block: {longest_focus}
    - Meeting fragmentation: {fragmentation}
    - After-hours: {after_hours_count}

    ## Recommendations
    {ai_recommendations}

Time Blocking Templates

Maker Schedule (Individual Contributor)

┌─────────────────────────────────────┐
│ 9:00 - 11:00  │ Deep Work Block 1  │
├─────────────────────────────────────┤
│ 11:00 - 11:30 │ Email/Slack        │
├─────────────────────────────────────┤
│ 11:30 - 12:30 │ Meetings Window    │
├─────────────────────────────────────┤
│ 12:30 - 1:30  │ Lunch              │
├─────────────────────────────────────┤
│ 1:30 - 3:30   │ Deep Work Block 2  │
├─────────────────────────────────────┤
│ 3:30 - 4:00   │ Buffer/Admin       │
├─────────────────────────────────────┤
│ 4:00 - 5:00   │ Meetings Window    │
├─────────────────────────────────────┤
│ 5:00 - 5:30   │ Daily Wrap-up      │
└─────────────────────────────────────┘

Manager Schedule

┌─────────────────────────────────────┐
│ 8:00 - 8:30   │ Daily Planning     │
├─────────────────────────────────────┤
│ 8:30 - 9:00   │ Team Standup       │
├─────────────────────────────────────┤
│ 9:00 - 12:00  │ 1:1s / Meetings    │
├─────────────────────────────────────┤
│ 12:00 - 1:00  │ Lunch              │
├─────────────────────────────────────┤
│ 1:00 - 2:00   │ Focus Time         │
├─────────────────────────────────────┤
│ 2:00 - 5:00   │ Meetings           │
├─────────────────────────────────────┤
│ 5:00 - 5:30   │ Email/Wrap-up      │
└─────────────────────────────────────┘

Output Example

Request: "Set up daily calendar digest for my Slack"

Output:

# Daily Calendar Digest Setup

## Workflow Configuration

name: "Morning Calendar Briefing" schedule: "6:00 AM weekdays" timezone: "Asia/Shanghai"

trigger: type: cron expression: "0 6 * * 1-5"

actions: 1. fetch_events: calendar: primary date: today

2. send_slack: channel: "@you" # or #your-channel


## Sample Output

☀️ Good morning! Here's your Thursday:

📅 January 30, 2026

━━━━━━━━━━━━━━━━━━━━━━

📊 Overview: • 5 meetings (4.5h) • 3.5h free time • 1 back-to-back warning ⚠️

━━━━━━━━━━━━━━━━━━━━━━

🗓️ Schedule:

9:00 AM │ Team Standup (15m) │ 📞 Google Meet │ 10:00 AM │ 1:1 with Sarah (30m) │ 👥 Conference Room B │ 11:00 AM │ 🧠 Focus Time (2h) │ 1:00 PM │ Lunch │ 2:00 PM │ Client Call - Acme (1h) │ 🤝 Zoom (link attached) │ 3:30 PM │ Product Review (1h) │ 📋 Agenda attached │ 5:00 PM │ ✅ Day ends

━━━━━━━━━━━━━━━━━━━━━━

💡 Tip: You have 2h of focus time - tackle your highest priority task!


## n8n Setup Instructions

1. Create new workflow
2. Add Schedule Trigger node (6am weekdays)
3. Add Google Calendar node (Get Events)
4. Add Code node (format message)
5. Add Slack node (send message)
6. Activate workflow

Would you like me to generate the full n8n workflow JSON?

*Calendar Automation Skill - Part of Claude Office Skills*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.96%
按下载量换算4,617

Claude

30.14%
按下载量换算4,222

Cursor

19.81%
按下载量换算2,775

Gemini CLI

8.74%
按下载量换算1,224

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills