[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-amg-check-pg-flex":3,"mdc--fzol4r-key":34,"related-repo-azure-amg-check-pg-flex":1479,"related-org-azure-amg-check-pg-flex":1548},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":24,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"amg-check-pg-flex","monitor PostgreSQL Flexible Server health","Fleet-wide PostgreSQL Flexible Server health check — scans CPU, memory, storage, IOPS, disk bandwidth, and connection metrics across all servers, then deep-dives into abnormal servers with resource logs and correlation analysis. Tracks known issues across sessions via persistent report. Uses AMG-MCP pulse check for Tier 1 triage, then batched Azure Monitor queries for Tier 2 investigation. On first run, auto-discovers datasource UID and prompts for subscription ID.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"azure","Azure (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fazure.png","Azure",[13,17,18,21],{"name":14,"slug":15,"type":16},"Observability","observability","tag",{"name":11,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"Monitoring","monitoring",{"name":22,"slug":23,"type":16},"PostgreSQL","postgresql",2,"https:\u002F\u002Fgithub.com\u002FAzure\u002Famg-skills","2026-07-12T08:19:54.767507",null,[],{"repoUrl":25,"stars":24,"forks":24,"topics":30,"description":31},[],"Agent skills for Azure Managed Grafana","https:\u002F\u002Fgithub.com\u002FAzure\u002Famg-skills\u002Ftree\u002FHEAD\u002Fplugins\u002Famg-toolkit\u002Fskills\u002Famg-check-pg-flex","---\nname: amg-check-pg-flex\ndescription: Fleet-wide PostgreSQL Flexible Server health check — scans CPU, memory, storage, IOPS, disk bandwidth, and connection metrics across all servers, then deep-dives into abnormal servers with resource logs and correlation analysis. Tracks known issues across sessions via persistent report. Uses AMG-MCP pulse check for Tier 1 triage, then batched Azure Monitor queries for Tier 2 investigation. On first run, auto-discovers datasource UID and prompts for subscription ID.\nargument-hint: \"[time-range, e.g. 7d] [subscription-id]\"\ndisable-model-invocation: true\neffort: max\nallowed-tools: mcp__amg__amgmcp_pulse_check mcp__amg__amgmcp_query_resource_graph mcp__amg__amgmcp_query_resource_metric mcp__amg__amgmcp_query_resource_metric_definition mcp__amg__amgmcp_query_resource_log mcp__amg__amgmcp_datasource_list mcp__amg__amgmcp_query_activity_log Bash(node *) Glob Read Write Edit\n---\n\n## Runtime Context\n- Current UTC time: !`date -u +%Y-%m-%dT%H:%M:%SZ`\n- Config: !`cat memory\u002Famg-check-pg-flex\u002Fconfig.md 2>\u002Fdev\u002Fnull || echo \"NOT_CONFIGURED\"`\n- Prior report: !`[ -f memory\u002Famg-check-pg-flex\u002Freport.md ] && echo \"exists ($(grep -c '^### BUG-' memory\u002Famg-check-pg-flex\u002Freport.md) bugs documented)\" || echo \"not found\"`\n- Arguments: time-range=$0, subscription-override=$1\n\n> **Known Issues**: Before presenting findings, cross-reference results against `memory\u002Famg-check-pg-flex\u002Freport.md`.\n\n# AMG PostgreSQL Flexible Server Health Check\n\n## Critical Constraints\n\n- **No subagents for MCP.** The Agent tool cannot access MCP tools — all MCP calls must be made from the main context.\n- **Scan every resource.** No sampling or early stopping.\n- **Time format**: ISO 8601 UTC with explicit `from`\u002F`to` — NEVER use `timespan` (it causes errors).\n- **Parallelism cap**: 30 concurrent MCP calls per batch. Reduce to 4-5 if rate-limited.\n- **Result too large**: Save to temp file and parse outside the context window. Prefer `node -e \"...\"` if installed; otherwise fall back to `python -c \"...\"`, `jq`, or `pwsh -Command \"...\"`. Bash permission for the chosen interpreter will be prompted on first use.\n\n## Progress Tracking\n\nUpdate checkboxes as you complete each phase:\n\n- [ ] Phase 1a: Datasource validated\n- [ ] Phase 1b: Servers discovered (N=?)\n- [ ] Phase 1c: Non-ready servers investigated (if any)\n- [ ] Phase 2: Pulse check completed (N scanned, N findings)\n- [ ] Phase 3: Deep metrics for abnormal servers\n- [ ] Phase 4: Resource logs for abnormal servers\n- [ ] Report presented\n- [ ] Known issues updated in `memory\u002Famg-check-pg-flex\u002Freport.md`\n\n## Configuration\n\n**If Config shows `NOT_CONFIGURED`**: Run [First-Run Setup](#first-run-setup) at the bottom of this file, then return here.\n\n**If Config is populated**: Extract the datasource UID and subscription ID from the pre-loaded Runtime Context above and use them for all queries. Use `$1` as the subscription override if provided.\n\n- **Datasource UID**: from `## Azure Monitor Datasource` > `UID`\n- **Subscription ID**: from `## Subscription` (or `$1` if provided)\n- **Resource Type**: `microsoft.dbforpostgresql\u002Fflexibleservers` (lowercase)\n- **ARM ID template**: `\u002Fsubscriptions\u002F{SUB}\u002FresourceGroups\u002F{RG}\u002Fproviders\u002FMicrosoft.DBforPostgreSQL\u002FflexibleServers\u002F{name}`\n\n## Time Range\n\nDefault: 7 days for metrics, 24 hours for logs. Override with `$0` (e.g., `3d`). Keep log queries to 1-2 days to avoid timeouts.\n\n---\n\n## Workflow\n\n### Phase 1a: Validate Datasource\n\nCall `amgmcp_datasource_list` (no parameters). Find entry with `type == \"grafana-azure-monitor-datasource\"`.\n\n- Matches configured UID → proceed.\n- Different UID → update `memory\u002Famg-check-pg-flex\u002Fconfig.md`, warn user, use new UID.\n- Not found → abort with error.\n\n### Phase 1b: Discover All PostgreSQL Flexible Servers\n\n```\nazureMonitorDatasourceUid: {DATASOURCE_UID}\nquery: |\n  resources\n  | where type == 'microsoft.dbforpostgresql\u002Fflexibleservers'\n  | where subscriptionId == '{SUBSCRIPTION_ID}'\n  | project name, resourceGroup, location, properties.state, sku.name, sku.tier\n  | order by location asc, name asc\n```\n\nIf multiple subscriptions are configured, query each separately and merge results. Derive region summary by counting servers per `location`. Flag servers not in \"Ready\" state. Stop if zero servers found.\n\n### Phase 1c: Activity Log for Non-Ready Servers\n\nIf any servers are not in \"Ready\" state, query the activity log for up to 3 of them:\n\n```\nazureMonitorDatasourceUid: {DATASOURCE_UID}\nscope: \u002Fsubscriptions\u002F{SUB}\u002FresourceGroups\u002F{RG}\u002Fproviders\u002FMicrosoft.DBforPostgreSQL\u002FflexibleServers\u002F{name}\nstartTime: now-3d\nendTime: now\nselect: eventTimestamp,operationName,status,caller,subStatus\n```\n\nIf the response exceeds 500 KB, retry with `startTime: now-6h`. Summarize: operations performed, caller type (service principal vs human), success\u002Fin-progress status, likely cause.\n\n### Phase 2: Tier 1 — Fleet-Wide Pulse Check\n\n```\nazureMonitorDatasourceUid: {DATASOURCE_UID}\npastDays: 7\nscenarios: pg_flex\n```\n\nScans all servers across 5 scenarios: `pg_flex_cpu`, `pg_flex_memory`, `pg_flex_storage`, `pg_flex_disk_iops`, `pg_flex_disk_bandwidth`.\n\n**Before moving to Phase 3, verify:**\n1. `scanSummary.totalResourcesScanned` matches Phase 1 server count.\n2. All 5 scenarios show `status: \"completed\"` in `scenarioResults`.\n3. If `errors` non-empty, retry affected scenarios individually (e.g., `scenarios: pg_flex_cpu`).\n4. If >10% servers missing, fall back to batched `amgmcp_query_resource_metric` for unscanned servers.\n\n**Severity thresholds (findings array):**\n\n| Severity | CPU   | Memory | Storage | Disk IOPS | Disk BW |\n|----------|-------|--------|---------|-----------|---------|\n| Critical | >90%  | >90%   | >85%    | >90%      | >90%    |\n| Warning  | >80%  | >80%   | >75%    | >80%      | >80%    |\n\n### Phase 3: Tier 2 — Deep Metrics for Abnormal Servers\n\nRead **[reference\u002Fphase3-deep-dive.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Fphase3-deep-dive.md)** before starting Phase 3. It contains:\n- Core metrics table (always query) and secondary metrics table (query on anomaly)\n- Batch strategy: up to 50 comma-separated resource IDs per call, up to 5 parallel metric calls\n- Correlation analysis patterns (use ultrathink)\n\n### Phase 4: Resource Logs for Abnormal Servers\n\nRead **[reference\u002Fphase4-resource-logs.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Fphase4-resource-logs.md)** before starting Phase 4. It contains:\n- 5 KQL query templates: error distribution, top errors, warning messages, log volume, session duration\n- Time filter rules (always required to avoid timeouts)\n\n---\n\n## Output\n\nPresent the report using the structure in **[reference\u002Foutput-format.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Foutput-format.md)**.\n\n**Classification:**\n\n| Severity    | Criteria |\n|-------------|----------|\n| **CRITICAL** | `is_db_alive` sustained 0, OR CPU max >90%, OR Memory max >90%, OR Storage >85% |\n| **WARNING**  | CPU avg >80%, Memory avg >85%, sustained >60% for 6h+, spike >30pp in 1h, Storage >70%, `connections_failed` >0, `deadlocks` >0, disk IOPS\u002FBW >80%, transactionIDs >1B, longest query >300s, replication delay >30s |\n| **HEALTHY**  | All metrics within normal ranges |\n\n## Update Known Issues\n\nAfter presenting findings, update `memory\u002Famg-check-pg-flex\u002Freport.md`:\n\n1. Read the current file.\n2. Rebuild the Resource Inventory table at the end: every server, full ARM ID, region, SKU, state. Group by region, sorted alphabetically.\n3. Update existing bug status from today's telemetry (resolved \u002F improving \u002F worsening \u002F still active).\n4. Add new bugs with: severity, server name, region, metric evidence, log evidence, root cause, recommended action.\n5. Update the \"Updated\" date header.\n\nOnly add genuine issues: sustained high utilization, crash patterns, connection storms, persistent errors. Skip transient single-hour spikes or expected maintenance windows.\n\n## Error Handling\n\nSee **[reference\u002Ferror-handling.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Ferror-handling.md)** for the full recovery table.\n\n## Analysis Guidance\n\n- Known patterns, signals, root causes: [reference\u002Fanalysis-patterns.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Fanalysis-patterns.md)\n- Optional deep-dive KQL queries: [reference\u002Fdeep-dive-queries.md](${CLAUDE_SKILL_DIR}\u002Freference\u002Fdeep-dive-queries.md)\n\n---\n\n## First-Run Setup\n\nRun only when Config shows `NOT_CONFIGURED`. After completing, return to the [Workflow](#workflow) above.\n\n**1. Discover Datasource UID**: Call `amgmcp_datasource_list`. Filter `type == \"grafana-azure-monitor-datasource\"`. Prefer `uid == \"azure-monitor-oob\"` if multiple match. Abort if zero match.\n\n**2. Discover Subscription ID**: Run this Resource Graph query to list all subscriptions with PostgreSQL Flexible Servers, then present the results as a table and ask the user which subscription(s) to use:\n```\nresources\n| where type == 'microsoft.dbforpostgresql\u002Fflexibleservers'\n| join kind=inner (\n    resourcecontainers\n    | where type == 'microsoft.resources\u002Fsubscriptions'\n    | project subscriptionId, subscriptionName=name\n) on subscriptionId\n| summarize ServerCount=count() by subscriptionId, subscriptionName\n| order by ServerCount desc\n```\n\nPresent the results as a table with columns: **Subscription Name**, **Subscription ID**, **Server Count**. Then ask the user: *\"Which subscription ID(s) should I configure for this health check?\"*\n\n**3. Write config**: Write `memory\u002Famg-check-pg-flex\u002Fconfig.md`:\n```markdown\n# amg-check-pg-flex Configuration\n\nUser-specific values for the PostgreSQL Flexible Server health check skill.\nThis file is auto-generated on first run and can be edited manually.\n\n## Azure Monitor Datasource\n- **UID**: {discovered_uid}\n- **Name**: {discovered_name}\n\n## Subscription\n- {subscription_id}\n```\n\n**4. Confirm**: Show the resolved config and ask for confirmation before proceeding.\n",{"data":35,"body":40},{"name":4,"description":6,"argument-hint":36,"disable-model-invocation":37,"effort":38,"allowed-tools":39},"[time-range, e.g. 7d] [subscription-id]",true,"max","mcp__amg__amgmcp_pulse_check mcp__amg__amgmcp_query_resource_graph mcp__amg__amgmcp_query_resource_metric mcp__amg__amgmcp_query_resource_metric_definition mcp__amg__amgmcp_query_resource_log mcp__amg__amgmcp_datasource_list mcp__amg__amgmcp_query_activity_log Bash(node *) Glob Read Write Edit",{"type":41,"children":42},"root",[43,52,96,120,127,133,242,248,253,338,344,369,387,471,477,498,502,508,515,535,561,567,579,592,598,603,612,625,631,640,680,688,757,765,873,879,895,913,919,934,947,950,956,971,979,1070,1076,1088,1116,1121,1127,1143,1149,1174,1177,1182,1201,1233,1243,1252,1281,1297,1463,1473],{"type":44,"tag":45,"props":46,"children":48},"element","h2",{"id":47},"runtime-context",[49],{"type":50,"value":51},"text","Runtime Context",{"type":44,"tag":53,"props":54,"children":55},"ul",{},[56,69,80,91],{"type":44,"tag":57,"props":58,"children":59},"li",{},[60,62],{"type":50,"value":61},"Current UTC time: !",{"type":44,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":50,"value":68},"date -u +%Y-%m-%dT%H:%M:%SZ",{"type":44,"tag":57,"props":70,"children":71},{},[72,74],{"type":50,"value":73},"Config: !",{"type":44,"tag":63,"props":75,"children":77},{"className":76},[],[78],{"type":50,"value":79},"cat memory\u002Famg-check-pg-flex\u002Fconfig.md 2>\u002Fdev\u002Fnull || echo \"NOT_CONFIGURED\"",{"type":44,"tag":57,"props":81,"children":82},{},[83,85],{"type":50,"value":84},"Prior report: !",{"type":44,"tag":63,"props":86,"children":88},{"className":87},[],[89],{"type":50,"value":90},"[ -f memory\u002Famg-check-pg-flex\u002Freport.md ] && echo \"exists ($(grep -c '^### BUG-' memory\u002Famg-check-pg-flex\u002Freport.md) bugs documented)\" || echo \"not found\"",{"type":44,"tag":57,"props":92,"children":93},{},[94],{"type":50,"value":95},"Arguments: time-range=$0, subscription-override=$1",{"type":44,"tag":97,"props":98,"children":99},"blockquote",{},[100],{"type":44,"tag":101,"props":102,"children":103},"p",{},[104,110,112,118],{"type":44,"tag":105,"props":106,"children":107},"strong",{},[108],{"type":50,"value":109},"Known Issues",{"type":50,"value":111},": Before presenting findings, cross-reference results against ",{"type":44,"tag":63,"props":113,"children":115},{"className":114},[],[116],{"type":50,"value":117},"memory\u002Famg-check-pg-flex\u002Freport.md",{"type":50,"value":119},".",{"type":44,"tag":121,"props":122,"children":124},"h1",{"id":123},"amg-postgresql-flexible-server-health-check",[125],{"type":50,"value":126},"AMG PostgreSQL Flexible Server Health Check",{"type":44,"tag":45,"props":128,"children":130},{"id":129},"critical-constraints",[131],{"type":50,"value":132},"Critical Constraints",{"type":44,"tag":53,"props":134,"children":135},{},[136,146,156,190,200],{"type":44,"tag":57,"props":137,"children":138},{},[139,144],{"type":44,"tag":105,"props":140,"children":141},{},[142],{"type":50,"value":143},"No subagents for MCP.",{"type":50,"value":145}," The Agent tool cannot access MCP tools — all MCP calls must be made from the main context.",{"type":44,"tag":57,"props":147,"children":148},{},[149,154],{"type":44,"tag":105,"props":150,"children":151},{},[152],{"type":50,"value":153},"Scan every resource.",{"type":50,"value":155}," No sampling or early stopping.",{"type":44,"tag":57,"props":157,"children":158},{},[159,164,166,172,174,180,182,188],{"type":44,"tag":105,"props":160,"children":161},{},[162],{"type":50,"value":163},"Time format",{"type":50,"value":165},": ISO 8601 UTC with explicit ",{"type":44,"tag":63,"props":167,"children":169},{"className":168},[],[170],{"type":50,"value":171},"from",{"type":50,"value":173},"\u002F",{"type":44,"tag":63,"props":175,"children":177},{"className":176},[],[178],{"type":50,"value":179},"to",{"type":50,"value":181}," — NEVER use ",{"type":44,"tag":63,"props":183,"children":185},{"className":184},[],[186],{"type":50,"value":187},"timespan",{"type":50,"value":189}," (it causes errors).",{"type":44,"tag":57,"props":191,"children":192},{},[193,198],{"type":44,"tag":105,"props":194,"children":195},{},[196],{"type":50,"value":197},"Parallelism cap",{"type":50,"value":199},": 30 concurrent MCP calls per batch. Reduce to 4-5 if rate-limited.",{"type":44,"tag":57,"props":201,"children":202},{},[203,208,210,216,218,224,226,232,234,240],{"type":44,"tag":105,"props":204,"children":205},{},[206],{"type":50,"value":207},"Result too large",{"type":50,"value":209},": Save to temp file and parse outside the context window. Prefer ",{"type":44,"tag":63,"props":211,"children":213},{"className":212},[],[214],{"type":50,"value":215},"node -e \"...\"",{"type":50,"value":217}," if installed; otherwise fall back to ",{"type":44,"tag":63,"props":219,"children":221},{"className":220},[],[222],{"type":50,"value":223},"python -c \"...\"",{"type":50,"value":225},", ",{"type":44,"tag":63,"props":227,"children":229},{"className":228},[],[230],{"type":50,"value":231},"jq",{"type":50,"value":233},", or ",{"type":44,"tag":63,"props":235,"children":237},{"className":236},[],[238],{"type":50,"value":239},"pwsh -Command \"...\"",{"type":50,"value":241},". Bash permission for the chosen interpreter will be prompted on first use.",{"type":44,"tag":45,"props":243,"children":245},{"id":244},"progress-tracking",[246],{"type":50,"value":247},"Progress Tracking",{"type":44,"tag":101,"props":249,"children":250},{},[251],{"type":50,"value":252},"Update checkboxes as you complete each phase:",{"type":44,"tag":53,"props":254,"children":257},{"className":255},[256],"contains-task-list",[258,270,279,288,297,306,315,324],{"type":44,"tag":57,"props":259,"children":262},{"className":260},[261],"task-list-item",[263,268],{"type":44,"tag":264,"props":265,"children":267},"input",{"disabled":37,"type":266},"checkbox",[],{"type":50,"value":269}," Phase 1a: Datasource validated",{"type":44,"tag":57,"props":271,"children":273},{"className":272},[261],[274,277],{"type":44,"tag":264,"props":275,"children":276},{"disabled":37,"type":266},[],{"type":50,"value":278}," Phase 1b: Servers discovered (N=?)",{"type":44,"tag":57,"props":280,"children":282},{"className":281},[261],[283,286],{"type":44,"tag":264,"props":284,"children":285},{"disabled":37,"type":266},[],{"type":50,"value":287}," Phase 1c: Non-ready servers investigated (if any)",{"type":44,"tag":57,"props":289,"children":291},{"className":290},[261],[292,295],{"type":44,"tag":264,"props":293,"children":294},{"disabled":37,"type":266},[],{"type":50,"value":296}," Phase 2: Pulse check completed (N scanned, N findings)",{"type":44,"tag":57,"props":298,"children":300},{"className":299},[261],[301,304],{"type":44,"tag":264,"props":302,"children":303},{"disabled":37,"type":266},[],{"type":50,"value":305}," Phase 3: Deep metrics for abnormal servers",{"type":44,"tag":57,"props":307,"children":309},{"className":308},[261],[310,313],{"type":44,"tag":264,"props":311,"children":312},{"disabled":37,"type":266},[],{"type":50,"value":314}," Phase 4: Resource logs for abnormal servers",{"type":44,"tag":57,"props":316,"children":318},{"className":317},[261],[319,322],{"type":44,"tag":264,"props":320,"children":321},{"disabled":37,"type":266},[],{"type":50,"value":323}," Report presented",{"type":44,"tag":57,"props":325,"children":327},{"className":326},[261],[328,331,333],{"type":44,"tag":264,"props":329,"children":330},{"disabled":37,"type":266},[],{"type":50,"value":332}," Known issues updated in ",{"type":44,"tag":63,"props":334,"children":336},{"className":335},[],[337],{"type":50,"value":117},{"type":44,"tag":45,"props":339,"children":341},{"id":340},"configuration",[342],{"type":50,"value":343},"Configuration",{"type":44,"tag":101,"props":345,"children":346},{},[347,358,360,367],{"type":44,"tag":105,"props":348,"children":349},{},[350,352],{"type":50,"value":351},"If Config shows ",{"type":44,"tag":63,"props":353,"children":355},{"className":354},[],[356],{"type":50,"value":357},"NOT_CONFIGURED",{"type":50,"value":359},": Run ",{"type":44,"tag":361,"props":362,"children":364},"a",{"href":363},"#first-run-setup",[365],{"type":50,"value":366},"First-Run Setup",{"type":50,"value":368}," at the bottom of this file, then return here.",{"type":44,"tag":101,"props":370,"children":371},{},[372,377,379,385],{"type":44,"tag":105,"props":373,"children":374},{},[375],{"type":50,"value":376},"If Config is populated",{"type":50,"value":378},": Extract the datasource UID and subscription ID from the pre-loaded Runtime Context above and use them for all queries. Use ",{"type":44,"tag":63,"props":380,"children":382},{"className":381},[],[383],{"type":50,"value":384},"$1",{"type":50,"value":386}," as the subscription override if provided.",{"type":44,"tag":53,"props":388,"children":389},{},[390,414,438,456],{"type":44,"tag":57,"props":391,"children":392},{},[393,398,400,406,408],{"type":44,"tag":105,"props":394,"children":395},{},[396],{"type":50,"value":397},"Datasource UID",{"type":50,"value":399},": from ",{"type":44,"tag":63,"props":401,"children":403},{"className":402},[],[404],{"type":50,"value":405},"## Azure Monitor Datasource",{"type":50,"value":407}," > ",{"type":44,"tag":63,"props":409,"children":411},{"className":410},[],[412],{"type":50,"value":413},"UID",{"type":44,"tag":57,"props":415,"children":416},{},[417,422,423,429,431,436],{"type":44,"tag":105,"props":418,"children":419},{},[420],{"type":50,"value":421},"Subscription ID",{"type":50,"value":399},{"type":44,"tag":63,"props":424,"children":426},{"className":425},[],[427],{"type":50,"value":428},"## Subscription",{"type":50,"value":430}," (or ",{"type":44,"tag":63,"props":432,"children":434},{"className":433},[],[435],{"type":50,"value":384},{"type":50,"value":437}," if provided)",{"type":44,"tag":57,"props":439,"children":440},{},[441,446,448,454],{"type":44,"tag":105,"props":442,"children":443},{},[444],{"type":50,"value":445},"Resource Type",{"type":50,"value":447},": ",{"type":44,"tag":63,"props":449,"children":451},{"className":450},[],[452],{"type":50,"value":453},"microsoft.dbforpostgresql\u002Fflexibleservers",{"type":50,"value":455}," (lowercase)",{"type":44,"tag":57,"props":457,"children":458},{},[459,464,465],{"type":44,"tag":105,"props":460,"children":461},{},[462],{"type":50,"value":463},"ARM ID template",{"type":50,"value":447},{"type":44,"tag":63,"props":466,"children":468},{"className":467},[],[469],{"type":50,"value":470},"\u002Fsubscriptions\u002F{SUB}\u002FresourceGroups\u002F{RG}\u002Fproviders\u002FMicrosoft.DBforPostgreSQL\u002FflexibleServers\u002F{name}",{"type":44,"tag":45,"props":472,"children":474},{"id":473},"time-range",[475],{"type":50,"value":476},"Time Range",{"type":44,"tag":101,"props":478,"children":479},{},[480,482,488,490,496],{"type":50,"value":481},"Default: 7 days for metrics, 24 hours for logs. Override with ",{"type":44,"tag":63,"props":483,"children":485},{"className":484},[],[486],{"type":50,"value":487},"$0",{"type":50,"value":489}," (e.g., ",{"type":44,"tag":63,"props":491,"children":493},{"className":492},[],[494],{"type":50,"value":495},"3d",{"type":50,"value":497},"). Keep log queries to 1-2 days to avoid timeouts.",{"type":44,"tag":499,"props":500,"children":501},"hr",{},[],{"type":44,"tag":45,"props":503,"children":505},{"id":504},"workflow",[506],{"type":50,"value":507},"Workflow",{"type":44,"tag":509,"props":510,"children":512},"h3",{"id":511},"phase-1a-validate-datasource",[513],{"type":50,"value":514},"Phase 1a: Validate Datasource",{"type":44,"tag":101,"props":516,"children":517},{},[518,520,526,528,534],{"type":50,"value":519},"Call ",{"type":44,"tag":63,"props":521,"children":523},{"className":522},[],[524],{"type":50,"value":525},"amgmcp_datasource_list",{"type":50,"value":527}," (no parameters). Find entry with ",{"type":44,"tag":63,"props":529,"children":531},{"className":530},[],[532],{"type":50,"value":533},"type == \"grafana-azure-monitor-datasource\"",{"type":50,"value":119},{"type":44,"tag":53,"props":536,"children":537},{},[538,543,556],{"type":44,"tag":57,"props":539,"children":540},{},[541],{"type":50,"value":542},"Matches configured UID → proceed.",{"type":44,"tag":57,"props":544,"children":545},{},[546,548,554],{"type":50,"value":547},"Different UID → update ",{"type":44,"tag":63,"props":549,"children":551},{"className":550},[],[552],{"type":50,"value":553},"memory\u002Famg-check-pg-flex\u002Fconfig.md",{"type":50,"value":555},", warn user, use new UID.",{"type":44,"tag":57,"props":557,"children":558},{},[559],{"type":50,"value":560},"Not found → abort with error.",{"type":44,"tag":509,"props":562,"children":564},{"id":563},"phase-1b-discover-all-postgresql-flexible-servers",[565],{"type":50,"value":566},"Phase 1b: Discover All PostgreSQL Flexible Servers",{"type":44,"tag":568,"props":569,"children":573},"pre",{"className":570,"code":572,"language":50},[571],"language-text","azureMonitorDatasourceUid: {DATASOURCE_UID}\nquery: |\n  resources\n  | where type == 'microsoft.dbforpostgresql\u002Fflexibleservers'\n  | where subscriptionId == '{SUBSCRIPTION_ID}'\n  | project name, resourceGroup, location, properties.state, sku.name, sku.tier\n  | order by location asc, name asc\n",[574],{"type":44,"tag":63,"props":575,"children":577},{"__ignoreMap":576},"",[578],{"type":50,"value":572},{"type":44,"tag":101,"props":580,"children":581},{},[582,584,590],{"type":50,"value":583},"If multiple subscriptions are configured, query each separately and merge results. Derive region summary by counting servers per ",{"type":44,"tag":63,"props":585,"children":587},{"className":586},[],[588],{"type":50,"value":589},"location",{"type":50,"value":591},". Flag servers not in \"Ready\" state. Stop if zero servers found.",{"type":44,"tag":509,"props":593,"children":595},{"id":594},"phase-1c-activity-log-for-non-ready-servers",[596],{"type":50,"value":597},"Phase 1c: Activity Log for Non-Ready Servers",{"type":44,"tag":101,"props":599,"children":600},{},[601],{"type":50,"value":602},"If any servers are not in \"Ready\" state, query the activity log for up to 3 of them:",{"type":44,"tag":568,"props":604,"children":607},{"className":605,"code":606,"language":50},[571],"azureMonitorDatasourceUid: {DATASOURCE_UID}\nscope: \u002Fsubscriptions\u002F{SUB}\u002FresourceGroups\u002F{RG}\u002Fproviders\u002FMicrosoft.DBforPostgreSQL\u002FflexibleServers\u002F{name}\nstartTime: now-3d\nendTime: now\nselect: eventTimestamp,operationName,status,caller,subStatus\n",[608],{"type":44,"tag":63,"props":609,"children":610},{"__ignoreMap":576},[611],{"type":50,"value":606},{"type":44,"tag":101,"props":613,"children":614},{},[615,617,623],{"type":50,"value":616},"If the response exceeds 500 KB, retry with ",{"type":44,"tag":63,"props":618,"children":620},{"className":619},[],[621],{"type":50,"value":622},"startTime: now-6h",{"type":50,"value":624},". Summarize: operations performed, caller type (service principal vs human), success\u002Fin-progress status, likely cause.",{"type":44,"tag":509,"props":626,"children":628},{"id":627},"phase-2-tier-1-fleet-wide-pulse-check",[629],{"type":50,"value":630},"Phase 2: Tier 1 — Fleet-Wide Pulse Check",{"type":44,"tag":568,"props":632,"children":635},{"className":633,"code":634,"language":50},[571],"azureMonitorDatasourceUid: {DATASOURCE_UID}\npastDays: 7\nscenarios: pg_flex\n",[636],{"type":44,"tag":63,"props":637,"children":638},{"__ignoreMap":576},[639],{"type":50,"value":634},{"type":44,"tag":101,"props":641,"children":642},{},[643,645,651,652,658,659,665,666,672,673,679],{"type":50,"value":644},"Scans all servers across 5 scenarios: ",{"type":44,"tag":63,"props":646,"children":648},{"className":647},[],[649],{"type":50,"value":650},"pg_flex_cpu",{"type":50,"value":225},{"type":44,"tag":63,"props":653,"children":655},{"className":654},[],[656],{"type":50,"value":657},"pg_flex_memory",{"type":50,"value":225},{"type":44,"tag":63,"props":660,"children":662},{"className":661},[],[663],{"type":50,"value":664},"pg_flex_storage",{"type":50,"value":225},{"type":44,"tag":63,"props":667,"children":669},{"className":668},[],[670],{"type":50,"value":671},"pg_flex_disk_iops",{"type":50,"value":225},{"type":44,"tag":63,"props":674,"children":676},{"className":675},[],[677],{"type":50,"value":678},"pg_flex_disk_bandwidth",{"type":50,"value":119},{"type":44,"tag":101,"props":681,"children":682},{},[683],{"type":44,"tag":105,"props":684,"children":685},{},[686],{"type":50,"value":687},"Before moving to Phase 3, verify:",{"type":44,"tag":689,"props":690,"children":691},"ol",{},[692,703,723,744],{"type":44,"tag":57,"props":693,"children":694},{},[695,701],{"type":44,"tag":63,"props":696,"children":698},{"className":697},[],[699],{"type":50,"value":700},"scanSummary.totalResourcesScanned",{"type":50,"value":702}," matches Phase 1 server count.",{"type":44,"tag":57,"props":704,"children":705},{},[706,708,714,716,722],{"type":50,"value":707},"All 5 scenarios show ",{"type":44,"tag":63,"props":709,"children":711},{"className":710},[],[712],{"type":50,"value":713},"status: \"completed\"",{"type":50,"value":715}," in ",{"type":44,"tag":63,"props":717,"children":719},{"className":718},[],[720],{"type":50,"value":721},"scenarioResults",{"type":50,"value":119},{"type":44,"tag":57,"props":724,"children":725},{},[726,728,734,736,742],{"type":50,"value":727},"If ",{"type":44,"tag":63,"props":729,"children":731},{"className":730},[],[732],{"type":50,"value":733},"errors",{"type":50,"value":735}," non-empty, retry affected scenarios individually (e.g., ",{"type":44,"tag":63,"props":737,"children":739},{"className":738},[],[740],{"type":50,"value":741},"scenarios: pg_flex_cpu",{"type":50,"value":743},").",{"type":44,"tag":57,"props":745,"children":746},{},[747,749,755],{"type":50,"value":748},"If >10% servers missing, fall back to batched ",{"type":44,"tag":63,"props":750,"children":752},{"className":751},[],[753],{"type":50,"value":754},"amgmcp_query_resource_metric",{"type":50,"value":756}," for unscanned servers.",{"type":44,"tag":101,"props":758,"children":759},{},[760],{"type":44,"tag":105,"props":761,"children":762},{},[763],{"type":50,"value":764},"Severity thresholds (findings array):",{"type":44,"tag":766,"props":767,"children":768},"table",{},[769,808],{"type":44,"tag":770,"props":771,"children":772},"thead",{},[773],{"type":44,"tag":774,"props":775,"children":776},"tr",{},[777,783,788,793,798,803],{"type":44,"tag":778,"props":779,"children":780},"th",{},[781],{"type":50,"value":782},"Severity",{"type":44,"tag":778,"props":784,"children":785},{},[786],{"type":50,"value":787},"CPU",{"type":44,"tag":778,"props":789,"children":790},{},[791],{"type":50,"value":792},"Memory",{"type":44,"tag":778,"props":794,"children":795},{},[796],{"type":50,"value":797},"Storage",{"type":44,"tag":778,"props":799,"children":800},{},[801],{"type":50,"value":802},"Disk IOPS",{"type":44,"tag":778,"props":804,"children":805},{},[806],{"type":50,"value":807},"Disk BW",{"type":44,"tag":809,"props":810,"children":811},"tbody",{},[812,843],{"type":44,"tag":774,"props":813,"children":814},{},[815,821,826,830,835,839],{"type":44,"tag":816,"props":817,"children":818},"td",{},[819],{"type":50,"value":820},"Critical",{"type":44,"tag":816,"props":822,"children":823},{},[824],{"type":50,"value":825},">90%",{"type":44,"tag":816,"props":827,"children":828},{},[829],{"type":50,"value":825},{"type":44,"tag":816,"props":831,"children":832},{},[833],{"type":50,"value":834},">85%",{"type":44,"tag":816,"props":836,"children":837},{},[838],{"type":50,"value":825},{"type":44,"tag":816,"props":840,"children":841},{},[842],{"type":50,"value":825},{"type":44,"tag":774,"props":844,"children":845},{},[846,851,856,860,865,869],{"type":44,"tag":816,"props":847,"children":848},{},[849],{"type":50,"value":850},"Warning",{"type":44,"tag":816,"props":852,"children":853},{},[854],{"type":50,"value":855},">80%",{"type":44,"tag":816,"props":857,"children":858},{},[859],{"type":50,"value":855},{"type":44,"tag":816,"props":861,"children":862},{},[863],{"type":50,"value":864},">75%",{"type":44,"tag":816,"props":866,"children":867},{},[868],{"type":50,"value":855},{"type":44,"tag":816,"props":870,"children":871},{},[872],{"type":50,"value":855},{"type":44,"tag":509,"props":874,"children":876},{"id":875},"phase-3-tier-2-deep-metrics-for-abnormal-servers",[877],{"type":50,"value":878},"Phase 3: Tier 2 — Deep Metrics for Abnormal Servers",{"type":44,"tag":101,"props":880,"children":881},{},[882,884,893],{"type":50,"value":883},"Read ",{"type":44,"tag":105,"props":885,"children":886},{},[887],{"type":44,"tag":361,"props":888,"children":890},{"href":889},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Fphase3-deep-dive.md",[891],{"type":50,"value":892},"reference\u002Fphase3-deep-dive.md",{"type":50,"value":894}," before starting Phase 3. It contains:",{"type":44,"tag":53,"props":896,"children":897},{},[898,903,908],{"type":44,"tag":57,"props":899,"children":900},{},[901],{"type":50,"value":902},"Core metrics table (always query) and secondary metrics table (query on anomaly)",{"type":44,"tag":57,"props":904,"children":905},{},[906],{"type":50,"value":907},"Batch strategy: up to 50 comma-separated resource IDs per call, up to 5 parallel metric calls",{"type":44,"tag":57,"props":909,"children":910},{},[911],{"type":50,"value":912},"Correlation analysis patterns (use ultrathink)",{"type":44,"tag":509,"props":914,"children":916},{"id":915},"phase-4-resource-logs-for-abnormal-servers",[917],{"type":50,"value":918},"Phase 4: Resource Logs for Abnormal Servers",{"type":44,"tag":101,"props":920,"children":921},{},[922,923,932],{"type":50,"value":883},{"type":44,"tag":105,"props":924,"children":925},{},[926],{"type":44,"tag":361,"props":927,"children":929},{"href":928},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Fphase4-resource-logs.md",[930],{"type":50,"value":931},"reference\u002Fphase4-resource-logs.md",{"type":50,"value":933}," before starting Phase 4. It contains:",{"type":44,"tag":53,"props":935,"children":936},{},[937,942],{"type":44,"tag":57,"props":938,"children":939},{},[940],{"type":50,"value":941},"5 KQL query templates: error distribution, top errors, warning messages, log volume, session duration",{"type":44,"tag":57,"props":943,"children":944},{},[945],{"type":50,"value":946},"Time filter rules (always required to avoid timeouts)",{"type":44,"tag":499,"props":948,"children":949},{},[],{"type":44,"tag":45,"props":951,"children":953},{"id":952},"output",[954],{"type":50,"value":955},"Output",{"type":44,"tag":101,"props":957,"children":958},{},[959,961,970],{"type":50,"value":960},"Present the report using the structure in ",{"type":44,"tag":105,"props":962,"children":963},{},[964],{"type":44,"tag":361,"props":965,"children":967},{"href":966},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Foutput-format.md",[968],{"type":50,"value":969},"reference\u002Foutput-format.md",{"type":50,"value":119},{"type":44,"tag":101,"props":972,"children":973},{},[974],{"type":44,"tag":105,"props":975,"children":976},{},[977],{"type":50,"value":978},"Classification:",{"type":44,"tag":766,"props":980,"children":981},{},[982,997],{"type":44,"tag":770,"props":983,"children":984},{},[985],{"type":44,"tag":774,"props":986,"children":987},{},[988,992],{"type":44,"tag":778,"props":989,"children":990},{},[991],{"type":50,"value":782},{"type":44,"tag":778,"props":993,"children":994},{},[995],{"type":50,"value":996},"Criteria",{"type":44,"tag":809,"props":998,"children":999},{},[1000,1022,1054],{"type":44,"tag":774,"props":1001,"children":1002},{},[1003,1011],{"type":44,"tag":816,"props":1004,"children":1005},{},[1006],{"type":44,"tag":105,"props":1007,"children":1008},{},[1009],{"type":50,"value":1010},"CRITICAL",{"type":44,"tag":816,"props":1012,"children":1013},{},[1014,1020],{"type":44,"tag":63,"props":1015,"children":1017},{"className":1016},[],[1018],{"type":50,"value":1019},"is_db_alive",{"type":50,"value":1021}," sustained 0, OR CPU max >90%, OR Memory max >90%, OR Storage >85%",{"type":44,"tag":774,"props":1023,"children":1024},{},[1025,1033],{"type":44,"tag":816,"props":1026,"children":1027},{},[1028],{"type":44,"tag":105,"props":1029,"children":1030},{},[1031],{"type":50,"value":1032},"WARNING",{"type":44,"tag":816,"props":1034,"children":1035},{},[1036,1038,1044,1046,1052],{"type":50,"value":1037},"CPU avg >80%, Memory avg >85%, sustained >60% for 6h+, spike >30pp in 1h, Storage >70%, ",{"type":44,"tag":63,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":50,"value":1043},"connections_failed",{"type":50,"value":1045}," >0, ",{"type":44,"tag":63,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":50,"value":1051},"deadlocks",{"type":50,"value":1053}," >0, disk IOPS\u002FBW >80%, transactionIDs >1B, longest query >300s, replication delay >30s",{"type":44,"tag":774,"props":1055,"children":1056},{},[1057,1065],{"type":44,"tag":816,"props":1058,"children":1059},{},[1060],{"type":44,"tag":105,"props":1061,"children":1062},{},[1063],{"type":50,"value":1064},"HEALTHY",{"type":44,"tag":816,"props":1066,"children":1067},{},[1068],{"type":50,"value":1069},"All metrics within normal ranges",{"type":44,"tag":45,"props":1071,"children":1073},{"id":1072},"update-known-issues",[1074],{"type":50,"value":1075},"Update Known Issues",{"type":44,"tag":101,"props":1077,"children":1078},{},[1079,1081,1086],{"type":50,"value":1080},"After presenting findings, update ",{"type":44,"tag":63,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":50,"value":117},{"type":50,"value":1087},":",{"type":44,"tag":689,"props":1089,"children":1090},{},[1091,1096,1101,1106,1111],{"type":44,"tag":57,"props":1092,"children":1093},{},[1094],{"type":50,"value":1095},"Read the current file.",{"type":44,"tag":57,"props":1097,"children":1098},{},[1099],{"type":50,"value":1100},"Rebuild the Resource Inventory table at the end: every server, full ARM ID, region, SKU, state. Group by region, sorted alphabetically.",{"type":44,"tag":57,"props":1102,"children":1103},{},[1104],{"type":50,"value":1105},"Update existing bug status from today's telemetry (resolved \u002F improving \u002F worsening \u002F still active).",{"type":44,"tag":57,"props":1107,"children":1108},{},[1109],{"type":50,"value":1110},"Add new bugs with: severity, server name, region, metric evidence, log evidence, root cause, recommended action.",{"type":44,"tag":57,"props":1112,"children":1113},{},[1114],{"type":50,"value":1115},"Update the \"Updated\" date header.",{"type":44,"tag":101,"props":1117,"children":1118},{},[1119],{"type":50,"value":1120},"Only add genuine issues: sustained high utilization, crash patterns, connection storms, persistent errors. Skip transient single-hour spikes or expected maintenance windows.",{"type":44,"tag":45,"props":1122,"children":1124},{"id":1123},"error-handling",[1125],{"type":50,"value":1126},"Error Handling",{"type":44,"tag":101,"props":1128,"children":1129},{},[1130,1132,1141],{"type":50,"value":1131},"See ",{"type":44,"tag":105,"props":1133,"children":1134},{},[1135],{"type":44,"tag":361,"props":1136,"children":1138},{"href":1137},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Ferror-handling.md",[1139],{"type":50,"value":1140},"reference\u002Ferror-handling.md",{"type":50,"value":1142}," for the full recovery table.",{"type":44,"tag":45,"props":1144,"children":1146},{"id":1145},"analysis-guidance",[1147],{"type":50,"value":1148},"Analysis Guidance",{"type":44,"tag":53,"props":1150,"children":1151},{},[1152,1163],{"type":44,"tag":57,"props":1153,"children":1154},{},[1155,1157],{"type":50,"value":1156},"Known patterns, signals, root causes: ",{"type":44,"tag":361,"props":1158,"children":1160},{"href":1159},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Fanalysis-patterns.md",[1161],{"type":50,"value":1162},"reference\u002Fanalysis-patterns.md",{"type":44,"tag":57,"props":1164,"children":1165},{},[1166,1168],{"type":50,"value":1167},"Optional deep-dive KQL queries: ",{"type":44,"tag":361,"props":1169,"children":1171},{"href":1170},"$%7BCLAUDE_SKILL_DIR%7D\u002Freference\u002Fdeep-dive-queries.md",[1172],{"type":50,"value":1173},"reference\u002Fdeep-dive-queries.md",{"type":44,"tag":499,"props":1175,"children":1176},{},[],{"type":44,"tag":45,"props":1178,"children":1180},{"id":1179},"first-run-setup",[1181],{"type":50,"value":366},{"type":44,"tag":101,"props":1183,"children":1184},{},[1185,1187,1192,1194,1199],{"type":50,"value":1186},"Run only when Config shows ",{"type":44,"tag":63,"props":1188,"children":1190},{"className":1189},[],[1191],{"type":50,"value":357},{"type":50,"value":1193},". After completing, return to the ",{"type":44,"tag":361,"props":1195,"children":1197},{"href":1196},"#workflow",[1198],{"type":50,"value":507},{"type":50,"value":1200}," above.",{"type":44,"tag":101,"props":1202,"children":1203},{},[1204,1209,1211,1216,1218,1223,1225,1231],{"type":44,"tag":105,"props":1205,"children":1206},{},[1207],{"type":50,"value":1208},"1. Discover Datasource UID",{"type":50,"value":1210},": Call ",{"type":44,"tag":63,"props":1212,"children":1214},{"className":1213},[],[1215],{"type":50,"value":525},{"type":50,"value":1217},". Filter ",{"type":44,"tag":63,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":50,"value":533},{"type":50,"value":1224},". Prefer ",{"type":44,"tag":63,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":50,"value":1230},"uid == \"azure-monitor-oob\"",{"type":50,"value":1232}," if multiple match. Abort if zero match.",{"type":44,"tag":101,"props":1234,"children":1235},{},[1236,1241],{"type":44,"tag":105,"props":1237,"children":1238},{},[1239],{"type":50,"value":1240},"2. Discover Subscription ID",{"type":50,"value":1242},": Run this Resource Graph query to list all subscriptions with PostgreSQL Flexible Servers, then present the results as a table and ask the user which subscription(s) to use:",{"type":44,"tag":568,"props":1244,"children":1247},{"className":1245,"code":1246,"language":50},[571],"resources\n| where type == 'microsoft.dbforpostgresql\u002Fflexibleservers'\n| join kind=inner (\n    resourcecontainers\n    | where type == 'microsoft.resources\u002Fsubscriptions'\n    | project subscriptionId, subscriptionName=name\n) on subscriptionId\n| summarize ServerCount=count() by subscriptionId, subscriptionName\n| order by ServerCount desc\n",[1248],{"type":44,"tag":63,"props":1249,"children":1250},{"__ignoreMap":576},[1251],{"type":50,"value":1246},{"type":44,"tag":101,"props":1253,"children":1254},{},[1255,1257,1262,1263,1267,1268,1273,1275],{"type":50,"value":1256},"Present the results as a table with columns: ",{"type":44,"tag":105,"props":1258,"children":1259},{},[1260],{"type":50,"value":1261},"Subscription Name",{"type":50,"value":225},{"type":44,"tag":105,"props":1264,"children":1265},{},[1266],{"type":50,"value":421},{"type":50,"value":225},{"type":44,"tag":105,"props":1269,"children":1270},{},[1271],{"type":50,"value":1272},"Server Count",{"type":50,"value":1274},". Then ask the user: ",{"type":44,"tag":1276,"props":1277,"children":1278},"em",{},[1279],{"type":50,"value":1280},"\"Which subscription ID(s) should I configure for this health check?\"",{"type":44,"tag":101,"props":1282,"children":1283},{},[1284,1289,1291,1296],{"type":44,"tag":105,"props":1285,"children":1286},{},[1287],{"type":50,"value":1288},"3. Write config",{"type":50,"value":1290},": Write ",{"type":44,"tag":63,"props":1292,"children":1294},{"className":1293},[],[1295],{"type":50,"value":553},{"type":50,"value":1087},{"type":44,"tag":568,"props":1298,"children":1302},{"className":1299,"code":1300,"language":1301,"meta":576,"style":576},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# amg-check-pg-flex Configuration\n\nUser-specific values for the PostgreSQL Flexible Server health check skill.\nThis file is auto-generated on first run and can be edited manually.\n\n## Azure Monitor Datasource\n- **UID**: {discovered_uid}\n- **Name**: {discovered_name}\n\n## Subscription\n- {subscription_id}\n","markdown",[1303],{"type":44,"tag":63,"props":1304,"children":1305},{"__ignoreMap":576},[1306,1324,1332,1342,1351,1359,1373,1403,1429,1437,1450],{"type":44,"tag":1307,"props":1308,"children":1311},"span",{"class":1309,"line":1310},"line",1,[1312,1318],{"type":44,"tag":1307,"props":1313,"children":1315},{"style":1314},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1316],{"type":50,"value":1317},"# ",{"type":44,"tag":1307,"props":1319,"children":1321},{"style":1320},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1322],{"type":50,"value":1323},"amg-check-pg-flex Configuration\n",{"type":44,"tag":1307,"props":1325,"children":1326},{"class":1309,"line":24},[1327],{"type":44,"tag":1307,"props":1328,"children":1329},{"emptyLinePlaceholder":37},[1330],{"type":50,"value":1331},"\n",{"type":44,"tag":1307,"props":1333,"children":1335},{"class":1309,"line":1334},3,[1336],{"type":44,"tag":1307,"props":1337,"children":1339},{"style":1338},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1340],{"type":50,"value":1341},"User-specific values for the PostgreSQL Flexible Server health check skill.\n",{"type":44,"tag":1307,"props":1343,"children":1345},{"class":1309,"line":1344},4,[1346],{"type":44,"tag":1307,"props":1347,"children":1348},{"style":1338},[1349],{"type":50,"value":1350},"This file is auto-generated on first run and can be edited manually.\n",{"type":44,"tag":1307,"props":1352,"children":1354},{"class":1309,"line":1353},5,[1355],{"type":44,"tag":1307,"props":1356,"children":1357},{"emptyLinePlaceholder":37},[1358],{"type":50,"value":1331},{"type":44,"tag":1307,"props":1360,"children":1362},{"class":1309,"line":1361},6,[1363,1368],{"type":44,"tag":1307,"props":1364,"children":1365},{"style":1314},[1366],{"type":50,"value":1367},"## ",{"type":44,"tag":1307,"props":1369,"children":1370},{"style":1320},[1371],{"type":50,"value":1372},"Azure Monitor Datasource\n",{"type":44,"tag":1307,"props":1374,"children":1376},{"class":1309,"line":1375},7,[1377,1382,1388,1393,1398],{"type":44,"tag":1307,"props":1378,"children":1379},{"style":1314},[1380],{"type":50,"value":1381},"-",{"type":44,"tag":1307,"props":1383,"children":1385},{"style":1384},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1386],{"type":50,"value":1387}," **",{"type":44,"tag":1307,"props":1389,"children":1391},{"style":1390},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1392],{"type":50,"value":413},{"type":44,"tag":1307,"props":1394,"children":1395},{"style":1384},[1396],{"type":50,"value":1397},"**",{"type":44,"tag":1307,"props":1399,"children":1400},{"style":1338},[1401],{"type":50,"value":1402},": {discovered_uid}\n",{"type":44,"tag":1307,"props":1404,"children":1406},{"class":1309,"line":1405},8,[1407,1411,1415,1420,1424],{"type":44,"tag":1307,"props":1408,"children":1409},{"style":1314},[1410],{"type":50,"value":1381},{"type":44,"tag":1307,"props":1412,"children":1413},{"style":1384},[1414],{"type":50,"value":1387},{"type":44,"tag":1307,"props":1416,"children":1417},{"style":1390},[1418],{"type":50,"value":1419},"Name",{"type":44,"tag":1307,"props":1421,"children":1422},{"style":1384},[1423],{"type":50,"value":1397},{"type":44,"tag":1307,"props":1425,"children":1426},{"style":1338},[1427],{"type":50,"value":1428},": {discovered_name}\n",{"type":44,"tag":1307,"props":1430,"children":1432},{"class":1309,"line":1431},9,[1433],{"type":44,"tag":1307,"props":1434,"children":1435},{"emptyLinePlaceholder":37},[1436],{"type":50,"value":1331},{"type":44,"tag":1307,"props":1438,"children":1440},{"class":1309,"line":1439},10,[1441,1445],{"type":44,"tag":1307,"props":1442,"children":1443},{"style":1314},[1444],{"type":50,"value":1367},{"type":44,"tag":1307,"props":1446,"children":1447},{"style":1320},[1448],{"type":50,"value":1449},"Subscription\n",{"type":44,"tag":1307,"props":1451,"children":1453},{"class":1309,"line":1452},11,[1454,1458],{"type":44,"tag":1307,"props":1455,"children":1456},{"style":1314},[1457],{"type":50,"value":1381},{"type":44,"tag":1307,"props":1459,"children":1460},{"style":1338},[1461],{"type":50,"value":1462}," {subscription_id}\n",{"type":44,"tag":101,"props":1464,"children":1465},{},[1466,1471],{"type":44,"tag":105,"props":1467,"children":1468},{},[1469],{"type":50,"value":1470},"4. Confirm",{"type":50,"value":1472},": Show the resolved config and ask for confirmation before proceeding.",{"type":44,"tag":1474,"props":1475,"children":1476},"style",{},[1477],{"type":50,"value":1478},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1480,"total":1353},[1481,1498,1514,1527,1534],{"slug":1482,"name":1482,"fn":1483,"description":1484,"org":1485,"tags":1486,"stars":24,"repoUrl":25,"updatedAt":1497},"amg-check-azure-spend","analyze monthly Azure subscription costs","Monthly Azure subscription cost analysis — lists all accessible subscriptions, lets the user choose which to analyze, then queries last billing month's cost breakdown by resource type, region, and service category for each subscription. Queries subscriptions sequentially with 1-minute waits between calls to avoid billing API rate limits (429). On first run, auto-discovers datasource UID.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1487,1488,1491,1494],{"name":11,"slug":8,"type":16},{"name":1489,"slug":1490,"type":16},"Cost Optimization","cost-optimization",{"name":1492,"slug":1493,"type":16},"Finance","finance",{"name":1495,"slug":1496,"type":16},"Reporting","reporting","2026-07-12T08:19:59.033036",{"slug":1499,"name":1499,"fn":1500,"description":1501,"org":1502,"tags":1503,"stars":24,"repoUrl":25,"updatedAt":1513},"amg-check-cosmosdb-mongo-ru","monitor Cosmos DB for MongoDB health","Fleet-wide Cosmos DB for MongoDB (RU) health check — scans NormalizedRU consumption, service availability, server-side latency, throttling (429s), and replication metrics across all accounts, then deep-dives into abnormal accounts with resource logs and correlation analysis. Tracks known issues across sessions via persistent report. Uses AMG-MCP pulse check for Tier 1 triage, then batched Azure Monitor queries for Tier 2 investigation. On first run, auto-discovers datasource UID and prompts for subscription ID.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1504,1505,1508,1511,1512],{"name":11,"slug":8,"type":16},{"name":1506,"slug":1507,"type":16},"Cosmos DB","cosmos-db",{"name":1509,"slug":1510,"type":16},"MongoDB","mongodb",{"name":19,"slug":20,"type":16},{"name":14,"slug":15,"type":16},"2026-07-12T08:19:56.052424",{"slug":1515,"name":1515,"fn":1516,"description":1517,"org":1518,"tags":1519,"stars":24,"repoUrl":25,"updatedAt":1526},"amg-check-key-vault","monitor Azure Key Vault health","Fleet-wide Azure Key Vault health check — pulse check for availability, API latency, throttling (429s), auth failures (401\u002F403), and vault saturation across all vaults, then deep-dives into the top 7 most interesting vaults with metrics and resource logs. Tracks known issues across sessions via persistent report. On first run, auto-discovers datasource UID and prompts for subscription ID.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1520,1521,1522,1523],{"name":11,"slug":8,"type":16},{"name":19,"slug":20,"type":16},{"name":14,"slug":15,"type":16},{"name":1524,"slug":1525,"type":16},"Security","security","2026-07-12T08:19:53.484442",{"slug":4,"name":4,"fn":5,"description":6,"org":1528,"tags":1529,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1530,1531,1532,1533],{"name":11,"slug":8,"type":16},{"name":19,"slug":20,"type":16},{"name":14,"slug":15,"type":16},{"name":22,"slug":23,"type":16},{"slug":1535,"name":1535,"fn":1536,"description":1537,"org":1538,"tags":1539,"stars":24,"repoUrl":25,"updatedAt":1547},"amg-check-storage-account","monitor Azure Storage Account health","Fleet-wide Azure Storage Account health check — pulse check for availability, latency, transactions, and error rates across all accounts, then deep-dives into the top 7 most interesting accounts with metrics (E2E latency, server latency, capacity, ingress\u002Fegress) and resource logs. Tracks known issues across sessions via persistent report. On first run, auto-discovers datasource UID and prompts for subscription ID.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1540,1541,1542,1545],{"name":11,"slug":8,"type":16},{"name":19,"slug":20,"type":16},{"name":1543,"slug":1544,"type":16},"Performance","performance",{"name":797,"slug":1546,"type":16},"storage","2026-07-12T08:19:57.37917",{"items":1549,"total":1726},[1550,1569,1588,1607,1622,1637,1650,1665,1676,1688,1701,1714],{"slug":1551,"name":1551,"fn":1552,"description":1553,"org":1554,"tags":1555,"stars":1566,"repoUrl":1567,"updatedAt":1568},"azure-arg-external-evaluation-policy-author","author and test Azure Resource Graph policies","Use when the user wants to author, design, or test an Azure Policy that queries Azure Resource Graph (ARG) at request-time — i.e. a policy whose deny\u002Faudit decision depends on data from elsewhere in the subscription (sibling\u002Fparent resource state, RG-wide invariants, multi-hop relationships, etc.). Formally called Azure Policy External Evaluation; sometimes referred to colloquially as \"Invoke\". Drives an iterative KQL co-design loop against the user's real subscription via `az graph query`, then emits a policy definition, assignment, `.http` test flow, and an `EXPLANATION.md` companion. Read-only; never provisions anything.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1556,1557,1560,1563],{"name":11,"slug":8,"type":16},{"name":1558,"slug":1559,"type":16},"Compliance","compliance",{"name":1561,"slug":1562,"type":16},"Governance","governance",{"name":1564,"slug":1565,"type":16},"Policy","policy",1686,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":1570,"name":1570,"fn":1571,"description":1572,"org":1573,"tags":1574,"stars":1585,"repoUrl":1586,"updatedAt":1587},"azure-blueprints-migration","migrate Azure Blueprints to Template Specs","Use when a user needs to migrate off Azure Blueprints (definitions and\u002For assignments) to Template Specs and Deployment Stacks before the January 31, 2027 retirement. Covers inventory, export, conversion to Bicep, policy decoupling, Template Spec publishing, Deployment Stack deployment with deny-settings, validation, and cutover.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1575,1576,1579,1582],{"name":11,"slug":8,"type":16},{"name":1577,"slug":1578,"type":16},"Deployment","deployment",{"name":1580,"slug":1581,"type":16},"Infrastructure as Code","infrastructure-as-code",{"name":1583,"slug":1584,"type":16},"Migration","migration",260,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-07-12T08:17:49.646405",{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":1604,"repoUrl":1605,"updatedAt":1606},"apiview-feedback-resolution","resolve APIView feedback on Azure SDKs","Analyze and resolve APIView review feedback on Azure SDK PRs. **UTILITY SKILL**. USE FOR: APIView comments, API review feedback, SDK API surface changes. DO NOT USE FOR: general code review, non-APIView feedback. INVOKES: azure-sdk-mcp:azsdk_apiview_get_comments, azure-sdk-mcp:azsdk_typespec_customized_code_update.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1594,1597,1598,1601],{"name":1595,"slug":1596,"type":16},"API Development","api-development",{"name":11,"slug":8,"type":16},{"name":1599,"slug":1600,"type":16},"Code Review","code-review",{"name":1602,"slug":1603,"type":16},"Documentation","documentation",133,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-sdk-tools","2026-07-12T08:17:43.350876",{"slug":1608,"name":1608,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":1604,"repoUrl":1605,"updatedAt":1621},"azsdk-common-live-and-recorded-tests","deploy resources and run Azure SDK tests","Deploy test resources and run Azure SDK tests in live, record, or playback mode. WHEN: \"run live tests\", \"run recorded tests\", \"deploy test resources\", \"record tests\", \"run tests in record mode\", \"clean up test resources\", \"run tests against live resources\". DO NOT USE FOR: writing new tests, authoring Bicep templates, playback-only test runs without resource deployment. INVOKES: azure-sdk-mcp:azsdk_package_run_tests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1613,1614,1615,1618],{"name":11,"slug":8,"type":16},{"name":1577,"slug":1578,"type":16},{"name":1616,"slug":1617,"type":16},"SDK","sdk",{"name":1619,"slug":1620,"type":16},"Testing","testing","2026-07-12T08:17:44.718943",{"slug":1623,"name":1623,"fn":1624,"description":1625,"org":1626,"tags":1627,"stars":1604,"repoUrl":1605,"updatedAt":1636},"azsdk-common-prepare-release-plan","manage Azure SDK release plan work items","Create, get, update, abandon, and link SDK PRs to release plan work items for Azure SDK releases. **UTILITY SKILL**. USE FOR: \"create release plan\", \"get release plan\", \"update release plan\", \"update API spec in release plan\", \"update SDK details in release plan\", \"abandon release plan\", \"link SDK PR to plan\", \"namespace approval\", \"check release plan status\". DO NOT USE FOR: SDK code generation, pipeline troubleshooting, API review feedback. INVOKES: azure-sdk-mcp:azsdk_create_release_plan, azure-sdk-mcp:azsdk_get_release_plan, azure-sdk-mcp:azsdk_get_release_plan_for_spec_pr, azure-sdk-mcp:azsdk_update_release_plan, azure-sdk-mcp:azsdk_update_api_spec_pull_request_in_release_plan, azure-sdk-mcp:azsdk_update_sdk_details_in_release_plan, azure-sdk-mcp:azsdk_abandon_release_plan, azure-sdk-mcp:azsdk_link_sdk_pull_request_to_release_plan, azure-sdk-mcp:azsdk_link_namespace_approval_issue.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1628,1629,1632,1635],{"name":11,"slug":8,"type":16},{"name":1630,"slug":1631,"type":16},"GitHub","github",{"name":1633,"slug":1634,"type":16},"Project Management","project-management",{"name":1616,"slug":1617,"type":16},"2026-07-12T08:17:38.345387",{"slug":1638,"name":1638,"fn":1639,"description":1640,"org":1641,"tags":1642,"stars":1604,"repoUrl":1605,"updatedAt":1649},"azsdk-common-sdk-release","release Azure SDK packages","Check release readiness and trigger the release pipeline for Azure SDK packages. **UTILITY SKILL**. USE FOR: \"release SDK\", \"trigger release\", \"check release readiness\", \"release pipeline\", \"publish package\", \"ship SDK\". DO NOT USE FOR: SDK development, code generation, pipeline debugging, release plan creation. INVOKES: azure-sdk-mcp:azsdk_release_sdk.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1643,1644,1647,1648],{"name":11,"slug":8,"type":16},{"name":1645,"slug":1646,"type":16},"CI\u002FCD","ci-cd",{"name":1577,"slug":1578,"type":16},{"name":1616,"slug":1617,"type":16},"2026-07-12T08:17:34.27607",{"slug":1651,"name":1651,"fn":1652,"description":1653,"org":1654,"tags":1655,"stars":1604,"repoUrl":1605,"updatedAt":1664},"azure-typespec-author","author and modify Azure TypeSpec API specifications","Authors and modifies Azure TypeSpec (.tsp) API specifications. USE FOR: any TypeSpec\u002Ftsp change — api versions (add, bump, preview, stable, promote), resources, operations, models, properties, decorators, visibility, constraints, breaking changes, LRO, suppressions, operationId, spread model. Covers ARM resource-manager and data-plane services. DO NOT USE FOR: SDK generation, releasing SDK packages, or single MCP tool calls. INVOKES: azure-sdk-mcp:azsdk_typespec_generate_authoring_plan, azure-sdk-mcp:azsdk_run_typespec_validation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1656,1657,1658,1661],{"name":1595,"slug":1596,"type":16},{"name":11,"slug":8,"type":16},{"name":1659,"slug":1660,"type":16},"OpenAPI","openapi",{"name":1662,"slug":1663,"type":16},"Technical Writing","technical-writing","2026-07-12T08:17:39.603232",{"slug":1666,"name":1666,"fn":1667,"description":1668,"org":1669,"tags":1670,"stars":1604,"repoUrl":1605,"updatedAt":1675},"generate-sdk-locally","generate and test Azure SDKs locally","Generate, build, and test Azure SDKs locally from TypeSpec with automatic customization. WHEN: \"generate SDK locally\", \"build SDK\", \"run SDK tests\", \"run CI checks\", \"validate package\", \"run checks\", \"update changelog\", \"fix SDK build errors\", \"fix breaking changes\", \"resolve SDK generation errors\", \"customize TypeSpec\", \"rename SDK client\", \"rename SDK model\", \"hide operation from SDK\", \"fix analyzer errors\", \"resolve customization drift\", \"create subclient\", \"update metadata\", \"update version\". DO NOT USE FOR: publishing to package registries, CI pipeline configuration, API design review. INVOKES: azsdk_verify_setup, azsdk_package_generate_code, azsdk_package_build_code, azsdk_package_run_check, azsdk_package_run_tests, azsdk_customized_code_update, azsdk_package_update_changelog_content, azsdk_package_update_metadata, azsdk_package_update_version.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1671,1672,1673,1674],{"name":11,"slug":8,"type":16},{"name":1645,"slug":1646,"type":16},{"name":1616,"slug":1617,"type":16},{"name":1619,"slug":1620,"type":16},"2026-07-12T08:17:37.08523",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1604,"repoUrl":1605,"updatedAt":1687},"markdown-token-optimizer","optimize markdown files for token efficiency","Analyze markdown files for token efficiency and reduce context-window bloat. **UTILITY SKILL**. DO NOT USE FOR: code optimization, general file editing, non-markdown files. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size. INVOKES: waza CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1682,1685,1686],{"name":1683,"slug":1684,"type":16},"LLM","llm",{"name":1543,"slug":1544,"type":16},{"name":1662,"slug":1663,"type":16},"2026-07-12T08:17:42.080413",{"slug":1689,"name":1689,"fn":1690,"description":1691,"org":1692,"tags":1693,"stars":1604,"repoUrl":1605,"updatedAt":1700},"pipeline-troubleshooting","troubleshoot Azure SDK CI pipelines","Diagnose and resolve failures in Azure SDK CI and generation pipelines. **UTILITY SKILL**. USE FOR: \"pipeline failed\", \"build failure\", \"CI check failing\", \"SDK generation error\", \"reproduce pipeline locally\", \"debug SDK pipeline\". DO NOT USE FOR: local build issues without pipeline context, API design review, SDK publishing. INVOKES: azure-sdk-mcp:azsdk_analyze_pipeline, azure-sdk-mcp:azsdk_package_build_code, azure-sdk-mcp:azsdk_package_run_check.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1694,1695,1696,1699],{"name":11,"slug":8,"type":16},{"name":1645,"slug":1646,"type":16},{"name":1697,"slug":1698,"type":16},"Debugging","debugging",{"name":1616,"slug":1617,"type":16},"2026-07-12T08:17:40.821512",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":1604,"repoUrl":1605,"updatedAt":1713},"sensei","improve skill frontmatter compliance","**WORKFLOW SKILL** — Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts\u002Fchecks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1707,1708,1709,1712],{"name":11,"slug":8,"type":16},{"name":1558,"slug":1559,"type":16},{"name":1710,"slug":1711,"type":16},"Process Optimization","process-optimization",{"name":1662,"slug":1663,"type":16},"2026-07-12T08:17:32.970921",{"slug":1715,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":1604,"repoUrl":1605,"updatedAt":1725},"skill-authoring","author agent skills for agentskills.io","Write Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\". DO NOT USE FOR: improving existing skills (use sensei), general documentation. INVOKES: waza CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1720,1721,1724],{"name":1602,"slug":1603,"type":16},{"name":1722,"slug":1723,"type":16},"Plugin Development","plugin-development",{"name":1662,"slug":1663,"type":16},"2026-07-12T08:17:35.873862",109]