# Send MakeX to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/makex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=makex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "connected-account.txt",
      "output-structure.txt",
      "run-action.txt",
      "search-actions.txt",
      "SKILL.md",
      "action-details.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "makex",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T07:27:17.504Z",
      "expiresAt": "2026-05-12T07:27:17.504Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=makex",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=makex",
        "contentDisposition": "attachment; filename=\"makex-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "makex"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### OpenClaw Integrations API

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.

### Authentication

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.

X-Org-Token: <org-service-token>

Don't have an org token?

Go to https://www.makex.app/ and sign up for an account.
Navigate to Settings in your dashboard.
Copy your API key from the settings page — this is your X-Org-Token.

### Base URL

POST /api/openclaw/integrations/<endpoint>

All endpoints support CORS via a preflight OPTIONS handler.

### 1. Search Actions

POST /api/openclaw/integrations/search-actions

Discover available actions/tools across one or more integrations.

Request Body:

{
  "integrations": ["gmail", "slack", "github"],
  "toolkit": "gmail",
  "search": "send"
}

integrations (required): Array of integration slugs to search across.
toolkit (optional): If provided, overrides integrations and searches only this toolkit.
search (optional): Filter actions by keyword.

Response (200):

{
  "total": 12,
  "actions": {
    "gmail": [
      { "slug": "GMAIL_SEND_EMAIL", "name": "Send Email" },
      { "slug": "GMAIL_CREATE_DRAFT", "name": "Create Draft" }
    ],
    "slack": [
      { "slug": "SLACK_SEND_MESSAGE", "name": "Send Message" }
    ]
  }
}

### 2. Connected Account

POST /api/openclaw/integrations/connected-account

Check if a specific integration is connected for the organization and retrieve account details.

Request Body:

{
  "integration": "gmail"
}

integration (required): The integration slug to check.

Response (200):

{
  "accountId": "conn_abc123",
  "userId": "org_xyz",
  "integration": "gmail",
  "status": "ACTIVE"
}

Response (404) — not connected:

{
  "error": "No active connected account found for integration gmail",
  "availableIntegrations": ["slack", "github"]
}

### 3. Action Details

POST /api/openclaw/integrations/action-details

Get the full specification of a specific action, including its input and output parameters.

Request Body:

{
  "action_slug": "GMAIL_SEND_EMAIL"
}

action_slug (required): The slug of the action to retrieve.

Response (200):

{
  "name": "Send Email",
  "slug": "GMAIL_SEND_EMAIL",
  "description": "Send an email via Gmail",
  "inputParameters": {
    "to": { "type": "string", "description": "Recipient email", "required": true },
    "subject": { "type": "string", "description": "Email subject" },
    "body": { "type": "string", "description": "Email body" }
  },
  "outputParameters": {
    "messageId": { "type": "string" },
    "threadId": { "type": "string" }
  }
}

### 4. Run Action

POST /api/openclaw/integrations/run-action

Execute a specific action on a connected account.

Request Body:

{
  "toolName": "GMAIL_SEND_EMAIL",
  "accountId": "conn_abc123",
  "arguments": {
    "to": "user@example.com",
    "subject": "Hello",
    "body": "Hi there"
  }
}

toolName (required): The action slug to execute.
accountId (required): The connected account ID (from the connected-account endpoint).
arguments (optional): Structured key-value arguments for the action.
text (optional): Natural language text input (used if arguments is not provided).
version (optional): API version override.
custom_auth_params (optional): Custom authentication parameters.
custom_connection_data (optional): Custom connection data.
allow_tracing (optional): Enable tracing for the execution.

Response (200): The raw Composio execution response (varies by action).

### 5. Output Structure

POST /api/openclaw/integrations/output-structure

Execute an action and return its output structure. Useful for determining the shape of an action's response.

Request Body:

{
  "action_slug": "GMAIL_SEND_EMAIL",
  "accountId": "conn_abc123",
  "arguments": {
    "to": "test@example.com",
    "subject": "Test",
    "body": "Test body"
  }
}

action_slug (required): The action slug to execute.
accountId (required): The connected account ID.
arguments (optional): Arguments to pass to the action.

Response (200):

{
  "successful": true,
  "data": { ... }
}

### Error Responses

All endpoints return errors in a consistent format:

{ "error": "Description of what went wrong" }

StatusMeaning400Missing required parameters401Missing or invalid X-Org-Token404Resource not found (e.g., no connected account)500Server error or missing COMPOSIO_API_KEY

### Typical Workflow

Search actions to discover what's available for connected integrations.
Get connected account to retrieve the accountId for a specific integration.
Get action details to understand input/output parameters for a chosen action.
Run action to execute the action with the required arguments.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tkejr
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T07:27:17.504Z
- Expires at: 2026-05-12T07:27:17.504Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/makex)
- [Send to Agent page](https://openagent3.xyz/skills/makex/agent)
- [JSON manifest](https://openagent3.xyz/skills/makex/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/makex/agent.md)
- [Download page](https://openagent3.xyz/downloads/makex)