{
  "schemaVersion": "1.0",
  "item": {
    "slug": "icalendar-sync",
    "name": "iCalendar Sync",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/h8kxrfp68z-lgtm/icalendar-sync",
    "canonicalUrl": "https://clawhub.ai/h8kxrfp68z-lgtm/icalendar-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/icalendar-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=icalendar-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      ".github/workflows/security.yml",
      "CHANGELOG.md",
      "README.md",
      "SECURITY.md",
      "SKILL.md",
      "_meta.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/icalendar-sync"
    },
    "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/icalendar-sync",
    "agentPageUrl": "https://openagent3.xyz/skills/icalendar-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/icalendar-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/icalendar-sync/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "iCalendar Sync",
        "body": "Use this skill to perform iCloud calendar CRUD operations from OpenClaw agents."
      },
      {
        "title": "1. Prepare Credentials Securely",
        "body": "Use App-Specific Passwords only (never the primary Apple ID password).\n\nPrefer keyring storage:\n\npython -m icalendar_sync setup --username user@icloud.com\n\nUse non-interactive setup for automation:\n\nexport ICLOUD_USERNAME=\"user@icloud.com\"\nexport ICLOUD_APP_PASSWORD=\"xxxx-xxxx-xxxx-xxxx\"\npython -m icalendar_sync setup --non-interactive\n\nUse file storage only when keyring is unavailable (headless or GUI-restricted runtime):\n\npython -m icalendar_sync setup --non-interactive --storage file --config ~/.openclaw/icalendar-sync.yaml"
      },
      {
        "title": "2. Choose Provider Deliberately",
        "body": "--provider auto: macOS uses native bridge, non-macOS uses CalDAV.\n--provider caldav: force direct iCloud CalDAV.\n--provider macos-native: force Calendar.app bridge (macOS only).\n\nFor CalDAV diagnostics, add:\n\n--debug-http --user-agent \"your-agent/1.0\""
      },
      {
        "title": "3. Execute Calendar Operations",
        "body": "List calendars:\n\npython -m icalendar_sync list\n\nGet events:\n\npython -m icalendar_sync get --calendar \"Personal\" --days 7\n\nCreate event:\n\npython -m icalendar_sync create --calendar \"Personal\" --json '{\n  \"summary\": \"Meeting\",\n  \"dtstart\": \"2026-02-15T14:00:00+03:00\",\n  \"dtend\": \"2026-02-15T15:00:00+03:00\"\n}'\n\nUpdate event (simple):\n\npython -m icalendar_sync update --calendar \"Personal\" --uid \"event-uid\" --json '{\"summary\":\"Updated title\"}'\n\nUpdate recurring event instance:\n\npython -m icalendar_sync update \\\n  --calendar \"Work\" \\\n  --uid \"series-uid\" \\\n  --recurrence-id \"2026-03-01T09:00:00+03:00\" \\\n  --mode single \\\n  --json '{\"summary\":\"One-off change\"}'\n\nModes for recurring updates:\n\nsingle: update one instance (use --recurrence-id)\nall: update whole series\nfuture: split series and update this+future (use --recurrence-id)\n\nDelete event:\n\npython -m icalendar_sync delete --calendar \"Personal\" --uid \"event-uid\""
      },
      {
        "title": "4. Input Contract",
        "body": "For create, require at least:\n\nsummary (string)\ndtstart (ISO datetime)\ndtend (ISO datetime, must be later than dtstart)\n\nOptional fields:\n\ndescription\nlocation\nstatus\npriority (0-9)\nalarms\nrrule"
      },
      {
        "title": "5. Safety Rules",
        "body": "Validate calendar names; reject path-like payloads.\nKeep credential material out of logs/output.\nPrefer keyring over file storage.\nIf file storage is used, enforce strict file permissions (0600)."
      },
      {
        "title": "6. Failure Handling",
        "body": "If CalDAV auth/network fails on macOS and provider is auto/caldav, switch to macos-native and retry the same operation.\n\nIf JSON payload is supplied as file path, ensure file size stays within safe limits before parsing."
      }
    ],
    "body": "iCalendar Sync\n\nUse this skill to perform iCloud calendar CRUD operations from OpenClaw agents.\n\n1. Prepare Credentials Securely\n\nUse App-Specific Passwords only (never the primary Apple ID password).\n\nPrefer keyring storage:\n\npython -m icalendar_sync setup --username user@icloud.com\n\n\nUse non-interactive setup for automation:\n\nexport ICLOUD_USERNAME=\"user@icloud.com\"\nexport ICLOUD_APP_PASSWORD=\"xxxx-xxxx-xxxx-xxxx\"\npython -m icalendar_sync setup --non-interactive\n\n\nUse file storage only when keyring is unavailable (headless or GUI-restricted runtime):\n\npython -m icalendar_sync setup --non-interactive --storage file --config ~/.openclaw/icalendar-sync.yaml\n\n2. Choose Provider Deliberately\n--provider auto: macOS uses native bridge, non-macOS uses CalDAV.\n--provider caldav: force direct iCloud CalDAV.\n--provider macos-native: force Calendar.app bridge (macOS only).\n\nFor CalDAV diagnostics, add:\n\n--debug-http --user-agent \"your-agent/1.0\"\n\n3. Execute Calendar Operations\n\nList calendars:\n\npython -m icalendar_sync list\n\n\nGet events:\n\npython -m icalendar_sync get --calendar \"Personal\" --days 7\n\n\nCreate event:\n\npython -m icalendar_sync create --calendar \"Personal\" --json '{\n  \"summary\": \"Meeting\",\n  \"dtstart\": \"2026-02-15T14:00:00+03:00\",\n  \"dtend\": \"2026-02-15T15:00:00+03:00\"\n}'\n\n\nUpdate event (simple):\n\npython -m icalendar_sync update --calendar \"Personal\" --uid \"event-uid\" --json '{\"summary\":\"Updated title\"}'\n\n\nUpdate recurring event instance:\n\npython -m icalendar_sync update \\\n  --calendar \"Work\" \\\n  --uid \"series-uid\" \\\n  --recurrence-id \"2026-03-01T09:00:00+03:00\" \\\n  --mode single \\\n  --json '{\"summary\":\"One-off change\"}'\n\n\nModes for recurring updates:\n\nsingle: update one instance (use --recurrence-id)\nall: update whole series\nfuture: split series and update this+future (use --recurrence-id)\n\nDelete event:\n\npython -m icalendar_sync delete --calendar \"Personal\" --uid \"event-uid\"\n\n4. Input Contract\n\nFor create, require at least:\n\nsummary (string)\ndtstart (ISO datetime)\ndtend (ISO datetime, must be later than dtstart)\n\nOptional fields:\n\ndescription\nlocation\nstatus\npriority (0-9)\nalarms\nrrule\n5. Safety Rules\nValidate calendar names; reject path-like payloads.\nKeep credential material out of logs/output.\nPrefer keyring over file storage.\nIf file storage is used, enforce strict file permissions (0600).\n6. Failure Handling\n\nIf CalDAV auth/network fails on macOS and provider is auto/caldav, switch to macos-native and retry the same operation.\n\nIf JSON payload is supplied as file path, ensure file size stays within safe limits before parsing."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/h8kxrfp68z-lgtm/icalendar-sync",
    "publisherUrl": "https://clawhub.ai/h8kxrfp68z-lgtm/icalendar-sync",
    "owner": "h8kxrfp68z-lgtm",
    "version": "2.4.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/icalendar-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/icalendar-sync",
    "agentUrl": "https://openagent3.xyz/skills/icalendar-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/icalendar-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/icalendar-sync/agent.md"
  }
}