{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawconnect",
    "name": "ClawConnect",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/yiweil/clawconnect",
    "canonicalUrl": "https://clawhub.ai/yiweil/clawconnect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawconnect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawconnect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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/clawconnect"
    },
    "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/clawconnect",
    "agentPageUrl": "https://openagent3.xyz/skills/clawconnect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawconnect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawconnect/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": "ClawConnect",
        "body": "Universal account connector for AI agents. One API to access Gmail, Calendar, Twitter, Slack, and Discord."
      },
      {
        "title": "Setup",
        "body": "Go to https://clawconnect.dev and sign up\nConnect your accounts (Twitter, Gmail, Calendar, Slack, Discord)\nGet your API key from the dashboard\nAll requests require Authorization: Bearer <API_KEY>\n\nBase URL: https://clawconnect.dev"
      },
      {
        "title": "Connections",
        "body": "List connected accounts:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/connections"
      },
      {
        "title": "Twitter",
        "body": "Get your Twitter profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/twitter/me\n\nGet timeline:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/twitter/timeline\n\nPost a tweet:\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Hello from ClawConnect!\"}' \\\n  https://clawconnect.dev/api/v1/twitter/tweet"
      },
      {
        "title": "Gmail",
        "body": "List emails (with optional search query and max results):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  \"https://clawconnect.dev/api/v1/gmail/messages?q=is:unread&maxResults=10\"\n\nGet email by ID:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/gmail/messages/MESSAGE_ID\n\nSend email:\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"recipient@example.com\", \"subject\": \"Hello\", \"body\": \"Email body here\"}' \\\n  https://clawconnect.dev/api/v1/gmail/send"
      },
      {
        "title": "Calendar",
        "body": "List events (with optional time range and max results):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  \"https://clawconnect.dev/api/v1/calendar/events?timeMin=2025-01-01T00:00:00Z&timeMax=2025-01-31T23:59:59Z&maxResults=20\""
      },
      {
        "title": "Slack",
        "body": "List workspace users:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/users\n\nList channels:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/channels\n\nGet your Slack profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/profile\n\nSend a message (channel can be a channel ID or user ID):\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"channel\": \"C01234ABCDE\", \"text\": \"Hello!\"}' \\\n  https://clawconnect.dev/api/v1/slack/send"
      },
      {
        "title": "Discord",
        "body": "Get your Discord profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/discord/me\n\nList guilds (servers):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/discord/guilds"
      },
      {
        "title": "Notes",
        "body": "Confirm before sending tweets or emails.\nUse q parameter on Gmail to filter (same syntax as Gmail search).\nCalendar timeMin/timeMax accept ISO 8601 timestamps.\nDiscord send is currently disabled (user OAuth limitation). Read-only for now.\nFor Slack with multiple workspaces, pass connection_id to target a specific connection."
      }
    ],
    "body": "ClawConnect\n\nUniversal account connector for AI agents. One API to access Gmail, Calendar, Twitter, Slack, and Discord.\n\nSetup\nGo to https://clawconnect.dev and sign up\nConnect your accounts (Twitter, Gmail, Calendar, Slack, Discord)\nGet your API key from the dashboard\nAll requests require Authorization: Bearer <API_KEY>\n\nBase URL: https://clawconnect.dev\n\nAPI Endpoints\nConnections\n\nList connected accounts:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/connections\n\nTwitter\n\nGet your Twitter profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/twitter/me\n\n\nGet timeline:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/twitter/timeline\n\n\nPost a tweet:\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Hello from ClawConnect!\"}' \\\n  https://clawconnect.dev/api/v1/twitter/tweet\n\nGmail\n\nList emails (with optional search query and max results):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  \"https://clawconnect.dev/api/v1/gmail/messages?q=is:unread&maxResults=10\"\n\n\nGet email by ID:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/gmail/messages/MESSAGE_ID\n\n\nSend email:\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"recipient@example.com\", \"subject\": \"Hello\", \"body\": \"Email body here\"}' \\\n  https://clawconnect.dev/api/v1/gmail/send\n\nCalendar\n\nList events (with optional time range and max results):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  \"https://clawconnect.dev/api/v1/calendar/events?timeMin=2025-01-01T00:00:00Z&timeMax=2025-01-31T23:59:59Z&maxResults=20\"\n\nSlack\n\nList workspace users:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/users\n\n\nList channels:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/channels\n\n\nGet your Slack profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/slack/profile\n\n\nSend a message (channel can be a channel ID or user ID):\n\ncurl -X POST -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"channel\": \"C01234ABCDE\", \"text\": \"Hello!\"}' \\\n  https://clawconnect.dev/api/v1/slack/send\n\nDiscord\n\nGet your Discord profile:\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/discord/me\n\n\nList guilds (servers):\n\ncurl -H \"Authorization: Bearer $CLAWCONNECT_API_KEY\" \\\n  https://clawconnect.dev/api/v1/discord/guilds\n\nNotes\nConfirm before sending tweets or emails.\nUse q parameter on Gmail to filter (same syntax as Gmail search).\nCalendar timeMin/timeMax accept ISO 8601 timestamps.\nDiscord send is currently disabled (user OAuth limitation). Read-only for now.\nFor Slack with multiple workspaces, pass connection_id to target a specific connection."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/yiweil/clawconnect",
    "publisherUrl": "https://clawhub.ai/yiweil/clawconnect",
    "owner": "yiweil",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawconnect",
    "downloadUrl": "https://openagent3.xyz/downloads/clawconnect",
    "agentUrl": "https://openagent3.xyz/skills/clawconnect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawconnect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawconnect/agent.md"
  }
}