power-automate

power-automate is a skill for Claude Code from geekfujiwara/CodeAppsDevelopmentStandard. It costs 85 tokens per session (6,997 once invoked), scanned A, original, MIT.

A workflow for building Power Automate cloud flows, Microsoft's online automations, through an agent connection or the Dataverse Web API.

In plain words
What is it for?
It helps create flows, make targeted action changes, diagnose failed runs, resolve connections, and deploy solution-aware flows from a VS Code setup.
Why use it?
It lets an agent create, edit, debug, and connect flows using natural-language instructions when the agent connection is available, with an API fallback when it is not.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions Claude Code.

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.

agentmods
npx agentmods add skills/geekfujiwara/codeappsdevelopmentstandard/power-automate
Any agent
npx skills add geekfujiwara/CodeAppsDevelopmentStandard --skill power-automate
Clone the repo
git clone --depth 1 https://github.com/geekfujiwara/CodeAppsDevelopmentStandard

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/geekfujiwara/codeappsdevelopmentstandard/power-automate.svg)](https://agentmods.dev/skills/geekfujiwara/codeappsdevelopmentstandard/power-automate)
Your own site
<a href="https://agentmods.dev/skills/geekfujiwara/codeappsdevelopmentstandard/power-automate"><img src="https://agentmods.dev/badge/skills/geekfujiwara/codeappsdevelopmentstandard/power-automate.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,997 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00085 $0.06997
Opus 5 $0.00043 $0.03499
Sonnet 5 $0.00017 $0.01399
Haiku 4.5 $0.00009 $0.00700

Measured 2d ago against content hash e18d932a5c00, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

power-automate 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 2d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/add_flow_to_solution.py, scripts/deploy_flow_create_notify.py, scripts/deploy_flow_sp_record.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

r = requests.get(
.github/skills/power-automate/SKILL.md · 605 lines

How it starts

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

Power Automate クラウドフロー構築スキル

クラウドフロー開発は Flow agent MCP SERVER(FlowAgent)を第一選択とする。 MCP が利用できない環境では Dataverse Web API(workflow テーブル)経由のフォールバックを使う。

推奨: Flow agent MCP SERVER を使う(第一選択)

FlowAgent MCP SERVER を使うと、VS Code の GitHub Copilot Chat(エージェントモード)からフローを自然言語で構築・編集・デバッグできる。

比較項目 Flow agent MCP(推奨) Dataverse Web API(フォールバック)
フロー作成 自然言語で指示するだけ Python スクリプトを手書き
編集 アクション単位のサージカル編集 定義 JSON を全置換
デバッグ 失敗ランを自律診断 ログを手動確認
接続解決 自動検索・自動紐づけ PowerApps API + 手動確認
セットアップ スクリプト 1 本で完結 Python 環境 + 複数スコープのトークン

★ FlowAgent MCP サーバー本体(server/mcp.mjs)は Claude Code / GitHub Copilot CLI 用の プラグインマーケットプレイス(microsoft/power-platform-skills)で配布されているが、 VS Code の GitHub Copilot Chat は /plugin marketplace add コマンドや Claude 形式の .mcp.jsonmcpServers キー)を解釈できない。VS Code は独自の MCP クライアントを持ち、 ワークスペース直下の .vscode/mcp.jsonservers キー + type: "stdio")を読む。 そのため本スキルでは microsoft/power-platform-skills リポジトリを git スパースチェックアウトで 直接取得し、VS Code 形式で登録する(プラグインマーケットプレイスは経由しない)。

1. 前提

  • Node.js 20+(FlowAgent v3.0.0 以降は MCP SDK v2 のため Node.js 18 では起動できない)
  • git(microsoft/power-platform-skillsplugins/power-automate を取得するために使用)
  • Azure CLI(az login — MCP サーバー自身の認証に必要。auth_helper.py とは別の資格情報ストア)

2. 認証 + .vscode/mcp.json 生成(auth_helper を使用)

.envDATAVERSE_URL / SOLUTION_NAME を設定してからスクリプトを実行する。 スクリプトが行うこと:

処理 内容
Node.js 確認 20+ でなければ中断
az login 確認 az account list で対象テナントの既存キャッシュを確認 → あれば az account set のみ(対話不要)。無い場合のみ案内を表示
auth_helper 認証 Dataverse / Flow API トークンを取得・キャッシュ(Python スクリプト用)
プラグイン取得 microsoft/power-platform-skills を git スパースチェックアウトで ~/.power-platform-skills に取得(マシン全体で共有・自動更新)
.vscode/mcp.json 生成 既存エントリを保持しつつ FlowAgent を追記(VS Code 形式)
python .github/skills/power-automate/scripts/setup_flow_mcp.py

内容確認だけしたい場合:

python .github/skills/power-automate/scripts/setup_flow_mcp.py --dry-run

.vscode/mcp.json は環境依存パスを含むためコミットしない(.vscode/* は標準 .gitignore で除外済み)。

Read the full file on GitHub · 605 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. 2d ago Changed e18d932a5c00
  2. 6d ago First seen · 605 lines · 85 tokens per session scan A 1a6edbd70584

Subscribe to this mod's changes

power-automate is a skill published in the GitHub repository geekfujiwara/CodeAppsDevelopmentStandard (62 stars, last pushed yesterday), licensed MIT. It adds 85 tokens to every session and 6,997 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens