{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-calendar-api",
    "name": "Google Calendar",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/google-calendar-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/google-calendar-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-calendar-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-calendar-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "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/google-calendar-api"
    },
    "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/google-calendar-api",
    "agentPageUrl": "https://openagent3.xyz/skills/google-calendar-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-calendar-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-calendar-api/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": "Google Calendar",
        "body": "Access the Google Calendar API with managed OAuth authentication. Create and manage events, list calendars, and check availability."
      },
      {
        "title": "Quick Start",
        "body": "# List upcoming events\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events?maxResults=10&orderBy=startTime&singleEvents=true')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/google-calendar/{native-api-path}\n\nReplace {native-api-path} with the actual Google Calendar API endpoint path. The gateway proxies requests to www.googleapis.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Google OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=google-calendar&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'google-calendar'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"google-calendar\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Google Calendar connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "List Calendars",
        "body": "GET /google-calendar/calendar/v3/users/me/calendarList"
      },
      {
        "title": "Get Calendar",
        "body": "GET /google-calendar/calendar/v3/calendars/{calendarId}\n\nUse primary for the user's primary calendar."
      },
      {
        "title": "List Events",
        "body": "GET /google-calendar/calendar/v3/calendars/primary/events?maxResults=10&orderBy=startTime&singleEvents=true\n\nWith time bounds:\n\nGET /google-calendar/calendar/v3/calendars/primary/events?timeMin=2024-01-01T00:00:00Z&timeMax=2024-12-31T23:59:59Z&singleEvents=true&orderBy=startTime"
      },
      {
        "title": "Get Event",
        "body": "GET /google-calendar/calendar/v3/calendars/primary/events/{eventId}"
      },
      {
        "title": "Create Event",
        "body": "POST /google-calendar/calendar/v3/calendars/primary/events\nContent-Type: application/json\n\n{\n  \"summary\": \"Team Meeting\",\n  \"description\": \"Weekly sync\",\n  \"start\": {\n    \"dateTime\": \"2024-01-15T10:00:00\",\n    \"timeZone\": \"America/Los_Angeles\"\n  },\n  \"end\": {\n    \"dateTime\": \"2024-01-15T11:00:00\",\n    \"timeZone\": \"America/Los_Angeles\"\n  },\n  \"attendees\": [\n    {\"email\": \"attendee@example.com\"}\n  ]\n}"
      },
      {
        "title": "Create All-Day Event",
        "body": "POST /google-calendar/calendar/v3/calendars/primary/events\nContent-Type: application/json\n\n{\n  \"summary\": \"All Day Event\",\n  \"start\": {\"date\": \"2024-01-15\"},\n  \"end\": {\"date\": \"2024-01-16\"}\n}"
      },
      {
        "title": "Update Event",
        "body": "PUT /google-calendar/calendar/v3/calendars/primary/events/{eventId}\nContent-Type: application/json\n\n{\n  \"summary\": \"Updated Meeting Title\",\n  \"start\": {\"dateTime\": \"2024-01-15T10:00:00Z\"},\n  \"end\": {\"dateTime\": \"2024-01-15T11:00:00Z\"}\n}"
      },
      {
        "title": "Patch Event (partial update)",
        "body": "PATCH /google-calendar/calendar/v3/calendars/primary/events/{eventId}\nContent-Type: application/json\n\n{\n  \"summary\": \"New Title Only\"\n}"
      },
      {
        "title": "Delete Event",
        "body": "DELETE /google-calendar/calendar/v3/calendars/primary/events/{eventId}"
      },
      {
        "title": "Quick Add Event (natural language)",
        "body": "POST /google-calendar/calendar/v3/calendars/primary/events/quickAdd?text=Meeting+with+John+tomorrow+at+3pm"
      },
      {
        "title": "Free/Busy Query",
        "body": "POST /google-calendar/calendar/v3/freeBusy\nContent-Type: application/json\n\n{\n  \"timeMin\": \"2024-01-15T00:00:00Z\",\n  \"timeMax\": \"2024-01-16T00:00:00Z\",\n  \"items\": [{\"id\": \"primary\"}]\n}"
      },
      {
        "title": "JavaScript",
        "body": "// List events\nconst response = await fetch(\n  'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events?maxResults=10&singleEvents=true',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\n\n// Create event\nawait fetch(\n  'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n  {\n    method: 'POST',\n    headers: {\n      'Content-Type': 'application/json',\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    },\n    body: JSON.stringify({\n      summary: 'Meeting',\n      start: { dateTime: '2024-01-15T10:00:00Z' },\n      end: { dateTime: '2024-01-15T11:00:00Z' }\n    })\n  }\n);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nheaders = {'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n\n# List events\nevents = requests.get(\n    'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n    headers=headers,\n    params={'maxResults': 10, 'singleEvents': 'true'}\n).json()\n\n# Create event\nresponse = requests.post(\n    'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n    headers=headers,\n    json={\n        'summary': 'Meeting',\n        'start': {'dateTime': '2024-01-15T10:00:00Z'},\n        'end': {'dateTime': '2024-01-15T11:00:00Z'}\n    }\n)"
      },
      {
        "title": "Notes",
        "body": "Use primary as calendarId for the user's main calendar\nTimes must be in RFC3339 format (e.g., 2024-01-15T10:00:00Z)\nFor recurring events, use singleEvents=true to expand instances\norderBy=startTime requires singleEvents=true\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Google Calendar connection401Invalid or missing Maton API key429Rate limited (10 req/sec per account)4xx/5xxPassthrough error from Google Calendar API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with google-calendar. For example:\n\nCorrect: https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events\nIncorrect: https://gateway.maton.ai/calendar/v3/calendars/primary/events"
      },
      {
        "title": "Resources",
        "body": "Calendar API Overview\nList Calendars\nList Events\nGet Event\nInsert Event\nUpdate Event\nDelete Event\nQuick Add Event\nFree/Busy Query\nMaton Community\nMaton Support"
      }
    ],
    "body": "Google Calendar\n\nAccess the Google Calendar API with managed OAuth authentication. Create and manage events, list calendars, and check availability.\n\nQuick Start\n# List upcoming events\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events?maxResults=10&orderBy=startTime&singleEvents=true')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/google-calendar/{native-api-path}\n\n\nReplace {native-api-path} with the actual Google Calendar API endpoint path. The gateway proxies requests to www.googleapis.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Google OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=google-calendar&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'google-calendar'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"google-calendar\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Google Calendar connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nList Calendars\nGET /google-calendar/calendar/v3/users/me/calendarList\n\nGet Calendar\nGET /google-calendar/calendar/v3/calendars/{calendarId}\n\n\nUse primary for the user's primary calendar.\n\nList Events\nGET /google-calendar/calendar/v3/calendars/primary/events?maxResults=10&orderBy=startTime&singleEvents=true\n\n\nWith time bounds:\n\nGET /google-calendar/calendar/v3/calendars/primary/events?timeMin=2024-01-01T00:00:00Z&timeMax=2024-12-31T23:59:59Z&singleEvents=true&orderBy=startTime\n\nGet Event\nGET /google-calendar/calendar/v3/calendars/primary/events/{eventId}\n\nCreate Event\nPOST /google-calendar/calendar/v3/calendars/primary/events\nContent-Type: application/json\n\n{\n  \"summary\": \"Team Meeting\",\n  \"description\": \"Weekly sync\",\n  \"start\": {\n    \"dateTime\": \"2024-01-15T10:00:00\",\n    \"timeZone\": \"America/Los_Angeles\"\n  },\n  \"end\": {\n    \"dateTime\": \"2024-01-15T11:00:00\",\n    \"timeZone\": \"America/Los_Angeles\"\n  },\n  \"attendees\": [\n    {\"email\": \"attendee@example.com\"}\n  ]\n}\n\nCreate All-Day Event\nPOST /google-calendar/calendar/v3/calendars/primary/events\nContent-Type: application/json\n\n{\n  \"summary\": \"All Day Event\",\n  \"start\": {\"date\": \"2024-01-15\"},\n  \"end\": {\"date\": \"2024-01-16\"}\n}\n\nUpdate Event\nPUT /google-calendar/calendar/v3/calendars/primary/events/{eventId}\nContent-Type: application/json\n\n{\n  \"summary\": \"Updated Meeting Title\",\n  \"start\": {\"dateTime\": \"2024-01-15T10:00:00Z\"},\n  \"end\": {\"dateTime\": \"2024-01-15T11:00:00Z\"}\n}\n\nPatch Event (partial update)\nPATCH /google-calendar/calendar/v3/calendars/primary/events/{eventId}\nContent-Type: application/json\n\n{\n  \"summary\": \"New Title Only\"\n}\n\nDelete Event\nDELETE /google-calendar/calendar/v3/calendars/primary/events/{eventId}\n\nQuick Add Event (natural language)\nPOST /google-calendar/calendar/v3/calendars/primary/events/quickAdd?text=Meeting+with+John+tomorrow+at+3pm\n\nFree/Busy Query\nPOST /google-calendar/calendar/v3/freeBusy\nContent-Type: application/json\n\n{\n  \"timeMin\": \"2024-01-15T00:00:00Z\",\n  \"timeMax\": \"2024-01-16T00:00:00Z\",\n  \"items\": [{\"id\": \"primary\"}]\n}\n\nCode Examples\nJavaScript\n// List events\nconst response = await fetch(\n  'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events?maxResults=10&singleEvents=true',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\n\n// Create event\nawait fetch(\n  'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n  {\n    method: 'POST',\n    headers: {\n      'Content-Type': 'application/json',\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    },\n    body: JSON.stringify({\n      summary: 'Meeting',\n      start: { dateTime: '2024-01-15T10:00:00Z' },\n      end: { dateTime: '2024-01-15T11:00:00Z' }\n    })\n  }\n);\n\nPython\nimport os\nimport requests\n\nheaders = {'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n\n# List events\nevents = requests.get(\n    'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n    headers=headers,\n    params={'maxResults': 10, 'singleEvents': 'true'}\n).json()\n\n# Create event\nresponse = requests.post(\n    'https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events',\n    headers=headers,\n    json={\n        'summary': 'Meeting',\n        'start': {'dateTime': '2024-01-15T10:00:00Z'},\n        'end': {'dateTime': '2024-01-15T11:00:00Z'}\n    }\n)\n\nNotes\nUse primary as calendarId for the user's main calendar\nTimes must be in RFC3339 format (e.g., 2024-01-15T10:00:00Z)\nFor recurring events, use singleEvents=true to expand instances\norderBy=startTime requires singleEvents=true\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tMissing Google Calendar connection\n401\tInvalid or missing Maton API key\n429\tRate limited (10 req/sec per account)\n4xx/5xx\tPassthrough error from Google Calendar API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with google-calendar. For example:\nCorrect: https://gateway.maton.ai/google-calendar/calendar/v3/calendars/primary/events\nIncorrect: https://gateway.maton.ai/calendar/v3/calendars/primary/events\nResources\nCalendar API Overview\nList Calendars\nList Events\nGet Event\nInsert Event\nUpdate Event\nDelete Event\nQuick Add Event\nFree/Busy Query\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/google-calendar-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/google-calendar-api",
    "owner": "byungkyu",
    "version": "1.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-calendar-api",
    "downloadUrl": "https://openagent3.xyz/downloads/google-calendar-api",
    "agentUrl": "https://openagent3.xyz/skills/google-calendar-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-calendar-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-calendar-api/agent.md"
  }
}