From power-automate
This skill should be used when the user asks to "list flows", "show my flows", "what flows exist", "list cloud flows", "show Power Automate flows", "check existing flows", or wants to see Power Automate cloud flows in their Dataverse environment.
How this skill is triggered — by the user, by Claude, or both
Slash command
/power-automate:list-flowssonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Plugin check**: Run `node "${CLAUDE_PLUGIN_ROOT}/scripts/check-version.js"` — if it outputs a message, show it to the user before proceeding.
Plugin check: Run
node "${CLAUDE_PLUGIN_ROOT}/scripts/check-version.js"— if it outputs a message, show it to the user before proceeding.
List existing Power Automate cloud flows in the connected Dataverse environment. Optionally filter by name.
Initial request: $ARGUMENTS
Goal: Ensure PAC CLI and Azure CLI are authenticated
Actions:
Create todo list with all 3 phases.
Run pac org who to check connection:
pac org who
Extract Environment Name, Org URL, Environment ID.
Verify Azure CLI auth:
az account show --query user.name -o tsv
If either is not authenticated: Guide through authentication (see /deploy-flow Phase 2).
Output: Authenticated and environment identified
Goal: Retrieve and display flows from the environment
Actions:
Run the list script. If $ARGUMENTS includes a filter, pass it:
node "${CLAUDE_PLUGIN_ROOT}/scripts/list-flows.js" --environment-id "<env-id>" [--filter "<filter>"]
Parse the JSON output.
If no flows found:
"No cloud flows found in <ENV_NAME>."
Suggest:
/create-flowto create a new flow.
Output: Flow list retrieved
Goal: Present the flows in a readable format
Actions:
Present flows in a table:
Cloud Flows in [ENV_NAME]
# Display Name State Created Last Modified 1 Daily - Set New Users to BST Started 2026-04-10 2026-04-10 2 ... ... ... ... Total: [count] flow(s)
Suggest next steps:
/create-flow — Create a new flow/deploy-flow — Deploy a flow JSON fileOutput: Formatted flow list presented
| Task subject | activeForm | Description |
|---|---|---|
| Verify connection | Verifying connection | Check PAC CLI and Azure CLI authentication |
| List flows | Listing flows | Query Flow API for cloud flows |
| Summarize results | Summarizing results | Present formatted flow list |
Begin with Phase 1: Verify Connection
npx claudepluginhub jsl1995/power-automate-skill --plugin power-automateGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.