{
  "schemaVersion": "1.0",
  "item": {
    "slug": "calendar-manager",
    "name": "Calendar Manager",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Jackeven02/calendar-manager",
    "canonicalUrl": "https://clawhub.ai/Jackeven02/calendar-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/calendar-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=calendar-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/resources.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/calendar-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/calendar-manager",
    "agentPageUrl": "https://openagent3.xyz/skills/calendar-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calendar-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calendar-manager/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "概述",
        "body": "赋予 AI 日历管理能力：\n\n读取日历事件\n创建/修改/删除事件\n设置提醒\n查找空闲时间"
      },
      {
        "title": "触发场景",
        "body": "用户要求\"查看今天/明天/本周的日程\"\n用户要求\"添加一个会议/事件\"\n用户要求\"设置提醒\"\n用户询问\"今天有什么安排\"\n定时提醒用户 upcoming events"
      },
      {
        "title": "支持的日历服务",
        "body": "服务说明Google Calendar需要 gcal CLI 或 APIApple Calendar (macOS)使用 icalBuddyOutlook使用 gog CLIFantastical第三方应用"
      },
      {
        "title": "Google Calendar (gog CLI)",
        "body": "# 列出今天的事件\ngog calendar list today\n\n# 列出明天的事件\ngog calendar list tomorrow\n\n# 列出这周的事件\ngog calendar list this-week\n\n# 创建事件\ngog calendar create \"会议名称\" --when \"2026-02-25 14:00\" --duration 60\n\n# 快速添加事件\ngog calendar add \"Team Meeting\" tomorrow 3pm"
      },
      {
        "title": "Apple Calendar (icalBuddy)",
        "body": "# 安装\nbrew install ical-buddy\n\n# 列出今天的事件\nicalBuddy eventsToday\n\n# 列出明天的事件\nicalBuddy eventsTomorrow\n\n# 列出指定日期范围\nicalBuddy eventsFrom:2026-02-24 to:2026-02-28"
      },
      {
        "title": "工作流",
        "body": "1. 检查可用的日历工具\n2. 获取指定时间范围的事件\n3. 筛选重要/即将到来的事件\n4. 汇总呈现给用户"
      },
      {
        "title": "提醒设置",
        "body": "提醒时间说明事件前 15 分钟会议/约会事件前 1 小时重要事项事件前 1 天当天提醒事件前 1 周周计划"
      },
      {
        "title": "输出格式",
        "body": "向用户呈现日历时：\n\n日期和时间\n事件名称\n地点（如果有）\n参与人（如果有）\n建议的准备事项"
      },
      {
        "title": "与邮件技能配合",
        "body": "可以与 email-reader 配合：\n\n读取邮件中的会议邀请\n自动创建日历事件\n发送会议提醒邮件"
      }
    ],
    "body": "Calendar Manager - 日历管理技能\n概述\n\n赋予 AI 日历管理能力：\n\n读取日历事件\n创建/修改/删除事件\n设置提醒\n查找空闲时间\n触发场景\n用户要求\"查看今天/明天/本周的日程\"\n用户要求\"添加一个会议/事件\"\n用户要求\"设置提醒\"\n用户询问\"今天有什么安排\"\n定时提醒用户 upcoming events\n支持的日历服务\n服务\t说明\nGoogle Calendar\t需要 gcal CLI 或 API\nApple Calendar (macOS)\t使用 icalBuddy\nOutlook\t使用 gog CLI\nFantastical\t第三方应用\n使用方法\nGoogle Calendar (gog CLI)\n# 列出今天的事件\ngog calendar list today\n\n# 列出明天的事件\ngog calendar list tomorrow\n\n# 列出这周的事件\ngog calendar list this-week\n\n# 创建事件\ngog calendar create \"会议名称\" --when \"2026-02-25 14:00\" --duration 60\n\n# 快速添加事件\ngog calendar add \"Team Meeting\" tomorrow 3pm\n\nApple Calendar (icalBuddy)\n# 安装\nbrew install ical-buddy\n\n# 列出今天的事件\nicalBuddy eventsToday\n\n# 列出明天的事件\nicalBuddy eventsTomorrow\n\n# 列出指定日期范围\nicalBuddy eventsFrom:2026-02-24 to:2026-02-28\n\n工作流\n1. 检查可用的日历工具\n2. 获取指定时间范围的事件\n3. 筛选重要/即将到来的事件\n4. 汇总呈现给用户\n\n提醒设置\n提醒时间\t说明\n事件前 15 分钟\t会议/约会\n事件前 1 小时\t重要事项\n事件前 1 天\t当天提醒\n事件前 1 周\t周计划\n输出格式\n\n向用户呈现日历时：\n\n日期和时间\n事件名称\n地点（如果有）\n参与人（如果有）\n建议的准备事项\n与邮件技能配合\n\n可以与 email-reader 配合：\n\n读取邮件中的会议邀请\n自动创建日历事件\n发送会议提醒邮件"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Jackeven02/calendar-manager",
    "publisherUrl": "https://clawhub.ai/Jackeven02/calendar-manager",
    "owner": "Jackeven02",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/calendar-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/calendar-manager",
    "agentUrl": "https://openagent3.xyz/skills/calendar-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/calendar-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/calendar-manager/agent.md"
  }
}