microsoft/power-platform-skills is a plugin marketplace containing reusable skills, agents, and commands for developing with Microsoft Power Platform. Developers use it to build and deploy Power Pages sites, model-driven Power Apps, and related solutions through Claude Code or GitHub Copilot. The catalogue entries are the marketplace's included skills, agents, plugins, and other agent components.
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.
npx agentmods add skills/microsoft/power-platform-skills/create-sitenpx skills add microsoft/power-platform-skills --skill create-sitegit clone --depth 1 https://github.com/microsoft/power-platform-skillsWrote 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.
[](https://agentmods.dev/skills/microsoft/power-platform-skills/create-site)<a href="https://agentmods.dev/skills/microsoft/power-platform-skills/create-site"><img src="https://agentmods.dev/badge/skills/microsoft/power-platform-skills/create-site.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00073 | $0.11863 |
| Opus 5 | $0.00036 | $0.05931 |
| Sonnet 5 | $0.00015 | $0.02373 |
| Haiku 4.5 | $0.00007 | $0.01186 |
Grade A, and why
create-site 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 818 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Plugin check: Run
node "${PLUGIN_ROOT}/scripts/check-version.js"— if it outputs a message, show it to the user before proceeding.
Create Power Pages Code Site
Guide the user through creating a complete, production-quality Power Pages code site from initial concept to deployed site. Follow a systematic approach: discover requirements, scaffold and launch immediately, plan components and design, implement with design applied, validate, review, and deploy.
Core Principles
- Use best judgement for design details: Once the user picks an aesthetic direction and mood, make confident decisions about specific fonts, colors, page layouts, and component behavior. Do not ask the user to specify every detail — use the design reference and your own taste to make creative, distinctive choices.
- Use TaskCreate/TaskUpdate: Track all progress throughout all phases — create the todo list upfront with all phases before starting any work.
- Scaffold early, design with intention: Get the dev server running immediately after discovery so the user has something to look at. Then plan the design and features while the scaffold is live — apply the chosen aesthetic during implementation.
- Live preview feedback loop: The dev server MUST be running before any customization begins. Browse the site via Playwright (
browser_navigate+browser_snapshot) to verify every significant change. Do NOT take screenshots — only use accessibility snapshots to check page structure and content. - Keep the scaffold loader in sync with reality: The scaffold loader polls
public/scaffold-status.json. Update this file before everyAskUserQuestion(to raise the "waiting for your input" banner so the user doesn't miss a terminal prompt) and before each implementation step in Phase 5 (so the progress-bar label matches what you're actually doing while the decorative spinner continues its default cycle). See Live Preview Status Protocol. - Use real images: Source high-quality photos from Unsplash wherever pages need visual content — hero sections, feature cards, about pages, backgrounds, etc. Use
https://images.unsplash.com/photo-{id}?w={width}&h={height}&fit=cropURLs with specific photo IDs found viaWebSearch. Never leave image placeholders or broken<img>tags pointing to nonexistent files. - Git checkpoints: Commit after every individual page and component — each gets its own commit so breaking changes can be reverted.
What ships with it
59 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.
- assets/angular/angular.json 1.6 KB
- assets/angular/gitignore 484 B
- assets/angular/package.json 743 B
- assets/angular/powerpages.config.json 187 B
- assets/angular/public/.gitkeep 0 B
- assets/angular/src/app/app.component.ts 365 B runs code
- assets/angular/src/app/app.config.ts 319 B runs code
- assets/angular/src/app/app.routes.ts 278 B runs code
- assets/angular/src/app/components/layout.component.ts 167 B runs code
- assets/angular/src/app/pages/about.component.ts 151 B runs code
- assets/angular/src/app/pages/home.component.ts 24 KB runs code
- assets/angular/src/index.html 665 B
- assets/angular/src/main.ts 208 B runs code
- assets/angular/src/styles.css 333 B
- assets/angular/tsconfig.app.json 153 B
- assets/angular/tsconfig.json 542 B
- assets/astro/astro.config.mjs 139 B runs code
- assets/astro/gitignore 358 B
- assets/astro/package.json 285 B
- assets/astro/powerpages.config.json 165 B
- assets/astro/public/.gitkeep 0 B
- assets/astro/src/components/Footer.astro 70 B
- assets/astro/src/components/Header.astro 70 B
- assets/astro/src/layouts/Layout.astro 908 B
- assets/astro/src/pages/about.astro 87 B
- assets/astro/src/pages/index.astro 22 KB
- assets/astro/src/styles/theme.css 333 B
- assets/astro/tsconfig.json 42 B
- assets/create-site-plan.html 22 KB
- assets/react/gitignore 419 B
- assets/react/index.html 721 B
- assets/react/package.json 488 B
- assets/react/powerpages.config.json 165 B
- assets/react/src/App.tsx 362 B
- assets/react/src/components/Layout.tsx 139 B
- assets/react/src/main.tsx 325 B
- assets/react/src/pages/About.tsx 50 B
- assets/react/src/pages/Home.tsx 24 KB
- assets/react/src/styles/theme.css 333 B
- assets/react/tsconfig.json 509 B
- assets/react/vite.config.ts 169 B runs code
- assets/shared/power-pages-icon.png 22 KB
- assets/vue/env.d.ts 186 B runs code
- assets/vue/gitignore 419 B
- assets/vue/index.html 719 B
- assets/vue/package.json 412 B
- assets/vue/powerpages.config.json 165 B
- assets/vue/src/App.vue 146 B
- assets/vue/src/components/Layout.vue 34 B
- assets/vue/src/main.ts 160 B runs code
- assets/vue/src/pages/About.vue 37 B
- assets/vue/src/pages/Home.vue 23 KB
- assets/vue/src/router/index.ts 319 B runs code
- assets/vue/src/styles/theme.css 333 B
- assets/vue/tsconfig.json 560 B
- assets/vue/vite.config.ts 163 B runs code
- references/design-aesthetics.md 8.9 KB
- scripts/axe-audit.js 3.8 KB runs code
- scripts/validate-site.js 3.5 KB runs code
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.
- yesterday First seen · 818 lines · 73 tokens per session scan A 152ca10d0ca1
create-site is a skill published in the GitHub repository microsoft/power-platform-skills (814 stars, last pushed yesterday), licensed MIT. It adds 73 tokens to every session and 11,863 once invoked, about $0.0004 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-09-03.
Other skills, from other repositories
canvas-apps-ui-gen
Generates paste-ready Power Apps Canvas App YAML. Invoke when the user wants to replicate a UI mockup, improve an existing Canvas app screen, or build a new screen from a text description. Also invoke when the user asks to "improve", "redesign", or "generate YAML" for a Canvas app screen.
portable-text-serialization
Render and serialize Portable Text to React, Svelte, Vue, Astro, HTML, Markdown, and plain text. Use when implementing Portable Text rendering in any frontend framework, building custom serializers for non-standard block types, converting Portable Text to HTML strings server-side, converting Portable Text to Markdown…
ui-development
Build UI pages and extensions for Falcon Foundry apps using React or Vue with the Shoelace design system and Foundry-JS. TRIGGER when user asks to "create a UI page", "build a UI extension", "add a Shoelace component", "call an API from the UI", runs foundry ui pages create or foundry ui run, or needs help with Vite…
visual-debug
Compare reference vs implementation with AE/SSIM/pixel diff; find visual mismatches when UI looks off or doesn't match.
benchmark
Local-only regression / benchmark skill for ui-clone-skills maintainers. Drives the standard ui-reverse-engineering pipeline against the canonical reference site (https://realfood.gov) and records AE/SSIM, iteration count, gate fail counts, and outcome to benchmark/history.csv so prompt / sub-doc / model-version drift…
litestar-inertia
Auto-activate for litestarvite.inertia, InertiaConfig, component=, @inertia, @inertiajs/, createInertiaApp, useForm, usePage, Link, router, or pages/. Not for HTMX.