cloud-workflow
Installation
SKILL.md
Cloud Workflow
Design and orchestrate event-driven automation workflows with intelligent agent coordination and message queue processing.
Quick Start
// Create a CI/CD workflow
const workflow = await mcp__flow-nexus__workflow_create({
name: "CI/CD Pipeline",
description: "Automated testing and deployment",
steps: [
{ id: "test", action: "run_tests", agent: "tester" },
{ id: "build", action: "build_app", agent: "builder" },
{ id: "deploy", action: "deploy_prod", agent: "deployer" }
],
triggers: ["push_to_main", "manual_trigger"]
});