{"id":"0679aca4-11b7-454a-a19d-8d7256d7a313","shortId":"KKR8TZ","kind":"skill","title":"flowstudio-power-automate-monitoring","tagline":">-","description":"# Power Automate Monitoring with FlowStudio MCP\n\nMonitor flow health, track failure rates, and inventory tenant assets through\nthe FlowStudio MCP **cached store** — fast reads, no PA API rate limits, and\nenriched with governance metadata and remediation hints.\n\n> **⚠️ Pro+ subscription required.** This skill calls `store_*` tools that\n> only work for FlowStudio for Teams or MCP Pro+ subscribers.\n>\n> **If the user does not have Pro+ access:** the first `store_*` tool call\n> will return a 403/404 error. When that happens:\n> 1. STOP calling store tools\n> 2. Tell the user this feature requires a Pro+ subscription\n> 3. Link them to https://mcp.flowstudio.app/pricing\n> 4. If their question can be answered with live tools (e.g. \"list flows in\n>    one environment\"), offer to use the `flowstudio-power-automate-mcp` skill instead\n>\n> **Discovery:** load tool schemas via `tool_search` rather than `tools/list` —\n> call with `query: \"select:list_store_flows,get_store_flow_summary\"` for the\n> common monitoring tools, or load the full set with `query: \"skill:governance\"`\n> (the server's governance bundle covers most monitoring reads too — this skill\n> and `flowstudio-power-automate-governance` share the underlying tool family). This skill\n> covers response shapes, behavioral notes, and workflow patterns — things\n> `tool_search` cannot tell you. If this document disagrees with a real API\n> response, the API wins.\n\n---\n\n## How Monitoring Works\n\nFlow Studio scans the Power Automate API daily for each subscriber and caches\nthe results. There are two levels:\n\n- **All flows** get metadata scanned: definition, connections, owners, trigger\n  type, and aggregate run statistics (`runPeriodTotal`, `runPeriodFailRate`,\n  etc.). Environments, apps, connections, and makers are also scanned.\n- **Monitored flows** (`monitor: true`) additionally get per-run detail:\n  individual run records with status, duration, failed action names, and\n  remediation hints. This is what populates `get_store_flow_runs` and\n  `get_store_flow_summary`.\n\n**Data freshness:** Check the `scanned` field on `get_store_flow` to see when\na flow was last scanned. If stale, the scanning pipeline may not be running.\n\n**Enabling monitoring:** Set `monitor: true` via `update_store_flow` or the\nFlow Studio for Teams app\n([how to select flows](https://learn.flowstudio.app/teams-monitoring)).\n\n**Designating critical flows:** Use `update_store_flow` with `critical=true`\non business-critical flows. This enables the governance skill's notification\nrule management to auto-configure failure alerts on critical flows.\n\n---\n\n## Tools\n\n| Tool | Purpose |\n|---|---|\n| `list_store_flows` | List flows with failure rates and monitoring filters |\n| `get_store_flow` | Full cached record: run stats, owners, tier, connections, definition (`triggerUrl` field included) |\n| `get_store_flow_summary` | Aggregated run stats: success/fail rate, avg/max duration |\n| `get_store_flow_runs` | Per-run history with duration, status, failed actions, remediation (filter `status=\"Failed\"` for errors-only view) |\n| `update_store_flow` | Set monitor flag, notification rules, tags, governance metadata |\n| `list_store_environments` | All Power Platform environments |\n| `list_store_connections` | All connections |\n| `list_store_makers` | All makers (citizen developers) |\n| `get_store_maker` | Maker detail: flow/app counts, licenses, account status |\n| `list_store_power_apps` | All Power Apps canvas apps |\n\n> For start/stop, use `set_live_flow_state` from the `monitor-flow` bundle\n> (`tool_search query: \"select:set_live_flow_state\"`) — the cache resyncs on\n> the next scan. The previous `set_store_flow_state` convenience wrapper is\n> deprecated.\n\n---\n\n## Store vs Live\n\n| Question | Use Store | Use Live |\n|---|---|---|\n| How many flows are failing? | `list_store_flows` | — |\n| What's the fail rate over 30 days? | `get_store_flow_summary` | — |\n| Show error history for a flow | `get_store_flow_runs` (filter `status=\"Failed\"`) | — |\n| Who built this flow? | `get_store_flow` → parse `owners` | — |\n| Read the full flow definition | `get_store_flow` has it (JSON string) | `get_live_flow` (structured) |\n| Inspect action inputs/outputs from a run | — | `get_live_flow_run_action_outputs` |\n| Resubmit a failed run | — | `resubmit_live_flow_run` |\n\n> Store tools answer \"what happened?\" and \"how healthy is it?\"\n> Live tools answer \"what exactly went wrong?\" and \"fix it now.\"\n\n> If `get_store_flow_runs` or `get_store_flow_summary` return empty results,\n> check: (1) is `monitor: true` on the flow? and (2) is the `scanned` field\n> recent? Use `get_store_flow` to verify both.\n\n---\n\n## Response Shapes\n\n### `list_store_flows`\n\nDirect array. Filters: `monitor` (bool), `rule_notify_onfail` (bool),\n`rule_notify_onmissingdays` (bool).\n\n```json\n[\n  {\n    \"id\": \"Default-<envGuid>.<flowGuid>\",\n    \"displayName\": \"Stripe subscription updated\",\n    \"state\": \"Started\",\n    \"triggerType\": \"Request\",\n    \"triggerUrl\": \"https://...\",\n    \"tags\": [\"#operations\", \"#sensitive\"],\n    \"environmentName\": \"Default-aaaaaaaa-...\",\n    \"monitor\": true,\n    \"runPeriodFailRate\": 0.012,\n    \"runPeriodTotal\": 82,\n    \"createdTime\": \"2025-06-24T01:20:53Z\",\n    \"lastModifiedTime\": \"2025-06-24T03:51:03Z\"\n  }\n]\n```\n\n> `id` format: `Default-<envGuid>.<flowGuid>`. Split on first `.` to get\n> `environmentName` and `flowName`.\n>\n> `triggerUrl` and `tags` are optional. Some entries are sparse (just `id` +\n> `monitor`) — skip entries without `displayName`.\n>\n> Tags on `list_store_flows` are auto-extracted from the flow's `description`\n> field (maker hashtags like `#operations`). Tags written via\n> `update_store_flow(tags=...)` are stored separately and only visible on\n> `get_store_flow` — they do NOT appear in the list response.\n\n### `get_store_flow`\n\nFull cached record. Key fields:\n\n| Category | Fields |\n|---|---|\n| Identity | `name`, `displayName`, `environmentName`, `state`, `triggerType`, `triggerKind`, `tier`, `sharingType` |\n| Run stats | `runPeriodTotal`, `runPeriodFails`, `runPeriodSuccess`, `runPeriodFailRate`, `runPeriodSuccessRate`, `runPeriodDurationAverage`/`Max`/`Min` (milliseconds), `runTotal`, `runFails`, `runFirst`, `runLast`, `runToday` |\n| Governance | `monitor` (bool), `rule_notify_onfail` (bool), `rule_notify_onmissingdays` (number), `rule_notify_email` (string), `log_notify_onfail` (ISO), `description`, `tags` |\n| Freshness | `scanned` (ISO), `nextScan` (ISO) |\n| Lifecycle | `deleted` (bool), `deletedTime` (ISO) |\n| JSON strings | `actions`, `connections`, `owners`, `complexity`, `definition`, `createdBy`, `security`, `triggers`, `referencedResources`, `runError` — all require `json.loads()` to parse |\n\n> Duration fields (`runPeriodDurationAverage`, `Max`, `Min`) are in\n> **milliseconds**. Divide by 1000 for seconds.\n>\n> `runError` contains the last run error as a JSON string. Parse it:\n> `json.loads(record[\"runError\"])` — returns `{}` when no error.\n\n### `get_store_flow_summary`\n\nAggregated stats over a time window (default: last 7 days).\n\n```json\n{\n  \"flowKey\": \"Default-<envGuid>.<flowGuid>\",\n  \"windowStart\": null,\n  \"windowEnd\": null,\n  \"totalRuns\": 82,\n  \"successRuns\": 81,\n  \"failRuns\": 1,\n  \"successRate\": 0.988,\n  \"failRate\": 0.012,\n  \"averageDurationSeconds\": 2.877,\n  \"maxDurationSeconds\": 9.433,\n  \"firstFailRunRemediation\": null,\n  \"firstFailRunUrl\": null\n}\n```\n\n> Returns all zeros when no run data exists for this flow in the window.\n> Use `startTime` and `endTime` (ISO 8601) parameters to change the window.\n\n### `get_store_flow_runs`\n\nDirect array of cached run records. Parameters: `startTime`, `endTime`,\n`status` (array — pass `[\"Failed\"]` for an errors-only view, `[\"Succeeded\"]`,\nor omit for all).\n\n> Returns `[]` when no run data exists in the window.\n\n### Trigger URL\n\nRead the `triggerUrl` field directly from `get_store_flow` (cached) or\n`get_live_flow` (live). It is `null` for non-HTTP triggers.\n\n### Starting / stopping a flow\n\nUse `set_live_flow_state` from the `monitor-flow` server bundle. The cache\ncatches up on the next daily scan; if you need cache freshness sooner, call\n`get_live_flow` after the state change to confirm and let the next scan sync.\n\n### `update_store_flow`\n\nUpdates governance metadata. Only provided fields are updated (merge).\nReturns the full updated record (same shape as `get_store_flow`).\n\nSettable fields: `monitor` (bool), `rule_notify_onfail` (bool),\n`rule_notify_onmissingdays` (number, 0=disabled),\n`rule_notify_email` (comma-separated), `description`, `tags`,\n`businessImpact`, `businessJustification`, `businessValue`,\n`ownerTeam`, `ownerBusinessUnit`, `supportGroup`, `supportEmail`,\n`critical` (bool), `tier`, `security`.\n\n### `list_store_environments`\n\nDirect array.\n\n```json\n[\n  {\n    \"id\": \"Default-aaaaaaaa-...\",\n    \"displayName\": \"Flow Studio (default)\",\n    \"sku\": \"Default\",\n    \"type\": \"NotSpecified\",\n    \"location\": \"australia\",\n    \"isDefault\": true,\n    \"isAdmin\": true,\n    \"isManagedEnvironment\": false,\n    \"createdTime\": \"2017-01-18T01:06:46Z\"\n  }\n]\n```\n\n> `sku` values: `Default`, `Production`, `Developer`, `Sandbox`, `Teams`.\n\n### `list_store_connections`\n\nDirect array. Can be very large (1500+ items).\n\n```json\n[\n  {\n    \"id\": \"<environmentId>.<connectionId>\",\n    \"displayName\": \"user@contoso.com\",\n    \"createdBy\": \"{\\\"id\\\":\\\"...\\\",\\\"displayName\\\":\\\"...\\\",\\\"email\\\":\\\"...\\\"}\",\n    \"environmentName\": \"...\",\n    \"statuses\": \"[{\\\"status\\\":\\\"Connected\\\"}]\"\n  }\n]\n```\n\n> `createdBy` and `statuses` are **JSON strings** — parse with `json.loads()`.\n\n### `list_store_makers`\n\nDirect array.\n\n```json\n[\n  {\n    \"id\": \"09dbe02f-...\",\n    \"displayName\": \"Sample Maker\",\n    \"mail\": \"maker@contoso.com\",\n    \"deleted\": false,\n    \"ownerFlowCount\": 199,\n    \"ownerAppCount\": 209,\n    \"userIsServicePrinciple\": false\n  }\n]\n```\n\n> Deleted makers have `deleted: true` and no `displayName`/`mail` fields.\n\n### `get_store_maker`\n\nFull maker record. Key fields: `displayName`, `mail`, `userPrincipalName`,\n`ownerFlowCount`, `ownerAppCount`, `accountEnabled`, `deleted`, `country`,\n`firstFlow`, `firstFlowCreatedTime`, `lastFlowCreatedTime`,\n`firstPowerApp`, `lastPowerAppCreatedTime`,\n`licenses` (JSON string of M365 SKUs).\n\n### `list_store_power_apps`\n\nDirect array.\n\n```json\n[\n  {\n    \"id\": \"<environmentId>.<appId>\",\n    \"displayName\": \"My App\",\n    \"environmentName\": \"...\",\n    \"ownerId\": \"09dbe02f-...\",\n    \"ownerName\": \"Catherine Han\",\n    \"appType\": \"Canvas\",\n    \"sharedUsersCount\": 0,\n    \"createdTime\": \"2023-08-18T01:06:22Z\",\n    \"lastModifiedTime\": \"2023-08-18T01:06:22Z\",\n    \"lastPublishTime\": \"2023-08-18T01:06:22Z\"\n  }\n]\n```\n\n---\n\n## Common Workflows\n\n### Find unhealthy flows\n\n```\n1. list_store_flows\n2. Filter where runPeriodFailRate > 0.1 and runPeriodTotal >= 5\n3. Sort by runPeriodFailRate descending\n4. For each: get_store_flow for full detail\n```\n\n### Check a specific flow's health\n\n```\n1. get_store_flow → check scanned (freshness), runPeriodFailRate, runPeriodTotal\n2. get_store_flow_summary → aggregated stats with optional time window\n3. get_store_flow_runs(status=[\"Failed\"]) → per-run failure detail with remediation hints\n4. If deeper diagnosis needed → switch to live tools:\n   get_live_flow_runs → get_live_flow_run_action_outputs\n```\n\n### Enable monitoring on a flow\n\n```\n1. update_store_flow with monitor=true\n2. Optionally set rule_notify_onfail=true, rule_notify_email=\"user@domain.com\"\n3. Run data will appear after the next daily scan\n```\n\n### Daily health check\n\n```\n1. list_store_flows\n2. Flag flows with runPeriodFailRate > 0.2 and runPeriodTotal >= 3\n3. Flag monitored flows with state=\"Stopped\" (may indicate auto-suspension)\n4. For critical failures → get_store_flow_runs(status=[\"Failed\"]) for remediation hints\n```\n\n### Maker audit\n\n```\n1. list_store_makers\n2. Identify deleted accounts still owning flows (deleted=true, ownerFlowCount > 0)\n3. get_store_maker for full detail on specific users\n```\n\n### Inventory\n\n```\n1. list_store_environments → environment count, SKUs, locations\n2. list_store_flows → flow count by state, trigger type, fail rate\n3. list_store_power_apps → app count, owners, sharing\n4. list_store_connections → connection count per environment\n```\n\n---\n\n## Related Skills\n\n- `flowstudio-power-automate-mcp` — Foundation skill: connection setup, MCP helper, tool discovery\n- `flowstudio-power-automate-debug` — Deep diagnosis with action-level inputs/outputs (live API)\n- `flowstudio-power-automate-build` — Build and deploy flow definitions\n- `flowstudio-power-automate-governance` — Governance metadata, tagging, notification rules, CoE patterns","tags":["flowstudio","power","automate","monitoring","awesome","copilot","github","agent-skills","agents","custom-agents","github-copilot","hacktoberfest"],"capabilities":["skill","source-github","skill-flowstudio-power-automate-monitoring","topic-agent-skills","topic-agents","topic-awesome","topic-custom-agents","topic-github-copilot","topic-hacktoberfest","topic-prompt-engineering"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/flowstudio-power-automate-monitoring","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add github/awesome-copilot","source_repo":"https://github.com/github/awesome-copilot","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 33270 github stars · SKILL.md body (12,586 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:52:11.934Z","embedding":null,"createdAt":"2026-04-18T21:49:25.211Z","updatedAt":"2026-05-18T18:52:11.934Z","lastSeenAt":"2026-05-18T18:52:11.934Z","tsv":"'-01':1174 '-06':719,726 '-08':1299,1306,1313 '-18':1175,1300,1307,1314 '-24':720,727 '/pricing':104 '/teams-monitoring)).':349 '0':1125,1296,1499 '0.012':714,947 '0.1':1331 '0.2':1454 '0.988':945 '03z':730 '06':1177,1302,1309,1316 '09dbe02f':1225,1289 '1':83,653,943,1323,1355,1414,1445,1485,1511 '1000':895 '1500':1195 '199':1234 '2':88,661,1327,1364,1421,1449,1489,1519 '2.877':949 '20':722 '2017':1173 '2023':1298,1305,1312 '2025':718,725 '209':1236 '22z':1303,1310,1317 '3':98,1335,1375,1432,1457,1458,1500,1531 '30':554 '4':105,1340,1390,1470,1540 '403/404':78 '46z':1178 '5':1334 '51':729 '53z':723 '7':929 '81':941 '82':716,939 '8601':975 '9.433':951 'aaaaaaaa':710,1155 'access':69 'account':483,1492 'accounten':1262 'action':282,435,599,608,870,1407,1572 'action-level':1571 'addit':269 'aggreg':251,416,921,1369 'alert':379 'also':263 'answer':111,620,630 'api':32,213,216,227,1576 'app':258,342,488,491,493,1279,1286,1535,1536 'appear':797,1436 'apptyp':1293 'array':680,986,995,1150,1190,1222,1281 'asset':21 'audit':1484 'australia':1165 'auto':376,765,1468 'auto-configur':375 'auto-extract':764 'auto-suspens':1467 'autom':4,7,128,183,226,1553,1566,1580,1590 'averagedurationsecond':948 'avg/max':421 'behavior':195 'bool':683,687,691,839,843,865,1116,1120,1143 'build':1581,1582 'built':574 'bundl':171,506,1058 'busi':362 'business-crit':361 'businessimpact':1135 'businessjustif':1136 'businessvalu':1137 'cach':26,233,401,516,806,988,1029,1060,1071 'call':48,74,85,142,1074 'cannot':203 'canva':492,1294 'catch':1061 'categori':810 'catherin':1291 'chang':978,1081 'check':302,652,1349,1359,1444 'citizen':473 'coe':1597 'comma':1131 'comma-separ':1130 'common':155,1318 'complex':873 'configur':377 'confirm':1083 'connect':246,259,407,465,467,871,1188,1208,1543,1544,1557 'contain':899 'conveni':528 'count':481,1516,1524,1537,1545 'countri':1264 'cover':172,192 'createdbi':875,1201,1209 'createdtim':717,1172,1297 'critic':351,358,363,381,1142,1472 'daili':228,1066,1440,1442 'data':300,962,1013,1434 'day':555,930 'debug':1567 'deep':1568 'deeper':1392 'default':694,709,733,927,933,1154,1159,1161,1181 'default-aaaaaaaa':708,1153 'definit':245,408,586,874,1586 'delet':864,1231,1239,1242,1263,1491,1496 'deletedtim':866 'deploy':1584 'deprec':531 'descend':1339 'descript':771,856,1133 'design':350 'detail':274,479,1348,1386,1506 'develop':474,1183 'diagnosi':1393,1569 'direct':679,985,1024,1149,1189,1221,1280 'disabl':1126 'disagre':209 'discoveri':132,1562 'displaynam':695,757,814,1156,1199,1203,1226,1246,1257,1284 'divid':893 'document':208 'durat':280,422,432,885 'e.g':115 'email':850,1129,1204,1430 'empti':650 'enabl':327,366,1409 'endtim':973,993 'enrich':36 'entri':748,755 'environ':120,257,458,462,1148,1514,1515,1547 'environmentnam':707,739,815,1205,1287 'error':79,442,561,903,916,1001 'errors-on':441,1000 'etc':256 'exact':632 'exist':963,1014 'extract':766 'fail':281,434,439,544,551,572,612,997,1381,1479,1529 'failrat':946 'failrun':942 'failur':16,378,392,1385,1473 'fals':1171,1232,1238 'famili':189 'fast':28 'featur':93 'field':305,410,665,772,809,811,886,1023,1098,1114,1248,1256 'filter':396,437,570,681,1328 'find':1320 'first':71,736 'firstfailrunremedi':952 'firstfailrunurl':954 'firstflow':1265 'firstflowcreatedtim':1266 'firstpowerapp':1268 'fix':636 'flag':450,1450,1459 'flow':13,117,148,151,221,241,266,293,298,309,314,335,338,346,352,356,364,382,388,390,399,414,425,447,499,505,513,526,542,547,558,565,568,576,579,585,589,596,606,616,642,647,659,670,678,762,769,782,793,804,919,966,983,1028,1033,1046,1050,1056,1077,1092,1112,1157,1322,1326,1345,1352,1358,1367,1378,1401,1405,1413,1417,1448,1451,1461,1476,1495,1522,1523,1585 'flow/app':480 'flowkey':932 'flownam':741 'flowstudio':2,10,24,55,126,181,1551,1564,1578,1588 'flowstudio-power-automate-build':1577 'flowstudio-power-automate-debug':1563 'flowstudio-power-automate-govern':180,1587 'flowstudio-power-automate-mcp':125,1550 'flowstudio-power-automate-monitor':1 'format':732 'foundat':1555 'fresh':301,858,1072,1361 'full':161,400,584,805,1104,1252,1347,1505 'get':149,242,270,291,296,307,397,412,423,475,556,566,577,587,594,604,640,645,668,738,791,802,917,981,1026,1031,1075,1110,1249,1343,1356,1365,1376,1399,1403,1474,1501 'govern':38,166,170,184,368,454,837,1094,1591,1592 'han':1292 'happen':82,622 'hashtag':774 'health':14,1354,1443 'healthi':625 'helper':1560 'hint':42,286,1389,1482 'histori':430,562 'http':1041 'id':693,731,752,1152,1198,1202,1224,1283 'ident':812 'identifi':1490 'includ':411 'indic':1466 'individu':275 'inputs/outputs':600,1574 'inspect':598 'instead':131 'inventori':19,1510 'isadmin':1168 'isdefault':1166 'ismanagedenviron':1170 'iso':855,860,862,867,974 'item':1196 'json':592,692,868,906,931,1151,1197,1213,1223,1271,1282 'json.loads':882,910,1217 'key':808,1255 'larg':1194 'last':316,901,928 'lastflowcreatedtim':1267 'lastmodifiedtim':724,1304 'lastpowerappcreatedtim':1269 'lastpublishtim':1311 'learn.flowstudio.app':348 'learn.flowstudio.app/teams-monitoring)).':347 'let':1085 'level':239,1573 'licens':482,1270 'lifecycl':863 'like':775 'limit':34 'link':99 'list':116,146,386,389,456,463,468,485,545,676,760,800,1146,1186,1218,1276,1324,1446,1486,1512,1520,1532,1541 'live':113,498,512,534,539,595,605,615,628,1032,1034,1049,1076,1397,1400,1404,1575 'load':133,159 'locat':1164,1518 'log':852 'm365':1274 'mail':1229,1247,1258 'maker':261,470,472,477,478,773,1220,1228,1240,1251,1253,1483,1488,1503 'maker@contoso.com':1230 'manag':373 'mani':541 'max':829,888 'maxdurationsecond':950 'may':323,1465 'mcp':11,25,59,129,1554,1559 'mcp.flowstudio.app':103 'mcp.flowstudio.app/pricing':102 'merg':1101 'metadata':39,243,455,1095,1593 'millisecond':831,892 'min':830,889 'monitor':5,8,12,156,174,219,265,267,328,330,395,449,504,655,682,711,753,838,1055,1115,1410,1419,1460 'monitor-flow':503,1054 'name':283,813 'need':1070,1394 'next':520,1065,1087,1439 'nextscan':861 'non':1040 'non-http':1039 'note':196 'notif':371,451,1595 'notifi':685,689,841,845,849,853,1118,1122,1128,1425,1429 'notspecifi':1163 'null':935,937,953,955,1037 'number':847,1124 'offer':121 'omit':1006 'one':119 'onfail':686,842,854,1119,1426 'onmissingday':690,846,1123 'oper':705,776 'option':746,1372,1422 'output':609,1408 'own':1494 'owner':247,405,581,872,1538 'ownerappcount':1235,1261 'ownerbusinessunit':1139 'ownerflowcount':1233,1260,1498 'ownerid':1288 'ownernam':1290 'ownerteam':1138 'pa':31 'paramet':976,991 'pars':580,884,908,1215 'pass':996 'pattern':199,1598 'per':272,428,1383,1546 'per-run':271,427,1382 'pipelin':322 'platform':461 'popul':290 'power':3,6,127,182,225,460,487,490,1278,1534,1552,1565,1579,1589 'previous':523 'pro':43,60,68,96 'product':1182 'provid':1097 'purpos':385 'queri':144,164,509 'question':108,535 'rate':17,33,393,420,552,1530 'rather':139 'read':29,175,582,1020 'real':212 'recent':666 'record':277,402,807,911,990,1106,1254 'referencedresourc':878 'relat':1548 'remedi':41,285,436,1388,1481 'request':702 'requir':45,94,881 'respons':193,214,674,801 'resubmit':610,614 'result':235,651 'resync':517 'return':76,649,913,956,1009,1102 'rule':372,452,684,688,840,844,848,1117,1121,1127,1424,1428,1596 'run':252,273,276,294,326,403,417,426,429,569,603,607,613,617,643,821,902,961,984,989,1012,1379,1384,1402,1406,1433,1477 'runerror':879,898,912 'runfail':833 'runfirst':834 'runlast':835 'runperioddurationaverag':828,887 'runperiodfail':824 'runperiodfailr':255,713,826,1330,1338,1362,1453 'runperiodsuccess':825 'runperiodsuccessr':827 'runperiodtot':254,715,823,1333,1363,1456 'runtoday':836 'runtot':832 'sampl':1227 'sandbox':1184 'scan':223,244,264,304,317,321,521,664,859,1067,1088,1360,1441 'schema':135 'search':138,202,508 'second':897 'secur':876,1145 'see':311 'select':145,345,510 'sensit':706 'separ':786,1132 'server':168,1057 'set':162,329,448,497,511,524,1048,1423 'settabl':1113 'setup':1558 'shape':194,675,1108 'share':185,1539 'shareduserscount':1295 'sharingtyp':820 'show':560 'skill':47,130,165,178,191,369,1549,1556 'skill-flowstudio-power-automate-monitoring' 'skip':754 'sku':1160,1179 'skus':1275,1517 'sooner':1073 'sort':1336 'source-github' 'spars':750 'specif':1351,1508 'split':734 'stale':319 'start':700,1043 'start/stop':495 'starttim':971,992 'stat':404,418,822,922,1370 'state':500,514,527,699,816,1051,1080,1463,1526 'statist':253 'status':279,433,438,484,571,994,1206,1207,1211,1380,1478 'still':1493 'stop':84,1044,1464 'store':27,49,72,86,147,150,292,297,308,334,355,387,398,413,424,446,457,464,469,476,486,525,532,537,546,557,567,578,588,618,641,646,669,677,761,781,785,792,803,918,982,1027,1091,1111,1147,1187,1219,1250,1277,1325,1344,1357,1366,1377,1416,1447,1475,1487,1502,1513,1521,1533,1542 'string':593,851,869,907,1214,1272 'stripe':696 'structur':597 'studio':222,339,1158 'subscrib':61,231 'subscript':44,97,697 'succeed':1004 'success/fail':419 'successr':944 'successrun':940 'summari':152,299,415,559,648,920,1368 'supportemail':1141 'supportgroup':1140 'suspens':1469 'switch':1395 'sync':1089 't01':721,1176,1301,1308,1315 't03':728 'tag':453,704,744,758,777,783,857,1134,1594 'team':57,341,1185 'tell':89,204 'tenant':20 'thing':200 'tier':406,819,1144 'time':925,1373 'tool':50,73,87,114,134,137,157,188,201,383,384,507,619,629,1398,1561 'tools/list':141 'topic-agent-skills' 'topic-agents' 'topic-awesome' 'topic-custom-agents' 'topic-github-copilot' 'topic-hacktoberfest' 'topic-prompt-engineering' 'totalrun':938 'track':15 'trigger':248,877,1018,1042,1527 'triggerkind':818 'triggertyp':701,817 'triggerurl':409,703,742,1022 'true':268,331,359,656,712,1167,1169,1243,1420,1427,1497 'two':238 'type':249,1162,1528 'under':187 'unhealthi':1321 'updat':333,354,445,698,780,1090,1093,1100,1105,1415 'url':1019 'use':123,353,496,536,538,667,970,1047 'user':64,91,1509 'user@contoso.com':1200 'user@domain.com':1431 'userisserviceprincipl':1237 'userprincipalnam':1259 'valu':1180 'verifi':672 'via':136,332,779 'view':444,1003 'visibl':789 'vs':533 'went':633 'win':217 'window':926,969,980,1017,1374 'windowend':936 'windowstart':934 'without':756 'work':53,220 'workflow':198,1319 'wrapper':529 'written':778 'wrong':634 'zero':958","prices":[{"id":"1127ea8d-786f-43a5-8039-b1dd90e31c02","listingId":"0679aca4-11b7-454a-a19d-8d7256d7a313","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"github","category":"awesome-copilot","install_from":"skills.sh"},"createdAt":"2026-04-18T21:49:25.211Z"}],"sources":[{"listingId":"0679aca4-11b7-454a-a19d-8d7256d7a313","source":"github","sourceId":"github/awesome-copilot/flowstudio-power-automate-monitoring","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/flowstudio-power-automate-monitoring","isPrimary":false,"firstSeenAt":"2026-04-18T21:49:25.211Z","lastSeenAt":"2026-05-18T18:52:11.934Z"},{"listingId":"0679aca4-11b7-454a-a19d-8d7256d7a313","source":"skills_sh","sourceId":"github/awesome-copilot/flowstudio-power-automate-monitoring","sourceUrl":"https://skills.sh/github/awesome-copilot/flowstudio-power-automate-monitoring","isPrimary":true,"firstSeenAt":"2026-05-07T20:41:16.148Z","lastSeenAt":"2026-05-07T22:40:53.131Z"}],"details":{"listingId":"0679aca4-11b7-454a-a19d-8d7256d7a313","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"flowstudio-power-automate-monitoring","github":{"repo":"github/awesome-copilot","stars":33270,"topics":["agent-skills","agents","ai","awesome","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"license":"mit","html_url":"https://github.com/github/awesome-copilot","pushed_at":"2026-05-18T01:26:59Z","description":"Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.","skill_md_sha":"bbd1a24867ffd8de8d12b19c820345523ca993e0","skill_md_path":"skills/flowstudio-power-automate-monitoring/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/github/awesome-copilot/tree/main/skills/flowstudio-power-automate-monitoring"},"layout":"multi","source":"github","category":"awesome-copilot","frontmatter":{"name":"flowstudio-power-automate-monitoring","description":">-"},"skills_sh_url":"https://skills.sh/github/awesome-copilot/flowstudio-power-automate-monitoring"},"updatedAt":"2026-05-18T18:52:11.934Z"}}