$npx -y skills add microsoft/power-platform-skills --skill browse-flowsBrowse Power Automate environments and flows interactively. Use when the user wants to browse, list, or explore their flows and environments.
| 1 | # Browse Environments and Flows |
| 2 | |
| 3 | Interactive skill for discovering Power Automate environments and flows. |
| 4 | |
| 5 | ## Tools |
| 6 | |
| 7 | This skill uses the **FlowAgent MCP tools**, referred to by bare name (clients |
| 8 | surface them as `mcp__flowagent__<tool>` in Claude Code or `flowagent-<tool>` in |
| 9 | Copilot CLI). If MCP tools aren't available, run `/setup` to wire the FlowAgent |
| 10 | MCP server. |
| 11 | |
| 12 | ## Steps |
| 13 | |
| 14 | 1. **Resolve environment**: |
| 15 | - If `$ARGUMENTS` contains an environment ID, use it. |
| 16 | - Otherwise call `list_environments` (use `query` to filter if user mentioned a name). |
| 17 | - If multiple environments, use AskUserQuestion to let user pick. |
| 18 | |
| 19 | 2. **List flows**: Call `list_flows` on the selected environment. Use `name` param if user is looking for something specific. |
| 20 | |
| 21 | 3. **Present results** in a table: |
| 22 | |
| 23 | | # | Name | State | Trigger | Actions | Last Modified | |
| 24 | |---|------|-------|---------|---------|---------------| |
| 25 | |
| 26 | 4. **Offer next steps** via AskUserQuestion: |
| 27 | - View flow details (`get_flow`) |
| 28 | - Check run history (`get_run_history`) |
| 29 | - Debug a failed flow (use `/debug-flow`) |
| 30 | - Create a new flow (use `/create-flow`) |