hystruct-automation
Automate Hystruct tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Hot:32
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-hystruct-automation&locale=en&source=copy
Hystruct Automation Skills — Keyless Workflows via Rube MCP
Skill Overview
Hystruct Automation skills use Rube MCP (provided by Composio) to automate Hystruct tasks, enabling tool discovery, connection management, and workflow execution without requiring an API key.
Use Cases
When adding Rube MCP to the client configuration, simply add the endpoint
https://rube.app/mcp to use it directly—no need to request a key or configure authentication.When the tool architecture may change, the skill first calls
RUBE_SEARCH_TOOLS to fetch the current architecture, ensuring the correct tool parameters and field data types are used.When multiple Hystruct actions need to be executed, you can use
RUBE_MULTI_EXECUTE_TOOL or RUBE_REMOTE_WORKBENCH to support batch processing, including session reuse to improve efficiency.Core Capabilities
Using
RUBE_SEARCH_TOOLS to dynamically discover available Hystruct tools, retrieving tool slugs, input architecture, recommended execution plans, and known pitfalls—avoiding hard-coded, outdated tool definitions.Using
RUBE_MANAGE_CONNECTIONS to check and manage Hystruct connection status, ensuring the connection is ACTIVE before running any workflow. Setup can be completed via the returned authentication link.Using
RUBE_MULTI_EXECUTE_TOOL to execute multiple tools in one go, supporting empty memory parameters and session ID reuse—suitable for complex multi-step automation scenarios.Frequently Asked Questions
How do I add a Rube MCP Server?
Add
https://rube.app/mcp to the client configuration as an MCP server. No API key is required—after adding the endpoint, it is available immediately. Afterward, you can call RUBE_SEARCH_TOOLS to verify whether the connection is successful.Why search the tool architecture first?
Hystruct tool architectures (field names, types, definitions) change over time. If you hard-code tool slugs and parameters, calls may fail. Searching first ensures the latest architecture is used, and the search results also provide recommended execution plans and known pitfalls.
How can I check whether a Hystruct connection is active?
Call
RUBE_MANAGE_CONNECTIONS with the toolkit hystruct and the session ID. If the returned status is not ACTIVE, complete the setup using the returned authentication link. Only after confirming the connection is active should you run any workflow operations.