{
  "schemaVersion": "1.0",
  "item": {
    "slug": "makex",
    "name": "MakeX",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tkejr/makex",
    "canonicalUrl": "https://clawhub.ai/tkejr/makex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/makex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=makex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "connected-account.txt",
      "output-structure.txt",
      "run-action.txt",
      "search-actions.txt",
      "SKILL.md",
      "action-details.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-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/makex"
    },
    "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/makex",
    "agentPageUrl": "https://openagent3.xyz/skills/makex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/makex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/makex/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": "OpenClaw Integrations API",
        "body": "OpenClaw is a skill-based integration system that allows apps built on MakeX to discover and execute actions from third-party services (Gmail, Slack, GitHub, etc.) via Composio."
      },
      {
        "title": "Authentication",
        "body": "All endpoints require the X-Org-Token header containing an organization service token. This token is validated against the organization database. User session cookies are not used — these endpoints are designed for server-to-server communication.\n\nX-Org-Token: <org-service-token>\n\nDon't have an org token?\n\nGo to https://www.makex.app/ and sign up for an account.\nNavigate to Settings in your dashboard.\nCopy your API key from the settings page — this is your X-Org-Token."
      },
      {
        "title": "Base URL",
        "body": "POST /api/openclaw/integrations/<endpoint>\n\nAll endpoints support CORS via a preflight OPTIONS handler."
      },
      {
        "title": "1. Search Actions",
        "body": "POST /api/openclaw/integrations/search-actions\n\nDiscover available actions/tools across one or more integrations.\n\nRequest Body:\n\n{\n  \"integrations\": [\"gmail\", \"slack\", \"github\"],\n  \"toolkit\": \"gmail\",\n  \"search\": \"send\"\n}\n\nintegrations (required): Array of integration slugs to search across.\ntoolkit (optional): If provided, overrides integrations and searches only this toolkit.\nsearch (optional): Filter actions by keyword.\n\nResponse (200):\n\n{\n  \"total\": 12,\n  \"actions\": {\n    \"gmail\": [\n      { \"slug\": \"GMAIL_SEND_EMAIL\", \"name\": \"Send Email\" },\n      { \"slug\": \"GMAIL_CREATE_DRAFT\", \"name\": \"Create Draft\" }\n    ],\n    \"slack\": [\n      { \"slug\": \"SLACK_SEND_MESSAGE\", \"name\": \"Send Message\" }\n    ]\n  }\n}"
      },
      {
        "title": "2. Connected Account",
        "body": "POST /api/openclaw/integrations/connected-account\n\nCheck if a specific integration is connected for the organization and retrieve account details.\n\nRequest Body:\n\n{\n  \"integration\": \"gmail\"\n}\n\nintegration (required): The integration slug to check.\n\nResponse (200):\n\n{\n  \"accountId\": \"conn_abc123\",\n  \"userId\": \"org_xyz\",\n  \"integration\": \"gmail\",\n  \"status\": \"ACTIVE\"\n}\n\nResponse (404) — not connected:\n\n{\n  \"error\": \"No active connected account found for integration gmail\",\n  \"availableIntegrations\": [\"slack\", \"github\"]\n}"
      },
      {
        "title": "3. Action Details",
        "body": "POST /api/openclaw/integrations/action-details\n\nGet the full specification of a specific action, including its input and output parameters.\n\nRequest Body:\n\n{\n  \"action_slug\": \"GMAIL_SEND_EMAIL\"\n}\n\naction_slug (required): The slug of the action to retrieve.\n\nResponse (200):\n\n{\n  \"name\": \"Send Email\",\n  \"slug\": \"GMAIL_SEND_EMAIL\",\n  \"description\": \"Send an email via Gmail\",\n  \"inputParameters\": {\n    \"to\": { \"type\": \"string\", \"description\": \"Recipient email\", \"required\": true },\n    \"subject\": { \"type\": \"string\", \"description\": \"Email subject\" },\n    \"body\": { \"type\": \"string\", \"description\": \"Email body\" }\n  },\n  \"outputParameters\": {\n    \"messageId\": { \"type\": \"string\" },\n    \"threadId\": { \"type\": \"string\" }\n  }\n}"
      },
      {
        "title": "4. Run Action",
        "body": "POST /api/openclaw/integrations/run-action\n\nExecute a specific action on a connected account.\n\nRequest Body:\n\n{\n  \"toolName\": \"GMAIL_SEND_EMAIL\",\n  \"accountId\": \"conn_abc123\",\n  \"arguments\": {\n    \"to\": \"user@example.com\",\n    \"subject\": \"Hello\",\n    \"body\": \"Hi there\"\n  }\n}\n\ntoolName (required): The action slug to execute.\naccountId (required): The connected account ID (from the connected-account endpoint).\narguments (optional): Structured key-value arguments for the action.\ntext (optional): Natural language text input (used if arguments is not provided).\nversion (optional): API version override.\ncustom_auth_params (optional): Custom authentication parameters.\ncustom_connection_data (optional): Custom connection data.\nallow_tracing (optional): Enable tracing for the execution.\n\nResponse (200): The raw Composio execution response (varies by action)."
      },
      {
        "title": "5. Output Structure",
        "body": "POST /api/openclaw/integrations/output-structure\n\nExecute an action and return its output structure. Useful for determining the shape of an action's response.\n\nRequest Body:\n\n{\n  \"action_slug\": \"GMAIL_SEND_EMAIL\",\n  \"accountId\": \"conn_abc123\",\n  \"arguments\": {\n    \"to\": \"test@example.com\",\n    \"subject\": \"Test\",\n    \"body\": \"Test body\"\n  }\n}\n\naction_slug (required): The action slug to execute.\naccountId (required): The connected account ID.\narguments (optional): Arguments to pass to the action.\n\nResponse (200):\n\n{\n  \"successful\": true,\n  \"data\": { ... }\n}"
      },
      {
        "title": "Error Responses",
        "body": "All endpoints return errors in a consistent format:\n\n{ \"error\": \"Description of what went wrong\" }\n\nStatusMeaning400Missing required parameters401Missing or invalid X-Org-Token404Resource not found (e.g., no connected account)500Server error or missing COMPOSIO_API_KEY"
      },
      {
        "title": "Typical Workflow",
        "body": "Search actions to discover what's available for connected integrations.\nGet connected account to retrieve the accountId for a specific integration.\nGet action details to understand input/output parameters for a chosen action.\nRun action to execute the action with the required arguments."
      }
    ],
    "body": "OpenClaw Integrations API\n\nOpenClaw is a skill-based integration system that allows apps built on MakeX to discover and execute actions from third-party services (Gmail, Slack, GitHub, etc.) via Composio.\n\nAuthentication\n\nAll endpoints require the X-Org-Token header containing an organization service token. This token is validated against the organization database. User session cookies are not used — these endpoints are designed for server-to-server communication.\n\nX-Org-Token: <org-service-token>\n\n\nDon't have an org token?\n\nGo to https://www.makex.app/ and sign up for an account.\nNavigate to Settings in your dashboard.\nCopy your API key from the settings page — this is your X-Org-Token.\nBase URL\nPOST /api/openclaw/integrations/<endpoint>\n\n\nAll endpoints support CORS via a preflight OPTIONS handler.\n\nEndpoints\n1. Search Actions\n\nPOST /api/openclaw/integrations/search-actions\n\nDiscover available actions/tools across one or more integrations.\n\nRequest Body:\n\n{\n  \"integrations\": [\"gmail\", \"slack\", \"github\"],\n  \"toolkit\": \"gmail\",\n  \"search\": \"send\"\n}\n\nintegrations (required): Array of integration slugs to search across.\ntoolkit (optional): If provided, overrides integrations and searches only this toolkit.\nsearch (optional): Filter actions by keyword.\n\nResponse (200):\n\n{\n  \"total\": 12,\n  \"actions\": {\n    \"gmail\": [\n      { \"slug\": \"GMAIL_SEND_EMAIL\", \"name\": \"Send Email\" },\n      { \"slug\": \"GMAIL_CREATE_DRAFT\", \"name\": \"Create Draft\" }\n    ],\n    \"slack\": [\n      { \"slug\": \"SLACK_SEND_MESSAGE\", \"name\": \"Send Message\" }\n    ]\n  }\n}\n\n2. Connected Account\n\nPOST /api/openclaw/integrations/connected-account\n\nCheck if a specific integration is connected for the organization and retrieve account details.\n\nRequest Body:\n\n{\n  \"integration\": \"gmail\"\n}\n\nintegration (required): The integration slug to check.\n\nResponse (200):\n\n{\n  \"accountId\": \"conn_abc123\",\n  \"userId\": \"org_xyz\",\n  \"integration\": \"gmail\",\n  \"status\": \"ACTIVE\"\n}\n\n\nResponse (404) — not connected:\n\n{\n  \"error\": \"No active connected account found for integration gmail\",\n  \"availableIntegrations\": [\"slack\", \"github\"]\n}\n\n3. Action Details\n\nPOST /api/openclaw/integrations/action-details\n\nGet the full specification of a specific action, including its input and output parameters.\n\nRequest Body:\n\n{\n  \"action_slug\": \"GMAIL_SEND_EMAIL\"\n}\n\naction_slug (required): The slug of the action to retrieve.\n\nResponse (200):\n\n{\n  \"name\": \"Send Email\",\n  \"slug\": \"GMAIL_SEND_EMAIL\",\n  \"description\": \"Send an email via Gmail\",\n  \"inputParameters\": {\n    \"to\": { \"type\": \"string\", \"description\": \"Recipient email\", \"required\": true },\n    \"subject\": { \"type\": \"string\", \"description\": \"Email subject\" },\n    \"body\": { \"type\": \"string\", \"description\": \"Email body\" }\n  },\n  \"outputParameters\": {\n    \"messageId\": { \"type\": \"string\" },\n    \"threadId\": { \"type\": \"string\" }\n  }\n}\n\n4. Run Action\n\nPOST /api/openclaw/integrations/run-action\n\nExecute a specific action on a connected account.\n\nRequest Body:\n\n{\n  \"toolName\": \"GMAIL_SEND_EMAIL\",\n  \"accountId\": \"conn_abc123\",\n  \"arguments\": {\n    \"to\": \"user@example.com\",\n    \"subject\": \"Hello\",\n    \"body\": \"Hi there\"\n  }\n}\n\ntoolName (required): The action slug to execute.\naccountId (required): The connected account ID (from the connected-account endpoint).\narguments (optional): Structured key-value arguments for the action.\ntext (optional): Natural language text input (used if arguments is not provided).\nversion (optional): API version override.\ncustom_auth_params (optional): Custom authentication parameters.\ncustom_connection_data (optional): Custom connection data.\nallow_tracing (optional): Enable tracing for the execution.\n\nResponse (200): The raw Composio execution response (varies by action).\n\n5. Output Structure\n\nPOST /api/openclaw/integrations/output-structure\n\nExecute an action and return its output structure. Useful for determining the shape of an action's response.\n\nRequest Body:\n\n{\n  \"action_slug\": \"GMAIL_SEND_EMAIL\",\n  \"accountId\": \"conn_abc123\",\n  \"arguments\": {\n    \"to\": \"test@example.com\",\n    \"subject\": \"Test\",\n    \"body\": \"Test body\"\n  }\n}\n\naction_slug (required): The action slug to execute.\naccountId (required): The connected account ID.\narguments (optional): Arguments to pass to the action.\n\nResponse (200):\n\n{\n  \"successful\": true,\n  \"data\": { ... }\n}\n\nError Responses\n\nAll endpoints return errors in a consistent format:\n\n{ \"error\": \"Description of what went wrong\" }\n\nStatus\tMeaning\n400\tMissing required parameters\n401\tMissing or invalid X-Org-Token\n404\tResource not found (e.g., no connected account)\n500\tServer error or missing COMPOSIO_API_KEY\nTypical Workflow\nSearch actions to discover what's available for connected integrations.\nGet connected account to retrieve the accountId for a specific integration.\nGet action details to understand input/output parameters for a chosen action.\nRun action to execute the action with the required arguments."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tkejr/makex",
    "publisherUrl": "https://clawhub.ai/tkejr/makex",
    "owner": "tkejr",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/makex",
    "downloadUrl": "https://openagent3.xyz/downloads/makex",
    "agentUrl": "https://openagent3.xyz/skills/makex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/makex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/makex/agent.md"
  }
}