breeze-automation
Automate Breeze tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Hot:1
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-breeze-automation&locale=en&source=copy
Breeze Automation - Automate Breeze Tasks via Rube MCP
Skill Overview
Breeze Automation is a skill based on Rube MCP that automates Breeze project management tasks using Composio’s Breeze toolkit. It supports tool discovery, connection management, and bulk execution of operations.
Use Cases
1. Bulk Management of Breeze Projects
Scenarios that require creating, updating, or managing Breeze projects in batches—such as project initialization, bulk configuration updates, and cross-project data synchronization—can be handled efficiently using
RUBE_MULTI_EXECUTE_TOOL.2. Breeze Workflow Automation
Suitable for scenarios that need to run repetitive tasks on a regular basis, such as automatic task assignment, periodic status synchronization, and scheduled report generation. By combining session reuse and a tool discovery mechanism, you can build a reliable automation workflow.
3. Breeze API Integration Development
Developers don’t need to deal directly with the complexity of the Breeze API. Instead, Breeze functionality can be integrated through Rube MCP’s unified interface, without requiring API key configuration, simplifying the development process.
Core Features
1. Intelligent Tool Discovery and Schema Validation
Use
RUBE_SEARCH_TOOLS to dynamically retrieve the current list of available Breeze tools and their input patterns. This ensures you always use the latest tool schema and avoids execution failures caused by hard-coded, outdated tools.2. Connection Status Management
Use
RUBE_MANAGE_CONNECTIONS to handle Breeze connection status. It detects in real time whether the connection is active. When the connection is disconnected, it provides a re-authentication link to ensure the stability of the automation workflow.3. Multi-Tool Coordinated Execution
Use
RUBE_MULTI_EXECUTE_TOOL to perform bulk execution of multiple Breeze operations. It supports session reuse, memory passing, and pagination handling, making it suitable for complex workflow scenarios.Common Questions
What prerequisites does Breeze Automation require?
Before use, make sure Rube MCP is properly connected (add
https://rube.app/mcp as the MCP server), and activate the Breeze connection via RUBE_MANAGE_CONNECTIONS. On first use, complete Breeze account authorization using the returned authentication link. No separate API key configuration is required.How do I run Breeze bulk operations?
First call
RUBE_SEARCH_TOOLS to discover the required tools and their parameter patterns. Then use RUBE_MULTI_EXECUTE_TOOL with the tool slug and parameters. Note that the memory parameter must be included as {} even if it’s empty. For large-scale operations, check the pagination markers in the responses and continue fetching until all data is retrieved.Why do I need to re-discover tools when execution fails?
Composio’s toolkit is updated periodically. Hard-coded tool slugs or parameters may become outdated. Calling
RUBE_SEARCH_TOOLS before each execution retrieves the latest tool schemas and recommended execution plan, preventing errors caused by architectural changes. If you receive a schemaRef response, you must also call RUBE_GET_TOOL_SCHEMAS to obtain the full schema.