
from power-platform-skills453
Run a server-side security scan of a deployed Power Pages site and produce a plain-language summary of findings and follow-ups.
Performs a live security scan of a deployed Power Pages site, fetches the latest report, and produces a clear, plain-language summary of findings by severity. The skill automates checking scan state, starting or attaching to a scan, polling for completion, transforming report JSON, and recommending follow-up actions mapped to downstream skills. It is read-only: it does not change site configuration.
Use when you want a quick security health check of a live Power Pages site, to see whether there are vulnerabilities, to fetch the most recent completed scan report, or to run a new scan when none exists. Suitable for site owners, devops, or reviewers who need an accessible summary rather than raw scan data.
Best used by agents with Bash/Python/Node tool access (Claude Code / Copilot-style agents) that can run repository scripts and read outputs.
Microsoft's Power Pages security scan skill — triggers server-side vulnerability scans on deployed Power Pages sites and produces plain-language summaries with severity-bucketed findings. Four well-structured Node.js scripts handle API calls (start scan, poll status, fetch report, transform findings) with proper error handling and CLI argument parsing. Scripts couldn't be executed (runner skipped .js files) but static review shows clean, production-quality code. No security concerns — no credential leakage, no destructive commands, no suspicious network calls.
node (scripts are .js but runner doesn't support .js extension)power-platform-api (external module not bundled)Well-crafted skill from microsoft/power-platform-skills. Strong separation of concerns between SKILL.md (workflow/gates/constraints) and scripts (API interaction). SKILL.md is long but thorough — includes task tracking groups, approval gates, context-aware action recommendations, and clear constraints (read-only, plain language). The only real gap is that the external dependency can't be audited and scripts couldn't be run-tested.
Add Teams Connector
Adds and configures a Microsoft Teams connector in Power Apps code apps to send messages, post to channels, and integrate Teams workflows.
Backend Integration (Power Pages)
Analyzes a business need for a Power Pages site and recommends whether to implement Web API, AI Web API, Server Logic, Cloud Flows, or a combination — then rout
Power Automate Flow Debugger
Diagnoses and fixes failed Power Automate flow runs using a systematic triage process and root cause classification.