
Add Cloud Flow
Solo builders use add-cloud-flow to connect and orchestrate cloud services and workflows in their applications.
Install
npx skills add https://github.com/microsoft/power-platform-skills --skill add-cloud-flowWhat is this skill?
- Connect cloud services into your app
- Visual workflow orchestration
- Streamline backend integrations
Adoption & trust: 64 installs on skills.sh; 349 GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Azure Deploymicrosoft/azure-skills
Azure Preparemicrosoft/azure-skills
Azure Storagemicrosoft/azure-skills
Azure Validatemicrosoft/azure-skills
Appinsights Instrumentationmicrosoft/azure-skills
Azure Resource Lookupmicrosoft/azure-skills
Journey fit
Primary fit
This tool belongs in the build phase because it helps developers implement cloud integrations and data flow architecture into their products. Cloud integrations are a core part of connecting backend systems and external services, which is essential during the integrations subphase of building.
Common Questions / FAQ
Is Add Cloud Flow safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Add Cloud Flow
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width,initial-scale=1.0"/> <title>__PLAN_TITLE__ - __SITE_NAME__</title> <style> :root{ --bg:#faf9f8; --surface:#ffffff; --surface2:#f3f2f1; --border:#e1dfdd; --border-light:#c8c6c4; --text:#323130; --text-dim:#605e5c; --text-bright:#201f1e; --accent:#0078d4; --accent-bg:#0078d40a; --accent-border:#0078d425; --pass:#107c10; --pass-bg:#107c100a; --pass-border:#107c1020; --high:#ca5010; --high-bg:#ca50100a; --high-border:#ca501020; --purple:#8764b8; --purple-bg:#8764b80a; --purple-border:#8764b820; --mono:'Cascadia Code','Consolas',monospace; --sans:'Segoe UI','Segoe UI Web (West European)',-apple-system,system-ui,sans-serif; --radius:8px; --radius-sm:4px; --shadow-4:0 1.6px 3.6px 0 rgba(0,0,0,0.132),0 0.3px 0.9px 0 rgba(0,0,0,0.108); } *{margin:0;padding:0;box-sizing:border-box;} html{scroll-behavior:smooth;} body{font-family:var(--sans);background:var(--bg);color:var(--text);font-size:14px;line-height:1.6;} .topbar{z-index:100;background:var(--surface);box-shadow:var(--shadow-4);padding:14px 28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;} .topbar-left{display:flex;align-items:center;gap:14px;} .logo{width:36px;height:36px;object-fit:contain;display:block;flex-shrink:0;} .topbar-title{font-size:16px;font-weight:700;color:var(--text-bright);} .topbar-sub{font-size:11px;color:var(--text-dim);margin-top:1px;} .layout{display:flex;min-height:calc(100vh - 65px);} .sidebar{width:200px;background:var(--surface);border-right:1px solid var(--border);padding:20px 0;flex-shrink:0;} .nav-btn{display:flex;align-items:center;gap:10px;width:100%;padding:11px 22px;background:none;border:none;border-left:2px solid transparent;color:var(--text-dim);font-size:13px;font-weight:500;cursor:pointer;font-family:var(--sans);text-align:left;transition:all 0.15s;} .nav-btn:hover{color:var(--text);background:var(--surface2);} .nav-btn.active{color:var(--accent);font-weight:600;border-left-color:var(--accent);background:var(--accent-bg);} .nav-btn .nav-icon{font-size:15px;opacity:0.5;width:18px;text-align:center;} .nav-btn.active .nav-icon{opacity:0.9;} .content{flex:1;padding:32px 40px 72px;max-width:960px;} .section{display:none;} .section.active{display:block;animation:fadeIn 0.3s ease;} @keyframes fadeIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}} h2{font-size:21px;font-weight:800;color:var(--text-bright);letter-spacing:-0.3px;margin-bottom:5px;} .section-desc{font-size:13px;color:var(--text-dim);margin-bottom:20px;} .section-desc code{color:var(--accent);background:var(--accent-bg);padding:1px 6px;border-radius:3px;font-family:var(--mono);font-size:12px;} h3{font-size:15px;font-weight:700;color:var(--text-bright);margin-top:24px;margin-bottom:12px;} .summary-box{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:22px;margin-bottom:22px;font-size:14px;color:var(--text);line-height:1.75;} .stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:24px;} .stat-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px 16px;text-align:center;position:relative;overflow:hidden;box-shadow:var(--shadow-4);} .stat-card::after{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:40px;height:2px;border-radius:0 0 2px 2px;} .stat-card:nth-child(1)::after{background:var(--accent);} .stat-card:nth-child(2)::after{background:var(--pass);} .stat-card:nth-child(3)::after{background:var(--purple);} .stat-num{font-size:30px;font-weight:800;font-family:var(--mono);line-height:1;} .stat-label{font-size:10px;color:var(--text-dim);text-transform:uppercase;letter-spacing:1px;margin-top:6px;} .card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px 20px;margin-bottom:10px;transition:box-shadow 0.2s,border-c