autom-automation

Automate Autom tasks via Rube MCP (Composio). Always search tools first for current schemas.

Install

Hot:2

Download and extract to your skills directory

Copy command and send to OpenClaw for auto-install:

Download and install this skill https://openskills.cc/api/download?slug=composiohq-composio-skills-autom-automation&locale=en&source=copy

Autom Automation — Autom Task Automation via Rube MCP

Skills Overview

With Composio’s Autom toolkit and the Rube MCP server, you can automate Autom operations without needing an API key.

Use Cases

  • Claude Skills Integration: Seamlessly call Autom functionality within a custom Claude skill, extending the boundaries of what your AI assistant can do.
  • Batch Task Processing: Use RUBE_REMOTE_WORKBENCH to run a large number of Autom operations—ideal for scenarios that require bulk processing of records or workflows.
  • Dynamic Tool Invocation: When the Autom tool schema may change, use RUBE_SEARCH_TOOLS to dynamically fetch the latest tool definitions, avoiding failures caused by hard-coded values.
  • Core Features

  • Tool Discovery and Schema Query

  • By using RUBE_SEARCH_TOOLS in real time, you can obtain the list of available Autom tools, the input parameter formats, and recommended execution plans. This ensures your code stays in sync with the latest Autom API without manually maintaining tool definitions.

  • Connection State Management

  • Use RUBE_MANAGE_CONNECTIONS to check and manage the connection status with Autom. The skill will guide you through the authorization flow and only begin executing tasks after the connection is ready.

  • Multi-Tool Batch Execution

  • Use RUBE_MULTI_EXECUTE_TOOL to execute multiple Autom operations in a single request, supporting session reuse and memory passing to improve workflow efficiency.

    Common Questions

    Does Rube MCP require payment or an API key?

    No. The Rube MCP server (https://rube.app/mcp) can be added for free to your MCP client configuration without registration or providing an API key. Just add the endpoint to your configuration file to start using it.

    Why must I call RUBE_SEARCH_TOOLS first?

    The Autom tool schema (field names, types, required parameters) is updated from time to time. If you hard-code the tool definitions directly, your code may break after the API changes. Using RUBE_SEARCH_TOOLS to dynamically fetch the schema ensures code stability while also retrieving the official recommended execution plan.

    How do I resolve the connection status showing as INACTIVE?

    When RUBE_MANAGE_CONNECTIONS returns a status other than ACTIVE, the response will include an authorization link. Click the link to complete Autom account authorization, then call the connection check interface again to confirm the status becomes ACTIVE. Tool calls can only be successfully executed when the status is ACTIVE.