flowstudio-power-automate-debug

flowstudio-power-automate-debug is a skill for Claude Code from ninihen1/power-automate-mcp-skills. It costs 135 tokens per session (5,000 once invoked), scanned A, a copy of flowstudio-power-automate-debug, MIT.

A guide for investigating failed Power Automate cloud flows, which are online workflows that connect services and run actions automatically.

In plain words
What is it for?
Diagnosing expression errors, missing values, child-flow failures, and other action-level problems through the FlowStudio service.
Why use it?
It exposes the inputs and outputs of individual workflow steps, making it easier to find the actual failing action instead of relying only on an overall error status.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the flowstudio-power-automate plugin — 10 skills, 1 MCP server shipped together

Good fit Diagnosing expression errors, missing values, child-flow failures, and other action-level problems through the FlowStudio service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ninihen1/power-automate-mcp-skills --skill flowstudio-power-automate-debug
Clone the repo
git clone --depth 1 https://github.com/ninihen1/power-automate-mcp-skills

Made for: Claude Code.

Or install flowstudio-power-automate, the plugin that ships this one along with the rest of its 10 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flowstudio-power-automate-debug

README.md
[![agentmods](https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug/github.svg)](https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug)
Your own site
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flowstudio-power-automate-debug

Your own site · 80×15
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-debug.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 135 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,000 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 92% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00135 $0.05000
Opus 5 $0.00068 $0.02500
Sonnet 5 $0.00027 $0.01000
Haiku 4.5 $0.00014 $0.00500

Measured 7d ago against content hash 8c9e09076790, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

flowstudio-power-automate-debug scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, urllib.request
Origin

This is a copy

92% identical to flowstudio-power-automate-debug — 34 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

awesome-copilot/skills/flowstudio-power-automate-debug/SKILL.md · 495 lines

How it starts

The opening of the file, as written. The whole thing — 495 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Power Automate Debugging with FlowStudio MCP

A step-by-step diagnostic process for investigating failing Power Automate cloud flows through the FlowStudio MCP server.

Real debugging examples: Expression error in child flow | Data entry, not a flow bug | Null value crashes child flow

Prerequisite: A FlowStudio MCP server must be reachable with a valid JWT. See the flowstudio-power-automate-mcp skill for connection setup. Subscribe at https://mcp.flowstudio.app


Source of Truth

Always call list_skills / tool_search first to confirm available tool names and parameter schemas. Tool names and parameters may change between server versions. This skill covers response shapes, behavioral notes, and diagnostic patterns — things tool schemas cannot tell you. If this document disagrees with tool_search or a real API response, the API wins.


Python Helper

import json, urllib.request

MCP_URL   = "https://mcp.flowstudio.app/mcp"
MCP_TOKEN = "<YOUR_JWT_TOKEN>"

def mcp(tool, **kwargs):
    payload = json.dumps({"jsonrpc": "2.0", "id": 1, "method": "tools/call",
                          "params": {"name": tool, "arguments": kwargs}}).encode()
    req = urllib.request.Request(MCP_URL, data=payload,
        headers={"x-api-key": MCP_TOKEN, "Content-Type": "application/json",
                 "User-Agent": "FlowStudio-MCP/1.0"})
    try:
        resp = urllib.request.urlopen(req, timeout=120)
    except urllib.error.HTTPError as e:
        body = e.read().decode("utf-8", errors="replace")
        raise RuntimeError(f"MCP HTTP {e.code}: {body[:200]}") from e
    raw = json.loads(resp.read())
    if "error" in raw:
        raise RuntimeError(f"MCP error: {json.dumps(raw['error'])}")
    return json.loads(raw["result"]["content"][0]["text"])

ENV = "<environment-id>"   # e.g. Default-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

Read the full file on GitHub · 495 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago Changed · +2 lines 8c9e09076790
  2. 12d ago First seen · 493 lines · 135 tokens per session scan A 64ba2a778d1d

Subscribe to this mod's changes

flowstudio-power-automate-debug is a skill published in the GitHub repository ninihen1/power-automate-mcp-skills (32 stars, last pushed 8d ago), licensed MIT. It adds 135 tokens to every session and 5,000 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 92% identical to flowstudio-power-automate-debug, differing in 34 lines, and is treated as a copy.

Related

Other skills, from other repositories

setting-up-support-slack-locally

Connect a real Slack workspace to local PostHog Conversations (the SupportHog Slack app) so Slack messages become support tickets and replies post back. Use when the user wants to test the conversations Slack integration locally, hits "Support Slack OAuth client ID is not configured", gets a white screen or "Network…

PostHog/ai-plugin · 132 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens

convex-performance-audit

Audits Convex performance for reads, subscriptions, write contention, and function limits. Use for slow features, insights findings, OCC conflicts, or read amplification.

openclaw/clawhub · 38 tokens

convex-insights

Query a running Convex app's logs + health in natural language (official MCP): failures, slow/expensive functions, deploy causality — scoped, evidence-backed, with a dashboard deep link.

openclaw/clawhub · 45 tokens

ssl-proxy-troubleshoot

Systematic workflow for troubleshooting SSL/proxy connectivity issues with government websites.

HKUDS/OpenSpace · 20 tokens

diagnose-backend-bug

Diagnose a bounded backend or multi-service failure from GitHub Issues, Jira, Aone, user-provided exports, logs, traces, responses, stack traces, or job records. Use when a service, API, RPC, worker, queue, CLI, or scheduled job bug needs correlation through the project's existing observability route before repair; do…

QoderAI/better-harness · 87 tokens