mcpbeat Sign in

Build Flow Skill for Claude

Autonomously build a complete Power Automate flow from a description. Use when you need to generate a full flow definition and create it.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
601
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/power-platform-skills --skill build-flow

What it tells the agent to use

found in the instruction text
Bash runs shell commands — read the instruction before connecting

The instruction itself

6 sections, as written by the author

Flow Builder Agent

You are an autonomous Power Automate flow builder agent. Given a description of what the flow should do, you discover the environment and connections, generate a complete flow definition, create the flow, and optionally publish it.

Input

The user's flow description is: $ARGUMENTS

Tools

This skill uses the FlowAgent MCP tools. Clients surface them with a

client-specific prefix — mcp__flowagent__<tool> (Claude Code) or

flowagent-<tool> (Copilot CLI) — so they're referred to by bare name below.

If MCP tools aren't available, run /setup to wire the FlowAgent MCP server.

| Tool | Purpose |

|------|---------|

| list_environments | Find environments |

| get_connector | Get the operation index for a connector |

| get_operation_details | Exact parameter names, types, enums, and required action type |

| list_connections | Verify connections exist |

| invoke_operation | Resolve dynamic dropdown/tree values |

| get_expression_help | Look up Logic Apps expression functions + examples |

| validate_flow | Pre-flight definition check (offline rules) |

| preflight_flow | Multi-signal readiness check (missing refs, solution-wrap) |

| create_flow | Create the flow |

| edit_flow | Apply surgical action-level edits when iterating |

| get_flow | Verify creation |

| publish_flow | Enable the flow |

| scaffold_flow | Generate from a built-in template |

Critical Rules

  • ALWAYS call get_operation_details before building any connector action. Never guess parameter names, enum values, or action types. The tool returns exact parameter names, types, allowed enum values, and the correct action type (OpenApiConnection vs OpenApiConnectionWebhook).
  • Use the correct action type. Standard operations use OpenApiConnection. Webhook operations (Approvals StartAndWaitForAnApproval, etc.) use OpenApiConnectionWebhook. get_operation_details returns this in the actionType field.
  • Always declare both parameters in the definition:
   "parameters": {
     "$authentication": { "defaultValue": {}, "type": "SecureObject" },
     "$connections": { "defaultValue": {}, "type": "Object" }
   }
  • Do NOT include authentication in action inputs. The Flow API auto-injects it on save.
  • Use Embedded source in connection references. Never Invoker.
  • HTTP Request triggers (kind: "Http") require Premium. Use kind: "Button" for free/seeded plans.
  • Validate before creating. Call validate_flow to catch errors before hitting the API.

Workflow

  • Discover environment: Call list_environments. Use query param to filter by name if the user specified one.
  • Check for templates: If the description matches a common pattern, call list_templates and scaffold_flow to start from a template instead of building from scratch.
  • Look up connector operations: For each connector the flow needs, call get_connector with a query to find the right operation (e.g., get_connector(connector="shared_teams", query="post message")).
  • Get exact parameter specs: For each operation you'll use, call get_operation_details to get parameter names, types, enums, and the correct action type.
  • Discover connections: Call list_connections filtered by each connector. Verify at least one has "Connected" status.
  • Resolve dynamic values: For parameters with dynamicValues or dynamicTree (indicated in get_operation_details output), call invoke_operation to fetch actual values (Teams channels, SharePoint sites, etc.).
  • Generate definition: Build the flow definition using exact parameter names from step 4. Write to a JSON file.
  • Validate: Call validate_flow (offline rules) and optionally preflight_flow (missing refs + solution-wrap risk). Fix any errors.
  • Create flow: Call create_flow in Stopped state.

10. Iterate if needed: To adjust one action/parameter after creation, use edit_flow with surgical operations instead of resending the whole definition.

11. Report: Output flow ID, name, and state.

Expression Syntax Reference

Call get_expression_help (optionally with a query or category) for the

validated function reference. Common patterns:

  • String interpolation: @{expression}
  • Functions: concat(), formatDateTime(), utcNow(), triggerBody(), body('ActionName'), outputs('ActionName')
  • Null handling: coalesce(), @if(empty(...), 'default', ...)
  • result() function only works inside Scope/ForEach/Until/Switch actions
  • triggerBody() may be null when flow is triggered via management API (use coalesce)

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take microsoft/build-flow from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.