add-data-source
Guide the user to add a data source, connection, or API connector to a Canvas App via Power Apps Studio, then verify and continue. USE WHEN the user asks to…
Set up Power Automate CLI prerequisites. Use when the user is new, something isn't working, or they need help getting started.
$ npx -y skills add microsoft/power-platform-skills --skill setup --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/setupContext preview
The summary Claude sees to decide when to auto-load this skill.
Set up Power Automate CLI prerequisites. Use when the user is new, something isn't working, or they need help getting started.
name: setup description: Set up Power Automate CLI prerequisites. Use when the user is new, something isn't working, or they need help getting started. user-invocable: true allowed-tools: Bash, Read, Write, Glob, Grep, AskUserQuestion, mcp__flowagent__list_environments, mcp__flowagent__set_current_env, mcp__flowagent__get_current_env, mcp__flowagent__resolve_environment, mcp__flowagent__list_flows, mcp__flowagent__get_flow, mcp__flowagent__create_flow, mcp__flowagent__update_flow, mcp__flowagent__edit_flow, mcp__flowagent__copy_flow, mcp__flowagent__publish_flow, mcp__flowagent__disable_flow, mcp__flowagent__delete_flow, mcp__flowagent__run_flow, mcp__flowagent__get_run_history, mcp__flowagent__get_run_details, mcp__flowagent__get_run_actions, mcp__flowagent__get_run_action_repetitions, mcp__flowagent__cancel_run, mcp__flowagent__cancel_all_runs, mcp__flowagent__resubmit_run, mcp__flowagent__diagnose_run, mcp__flowagent__list_connections, mcp__flowagent__list_connectors, mcp__flowagent__get_connector, mcp__flowagent__search_operations, mcp__flowagent__get_operation_details, mcp__flowagent__pick_or_create_connection, mcp__flowagent__resolve_refs, mcp__flowagent__resolve_params, mcp__flowagent__scaffold_flow, mcp__flowagent__list_templates, mcp__flowagent__validate_flow, mcp__flowagent__preflight_flow, mcp__flowagent__smoke_test, mcp__flowagent__get_expression_help, mcp__flowagent__list_desktop_flows, mcp__flowagent__list_machine_groups, mcp__flowagent__run_desktop_flow, mcp__flowagent__get_flow_context, mcp__flowagent__set_current_flow, mcp__flowagent__clear_current_flow, mcp__flowagent__invoke_operation, mcp__flowagent__get_past_trigger_inputs, mcp__flowagent__test_connection, mcp__flowagent__fix_connection, mcp__flowagent__delete_connection, mcp__flowagent__preview_update, mcp__flowagent__get_backup, mcp__flowagent__list_backups, mcp__flowagent__restore_backup, mcp__flowagent__list_trigger_emulators model: opus
You are helping a non-technical user get the Power Automate plugin working for the first time. Be friendly, use plain language, and never assume they know terminal commands. Walk them through each step one at a time.
Run silently:
node --version 2>&1
Run silently:
az --version 2>&1
Check if they're already logged in:
az account show --output json 2>&1
az login
This will open their browser. Tell them: "A browser window should open. Sign in with your work account — the one you use for Power Automate." After login completes, confirm it worked by running `az account show` again.
**Verify token access** — this catches permission issues early.
First find out which Azure cloud they're on, because the Power Automate resource URL differs per cloud and the commercial one cannot be assumed (GCC High / DoD tenants will fail against it):
az cloud show --query name -o tsv
| `az cloud show` | Power Automate resource | |---|---| | `AzureCloud` (commercial) | `https://service.flow.microsoft.com` | | `AzureCloud` + GCC tenant | `https://gov.service.flow.microsoft.us` | | `AzureUSGovernment` (GCC High) | `https://high.service.flow.microsoft.us` | | `AzureUSGovernment` (DoD) | `https://dod.service.flow.microsoft.us` |
`az cloud show` cannot distinguish commercial from GCC, or GCC High from DoD — for those, set `PA_CLOUD=gcc` / `PA_CLOUD=dod` explicitly.
Then request a token for the matching resource, e.g. for commercial:
az account get-access-token --resource https://service.flow.microsoft.com --output json 2>&1
FlowAgent itself auto-detects the cloud the same way; you can override the detection with `PA_CLOUD=commercial|gcc|gcchigh|dod`.
PAC CLI app registration isn't preauthorized in those tenants. They need to register their own Azure AD app with Power Platform Connectivity scopes and set `PA_CLIENT_ID=<app-id>`. Flow management (list/create/run) works without it.
The plugin talks to Power Automate through the **FlowAgent MCP server**, which is registered as `flowagent` in the plugin's `.mcp.json` and started automatically. `.mcp.json` loads the bundled `server/mcp.mjs` through a small Node bootstrap that resolves the plugin's installation directory (`PLUGIN_ROOT`, else `CLAUDE_PLUGIN_ROOT`, els
Official agent skills/plugins for Power Platform development by Microsoft.
Repo: microsoft/power-platform-skills
Guide the user to add a data source, connection, or API connector to a Canvas App via Power Apps Studio, then verify and continue. USE WHEN the user asks to…
Creates or edits a Power Apps Canvas App through the Canvas Authoring MCP coauthoring session. Handles new app generation, direct targeted edits, complex…
Configure the Canvas Authoring MCP server for the current coauthoring session. USE WHEN "configure MCP", "set up MCP server", "MCP not working", "connect…
Use this skill when the user wants to "report a bug", "file an issue", "report an issue", "submit a bug report", or report any problem with the canvas-apps…
Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.
Adds any Power Platform connector to a Power Apps code app. Generic fallback for connectors not covered by a specific skill.