power-automate-api-client

power-automate-api-client is a skill for Claude Code, Codex from Wals-pro/claude-power-automate. It costs 54 tokens per session (1,166 once invoked), scanned A, original, MIT.

A command-line skill for working with Microsoft Power Automate cloud flows, which are automated workflows hosted by Microsoft. It supports managing, deploying, running, and diagnosing those flows.

In plain words
What is it for?
Pulling and comparing flows, creating or deploying them, starting or stopping runs, reviewing run history, diagnosing actions, and replacing a hosted MCP connection with local tools.
Why use it?
It gives flow changes a controlled process: targets are resolved without storing OAuth tokens, deployments are previewed first, and live deployments are backed up and verified.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Pulling and comparing flows, creating or deploying them, starting or stopping runs, reviewing run history, diagnosing actions, and replacing a hosted MCP connection with local tools.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wals-pro/claude-power-automate/power-automate-api-client
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 Wals-pro/claude-power-automate --skill power-automate-api-client
Clone the repo
git clone --depth 1 https://github.com/Wals-pro/claude-power-automate

Made for: Claude Code, Codex.

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-api-client

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/wals-pro/claude-power-automate/power-automate-api-client"><img src="https://agentmods.dev/badge/skills/wals-pro/claude-power-automate/power-automate-api-client.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,166 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00054 $0.01166
Opus 5 $0.00027 $0.00583
Sonnet 5 $0.00011 $0.00233
Haiku 4.5 $0.00005 $0.00117

Measured 11d ago against content hash ce01f80a2268, 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-api-client scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/power-automate-api-client/SKILL.md · 106 lines

How it starts

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

Power Automate API Client

Use this skill when changing or diagnosing Power Automate cloud flows from the command line. The default tool is the power-automate CLI, not a hosted MCP service.

Rules

  • Do not use hosted MCP services for deployment unless explicitly requested.
  • Never store OAuth access tokens. Short-lived tokens come only from an existing az login session and are never persisted.
  • Resolve the non-secret target (environment_id, flow_id, dataverse_url, entra_tenant_id) in this order: CLI flags, then POWER_AUTOMATE_* environment variables, then a profiles.json file. See "Target Resolution" below.
  • Authenticate with an existing az login session unless a future task adds service-principal support.
  • Always run deploy --dry-run before a real deploy.
  • A real deploy must create a live backup and then run verify.
  • New flows: create posts a category-5 cloud flow into the DEV environment. Always pass --solution (the unmanaged solution, e.g. <your-solution-unique-name>) so it ships via the DEV->PROD pipeline. Create in DEV only; never create/deploy on PROD — PROD changes flow exclusively through the deployment pipeline.
  • Use power-automate-docs for Microsoft documentation routing.
  • Use power-automate-run-forensics before changing a flow to fix a runtime incident.
  • Use power-automate-expression-syntax and power-automate-action-configuration before editing definition.

Common Commands

power-automate status --profile acme
power-automate pull --profile acme --output ./flow.json
power-automate diff --profile acme flows/<flow>.json --unified
power-automate deploy --profile acme flows/<flow>.json --dry-run
power-automate deploy --profile acme flows/<flow>.json
power-automate create --profile acme flows/<flow>.json --name "<display>" --solution <your-solution-unique-name> [--activate] [--dry-run]
power-automate verify --profile acme flows/<flow>.json
power-automate environments --profile acme
power-automate flows --profile acme
power-automate flows --profile acme --all-environments
power-automate runs --profile acme --top 10
power-automate runs --profile acme --all-environments --top 5
power-automate runs --profile acme --all-environments --json
power-automate run-detail --profile acme <run-id>

Read the full file on GitHub · 106 lines

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. 11d ago First seen · 106 lines · 54 tokens per session scan A ce01f80a2268

Subscribe to this mod's changes

power-automate-api-client is a skill published in the GitHub repository Wals-pro/claude-power-automate (11 stars, last pushed 2d ago), licensed MIT. It adds 54 tokens to every session and 1,166 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-cli

Use the Azure CLI to manage subscriptions, resource groups, AKS, App Service, Key Vault, and role assignments.

alivirgo/Major-AI-Skills · 27 tokens

claw-admin

Claw system administration: service management, IM connections, logs, cron, and workspace diagnostics. Use when the user asks to manage claw services, connect/disconnect IM platforms, view logs, or perform system-wide operations.

x-cmd/x-cmd · 48 tokens

x-nets

Enhanced netstat module with cached data and structured output. View network connections, routing tables, and interface statistics in interactive or TSV/CSV formats. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 69 tokens

latchbio-integration

Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.

synthetic-sciences/openscience · 45 tokens

x-theme

Change terminal command line prompt theme. Globally manage the display style of all x-cmd interactive components. Supports multiple theme vendors: theme, starship, ohmyposh. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 74 tokens

x-arp

Display ARP cache table with MAC vendor lookup and suspicious entry detection. Supports CSV, TSV, and TUI output. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 64 tokens