power-automate-debug

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

A debugging guide for failed Microsoft Power Automate cloud flows, which are online workflows that connect services and automate tasks.

In plain words
What is it for?
Use it to investigate failed runs, expression errors, null values, and incorrect data in flow steps. A reachable FlowStudio MCP server and valid JWT are required.
Why use it?
Power Automate often shows only a general failure status, making it hard to find the step that actually broke. This guide helps inspect the inputs and outputs of individual actions through FlowStudio.

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 Use it to investigate failed runs, expression errors, null values, and incorrect data in flow steps. A reachable FlowStudio MCP server and valid JWT are required.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ninihen1/power-automate-mcp-skills/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 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 power-automate-debug

README.md
[![agentmods](https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/power-automate-debug/github.svg)](https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/power-automate-debug)
Your own site
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/power-automate-debug"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/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 power-automate-debug

Your own site · 80×15
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/power-automate-debug"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/power-automate-debug.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,992 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 89% 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.00133 $0.04992
Opus 5 $0.00067 $0.02496
Sonnet 5 $0.00027 $0.00998
Haiku 4.5 $0.00013 $0.00499

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

Security

Grade A, and why

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

89% identical to flowstudio-power-automate-debug — 42 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.

skills/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 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 9b4eec11a616
  2. 12d ago First seen · 493 lines · 133 tokens per session scan A 1af315ddecfc

Subscribe to this mod's changes

power-automate-debug is a skill published in the GitHub repository ninihen1/power-automate-mcp-skills (32 stars, last pushed 7d ago), licensed MIT. It adds 133 tokens to every session and 4,992 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 89% identical to flowstudio-power-automate-debug, differing in 42 lines, and is treated as a copy.

Related

Other skills, from other repositories

canary-watch

Post-deploy monitoring and canary health verification.

Jamkris/everything-gemini-code · 13 tokens

gke-node-notready

Diagnoses GKE nodes reporting NotReady or Unknown status by inspecting node conditions, events, kubelet/containerd logs, and node metrics, then proposing safe remediations. Use when nodes show NotReady, when the kubelet stops posting node status, or when workloads are evicted or stuck Pending due to node health. Don't…

google/skills · 112 tokens

gke-ai-troubleshooting-jobset-interruption

Diagnoses GKE JobSet interruptions, restarts, and preemptions for AI/ML training workloads autonomously. Use when troubleshooting JobSet restart loops, spot VM preemptions, node readiness failures, host VM issues, or coordinator worker crashes. Don't use for general GKE cluster creation, basic workload deployment, or…

google/skills · 83 tokens

gke-workload-troubleshooting

Diagnoses GKE workload failures (CrashLoopBackOff, OOMKilled, ImagePullBackOff, Pending, etc.) via logs and events. Use when pods fail to start or crash repeatedly. Don't use for GKE cluster infrastructure provisioning, node pool creation, or non-Kubernetes Google Cloud services.

google/skills · 69 tokens

gke-ai-troubleshooting-handle-disruption-gpu-tpu

Diagnoses, predicts, and mitigates node disruptions during Compute Engine host maintenance and hardware or software maintenance events for GPU and TPU workloads on GKE. Use when diagnosing node disruptions, predicting host maintenance events on GPU/TPU nodepools, inspecting node interruption PromQL metrics, auditing…

google/skills · 117 tokens

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens