[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-sdaf-readiness-check":3,"mdc-2712yy-key":35,"related-org-azure-sdaf-readiness-check":584,"related-repo-azure-sdaf-readiness-check":756},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"sdaf-readiness-check","perform SDAF deployment readiness checks","Pre-flight an SDAF host, subscription, and configuration set BEFORE any deploy. Runs the required Linux toolchain check (`check_workstation.sh`) as documented in `docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification`. Also walks the documented \"Before you begin\" gates from `docs\u002Flocal\u002F01-00-prerequisites.md`. Use when a user says \"pre-flight SDAF\", \"check SDAF readiness\", \"review my tfvars\", \"am I ready to deploy the control plane\", or \"check SDAF prerequisites\". Do NOT use to actually deploy (see sdaf-control-plane-bootstrap \u002F sdaf-workload-zone \u002F sdaf-sap-system) or to triage a failed run (see sdaf-failure-triage).\n",{"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,15,18,21],{"name":11,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"Linux","linux",{"name":19,"slug":20,"type":14},"Deployment","deployment",{"name":22,"slug":23,"type":14},"SAP","sap",143,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fsap-automation","2026-09-02T07:48:05.265502","MIT",173,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"This is the repository supporting the SAP deployment automation framework on Azure","https:\u002F\u002Fgithub.com\u002FAzure\u002Fsap-automation\u002Ftree\u002FHEAD\u002Fskills\u002Fsdaf-readiness-check","---\nname: sdaf-readiness-check\ndescription: >\n  Pre-flight an SDAF host, subscription, and configuration set BEFORE any\n  deploy. Runs the required Linux toolchain check (`check_workstation.sh`) as\n  documented in `docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness\n  verification`. Also walks the documented \"Before you begin\" gates from\n  `docs\u002Flocal\u002F01-00-prerequisites.md`. Use when a user says \"pre-flight SDAF\",\n  \"check SDAF readiness\", \"review my tfvars\", \"am I ready to deploy the\n  control plane\", or \"check SDAF prerequisites\". Do NOT use to actually deploy\n  (see sdaf-control-plane-bootstrap \u002F sdaf-workload-zone \u002F sdaf-sap-system)\n  or to triage a failed run (see sdaf-failure-triage).\nallowed-tools: shell\nlicense: MIT\n---\n\n# SDAF Readiness Check\n\nAction-loop skill. Drives the shipped readiness helpers per the documented\n`Readiness verification` subsection, and honours the documented pre-deploy\ngates. Reports what was checked and what failed; refuses to invent checks the\ndocs and shipped scripts do not describe.\n\n## When to invoke\n\nTrigger on: \"pre-flight\", \"readiness\", \"review tfvars\", \"before I deploy\",\n\"prerequisites for SDAF\".\n\nDo NOT trigger on: deploying a stage; installing SDAF; troubleshooting a run\nthat already failed (use `sdaf-failure-triage`).\n\n## Preconditions\n\n- The SDAF checkout is available (env `SAP_AUTOMATION_REPO_PATH`).\n- The config workspace is available (env `CONFIG_REPO_PATH`).\n- Target subscription is picked (env `ARM_SUBSCRIPTION_ID`).\n\nIf any of the three env vars is unset, stop and print\n`docs\u002Flocal\u002Ftroubleshooting.md § A required export is missing`.\n\n## Recipe\n\n### Step 1 — Documented \"Before you begin\" gates\n\nWalk the operator through the two doc-defined gates in this order:\n\n- `docs\u002Flocal\u002F01-00-prerequisites.md § Before you begin`, `§ Pin versions`,\n  `§ Plan identity and access`, `§ Review networking, DNS, and quota`,\n  `§ Review configuration ownership`, `§ Review gate`.\n- `docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Before you begin`,\n  `§ Prepare the host`, `§ Prepare configuration`,\n  `§ Protect secrets and transient files`, `§ Review gate`.\n\nDo NOT summarise the identity role set from memory; the docs point at the\nidentity-and-access section rather than restating the role set inline. Point\nthe operator at that section and stop.\n\n### Step 2 — Run the documented readiness checks\n\n`docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification`\nrequires `check_workstation.sh`. Read its output as the authority on what it\nchecks; do not narrate behaviour beyond what the script prints. Require\nnon-empty versions for `az`, `terraform`, `ansible`, and `jq`, even when the\nscript exits `0`. See\n[`references\u002Fhost-readiness.md`](references\u002Fhost-readiness.md) for the\nminimal notes needed to route failures.\n\nDo not run `validate.sh` against current workspace `.tfvars`; it expects the\nlegacy JSON parameter shape, while current `.tfvars` use Terraform HCL. Review\nconfiguration through the documented stage-specific plan and review gate.\n\nExit-code discipline for each invocation:\n\n- `0` — the script signalled success. Read the output anyway; a printed\n  warning is a real signal.\n- non-zero — a failure or a validation-gate refusal. Do not claim the check\n  passed. Route the failure by the section named in\n  [`references\u002Fhost-readiness.md`](references\u002Fhost-readiness.md).\n\n### Step 3 — Route any failure before deploying\n\nIf the required check reports a failure or any required version is blank, do\nnot proceed to deploy. Route via\n`sdaf-failure-triage` if the failure symptom is ambiguous, or directly to\nthe doc anchor named in `references\u002Fhost-readiness.md`.\n\n## Hard rules\n\n- **Do not** infer or reconstruct undocumented behaviour of any readiness\n  script (D19). If the docs, `Get-Help`, or shipped script output are silent,\n  say so and stop.\n- **Do not** grant broad Azure roles \"to bypass an error\"\n  (`docs\u002Flocal\u002Ftroubleshooting.md § Azure authentication or authorization fails`).\n- **Do not** claim success without checking the shipped script's exit code.\n- **Do not** replace the shipped scripts with an ad-hoc reimplementation.\n\n## What this skill does NOT do\n\n- Does not deploy anything.\n- Does not rotate credentials, mint identities, or grant roles.\n- Does not attempt to diagnose network paths beyond running the shipped URL\n  check.\n- Does not summarise identity-role sets from memory (docs point to code \u002F\n  the identity-and-access section).\n\n## See also\n\n- `sdaf-orientation-and-surface` — surface choice, prints install commands.\n- `sdaf-workspace-and-tfvars` — current workspace layout and naming.\n- `sdaf-control-plane-bootstrap` — the first deploy step.\n- `sdaf-failure-triage` — for a run that has already failed.\n- `docs\u002Flocal\u002F01-00-prerequisites.md`,\n  `docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification`,\n  `docs\u002Flocal\u002Ftroubleshooting.md`.",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37,"license":27},"shell",{"type":39,"children":40},"root",[41,49,64,71,76,89,95,136,149,155,162,167,254,259,265,334,362,367,394,400,418,424,480,486,509,515],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","SDAF Readiness Check",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53,55,62],{"type":47,"value":54},"Action-loop skill. Drives the shipped readiness helpers per the documented\n",{"type":42,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":47,"value":61},"Readiness verification",{"type":47,"value":63}," subsection, and honours the documented pre-deploy\ngates. Reports what was checked and what failed; refuses to invent checks the\ndocs and shipped scripts do not describe.",{"type":42,"tag":65,"props":66,"children":68},"h2",{"id":67},"when-to-invoke",[69],{"type":47,"value":70},"When to invoke",{"type":42,"tag":50,"props":72,"children":73},{},[74],{"type":47,"value":75},"Trigger on: \"pre-flight\", \"readiness\", \"review tfvars\", \"before I deploy\",\n\"prerequisites for SDAF\".",{"type":42,"tag":50,"props":77,"children":78},{},[79,81,87],{"type":47,"value":80},"Do NOT trigger on: deploying a stage; installing SDAF; troubleshooting a run\nthat already failed (use ",{"type":42,"tag":56,"props":82,"children":84},{"className":83},[],[85],{"type":47,"value":86},"sdaf-failure-triage",{"type":47,"value":88},").",{"type":42,"tag":65,"props":90,"children":92},{"id":91},"preconditions",[93],{"type":47,"value":94},"Preconditions",{"type":42,"tag":96,"props":97,"children":98},"ul",{},[99,112,124],{"type":42,"tag":100,"props":101,"children":102},"li",{},[103,105,111],{"type":47,"value":104},"The SDAF checkout is available (env ",{"type":42,"tag":56,"props":106,"children":108},{"className":107},[],[109],{"type":47,"value":110},"SAP_AUTOMATION_REPO_PATH",{"type":47,"value":88},{"type":42,"tag":100,"props":113,"children":114},{},[115,117,123],{"type":47,"value":116},"The config workspace is available (env ",{"type":42,"tag":56,"props":118,"children":120},{"className":119},[],[121],{"type":47,"value":122},"CONFIG_REPO_PATH",{"type":47,"value":88},{"type":42,"tag":100,"props":125,"children":126},{},[127,129,135],{"type":47,"value":128},"Target subscription is picked (env ",{"type":42,"tag":56,"props":130,"children":132},{"className":131},[],[133],{"type":47,"value":134},"ARM_SUBSCRIPTION_ID",{"type":47,"value":88},{"type":42,"tag":50,"props":137,"children":138},{},[139,141,147],{"type":47,"value":140},"If any of the three env vars is unset, stop and print\n",{"type":42,"tag":56,"props":142,"children":144},{"className":143},[],[145],{"type":47,"value":146},"docs\u002Flocal\u002Ftroubleshooting.md § A required export is missing",{"type":47,"value":148},".",{"type":42,"tag":65,"props":150,"children":152},{"id":151},"recipe",[153],{"type":47,"value":154},"Recipe",{"type":42,"tag":156,"props":157,"children":159},"h3",{"id":158},"step-1-documented-before-you-begin-gates",[160],{"type":47,"value":161},"Step 1 — Documented \"Before you begin\" gates",{"type":42,"tag":50,"props":163,"children":164},{},[165],{"type":47,"value":166},"Walk the operator through the two doc-defined gates in this order:",{"type":42,"tag":96,"props":168,"children":169},{},[170,217],{"type":42,"tag":100,"props":171,"children":172},{},[173,179,181,187,189,195,196,202,203,209,210,216],{"type":42,"tag":56,"props":174,"children":176},{"className":175},[],[177],{"type":47,"value":178},"docs\u002Flocal\u002F01-00-prerequisites.md § Before you begin",{"type":47,"value":180},", ",{"type":42,"tag":56,"props":182,"children":184},{"className":183},[],[185],{"type":47,"value":186},"§ Pin versions",{"type":47,"value":188},",\n",{"type":42,"tag":56,"props":190,"children":192},{"className":191},[],[193],{"type":47,"value":194},"§ Plan identity and access",{"type":47,"value":180},{"type":42,"tag":56,"props":197,"children":199},{"className":198},[],[200],{"type":47,"value":201},"§ Review networking, DNS, and quota",{"type":47,"value":188},{"type":42,"tag":56,"props":204,"children":206},{"className":205},[],[207],{"type":47,"value":208},"§ Review configuration ownership",{"type":47,"value":180},{"type":42,"tag":56,"props":211,"children":213},{"className":212},[],[214],{"type":47,"value":215},"§ Review gate",{"type":47,"value":148},{"type":42,"tag":100,"props":218,"children":219},{},[220,226,227,233,234,240,241,247,248,253],{"type":42,"tag":56,"props":221,"children":223},{"className":222},[],[224],{"type":47,"value":225},"docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Before you begin",{"type":47,"value":188},{"type":42,"tag":56,"props":228,"children":230},{"className":229},[],[231],{"type":47,"value":232},"§ Prepare the host",{"type":47,"value":180},{"type":42,"tag":56,"props":235,"children":237},{"className":236},[],[238],{"type":47,"value":239},"§ Prepare configuration",{"type":47,"value":188},{"type":42,"tag":56,"props":242,"children":244},{"className":243},[],[245],{"type":47,"value":246},"§ Protect secrets and transient files",{"type":47,"value":180},{"type":42,"tag":56,"props":249,"children":251},{"className":250},[],[252],{"type":47,"value":215},{"type":47,"value":148},{"type":42,"tag":50,"props":255,"children":256},{},[257],{"type":47,"value":258},"Do NOT summarise the identity role set from memory; the docs point at the\nidentity-and-access section rather than restating the role set inline. Point\nthe operator at that section and stop.",{"type":42,"tag":156,"props":260,"children":262},{"id":261},"step-2-run-the-documented-readiness-checks",[263],{"type":47,"value":264},"Step 2 — Run the documented readiness checks",{"type":42,"tag":50,"props":266,"children":267},{},[268,274,276,282,284,290,291,297,298,304,306,312,314,320,322,332],{"type":42,"tag":56,"props":269,"children":271},{"className":270},[],[272],{"type":47,"value":273},"docs\u002Flocal\u002F02-00-prepare-execution-environment.md § Readiness verification",{"type":47,"value":275},"\nrequires ",{"type":42,"tag":56,"props":277,"children":279},{"className":278},[],[280],{"type":47,"value":281},"check_workstation.sh",{"type":47,"value":283},". Read its output as the authority on what it\nchecks; do not narrate behaviour beyond what the script prints. Require\nnon-empty versions for ",{"type":42,"tag":56,"props":285,"children":287},{"className":286},[],[288],{"type":47,"value":289},"az",{"type":47,"value":180},{"type":42,"tag":56,"props":292,"children":294},{"className":293},[],[295],{"type":47,"value":296},"terraform",{"type":47,"value":180},{"type":42,"tag":56,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":303},"ansible",{"type":47,"value":305},", and ",{"type":42,"tag":56,"props":307,"children":309},{"className":308},[],[310],{"type":47,"value":311},"jq",{"type":47,"value":313},", even when the\nscript exits ",{"type":42,"tag":56,"props":315,"children":317},{"className":316},[],[318],{"type":47,"value":319},"0",{"type":47,"value":321},". See\n",{"type":42,"tag":323,"props":324,"children":326},"a",{"href":325},"references\u002Fhost-readiness.md",[327],{"type":42,"tag":56,"props":328,"children":330},{"className":329},[],[331],{"type":47,"value":325},{"type":47,"value":333}," for the\nminimal notes needed to route failures.",{"type":42,"tag":50,"props":335,"children":336},{},[337,339,345,347,353,355,360],{"type":47,"value":338},"Do not run ",{"type":42,"tag":56,"props":340,"children":342},{"className":341},[],[343],{"type":47,"value":344},"validate.sh",{"type":47,"value":346}," against current workspace ",{"type":42,"tag":56,"props":348,"children":350},{"className":349},[],[351],{"type":47,"value":352},".tfvars",{"type":47,"value":354},"; it expects the\nlegacy JSON parameter shape, while current ",{"type":42,"tag":56,"props":356,"children":358},{"className":357},[],[359],{"type":47,"value":352},{"type":47,"value":361}," use Terraform HCL. Review\nconfiguration through the documented stage-specific plan and review gate.",{"type":42,"tag":50,"props":363,"children":364},{},[365],{"type":47,"value":366},"Exit-code discipline for each invocation:",{"type":42,"tag":96,"props":368,"children":369},{},[370,380],{"type":42,"tag":100,"props":371,"children":372},{},[373,378],{"type":42,"tag":56,"props":374,"children":376},{"className":375},[],[377],{"type":47,"value":319},{"type":47,"value":379}," — the script signalled success. Read the output anyway; a printed\nwarning is a real signal.",{"type":42,"tag":100,"props":381,"children":382},{},[383,385,393],{"type":47,"value":384},"non-zero — a failure or a validation-gate refusal. Do not claim the check\npassed. Route the failure by the section named in\n",{"type":42,"tag":323,"props":386,"children":387},{"href":325},[388],{"type":42,"tag":56,"props":389,"children":391},{"className":390},[],[392],{"type":47,"value":325},{"type":47,"value":148},{"type":42,"tag":156,"props":395,"children":397},{"id":396},"step-3-route-any-failure-before-deploying",[398],{"type":47,"value":399},"Step 3 — Route any failure before deploying",{"type":42,"tag":50,"props":401,"children":402},{},[403,405,410,412,417],{"type":47,"value":404},"If the required check reports a failure or any required version is blank, do\nnot proceed to deploy. Route via\n",{"type":42,"tag":56,"props":406,"children":408},{"className":407},[],[409],{"type":47,"value":86},{"type":47,"value":411}," if the failure symptom is ambiguous, or directly to\nthe doc anchor named in ",{"type":42,"tag":56,"props":413,"children":415},{"className":414},[],[416],{"type":47,"value":325},{"type":47,"value":148},{"type":42,"tag":65,"props":419,"children":421},{"id":420},"hard-rules",[422],{"type":47,"value":423},"Hard rules",{"type":42,"tag":96,"props":425,"children":426},{},[427,446,462,471],{"type":42,"tag":100,"props":428,"children":429},{},[430,436,438,444],{"type":42,"tag":431,"props":432,"children":433},"strong",{},[434],{"type":47,"value":435},"Do not",{"type":47,"value":437}," infer or reconstruct undocumented behaviour of any readiness\nscript (D19). If the docs, ",{"type":42,"tag":56,"props":439,"children":441},{"className":440},[],[442],{"type":47,"value":443},"Get-Help",{"type":47,"value":445},", or shipped script output are silent,\nsay so and stop.",{"type":42,"tag":100,"props":447,"children":448},{},[449,453,455,461],{"type":42,"tag":431,"props":450,"children":451},{},[452],{"type":47,"value":435},{"type":47,"value":454}," grant broad Azure roles \"to bypass an error\"\n(",{"type":42,"tag":56,"props":456,"children":458},{"className":457},[],[459],{"type":47,"value":460},"docs\u002Flocal\u002Ftroubleshooting.md § Azure authentication or authorization fails",{"type":47,"value":88},{"type":42,"tag":100,"props":463,"children":464},{},[465,469],{"type":42,"tag":431,"props":466,"children":467},{},[468],{"type":47,"value":435},{"type":47,"value":470}," claim success without checking the shipped script's exit code.",{"type":42,"tag":100,"props":472,"children":473},{},[474,478],{"type":42,"tag":431,"props":475,"children":476},{},[477],{"type":47,"value":435},{"type":47,"value":479}," replace the shipped scripts with an ad-hoc reimplementation.",{"type":42,"tag":65,"props":481,"children":483},{"id":482},"what-this-skill-does-not-do",[484],{"type":47,"value":485},"What this skill does NOT do",{"type":42,"tag":96,"props":487,"children":488},{},[489,494,499,504],{"type":42,"tag":100,"props":490,"children":491},{},[492],{"type":47,"value":493},"Does not deploy anything.",{"type":42,"tag":100,"props":495,"children":496},{},[497],{"type":47,"value":498},"Does not rotate credentials, mint identities, or grant roles.",{"type":42,"tag":100,"props":500,"children":501},{},[502],{"type":47,"value":503},"Does not attempt to diagnose network paths beyond running the shipped URL\ncheck.",{"type":42,"tag":100,"props":505,"children":506},{},[507],{"type":47,"value":508},"Does not summarise identity-role sets from memory (docs point to code \u002F\nthe identity-and-access section).",{"type":42,"tag":65,"props":510,"children":512},{"id":511},"see-also",[513],{"type":47,"value":514},"See also",{"type":42,"tag":96,"props":516,"children":517},{},[518,529,540,551,561],{"type":42,"tag":100,"props":519,"children":520},{},[521,527],{"type":42,"tag":56,"props":522,"children":524},{"className":523},[],[525],{"type":47,"value":526},"sdaf-orientation-and-surface",{"type":47,"value":528}," — surface choice, prints install commands.",{"type":42,"tag":100,"props":530,"children":531},{},[532,538],{"type":42,"tag":56,"props":533,"children":535},{"className":534},[],[536],{"type":47,"value":537},"sdaf-workspace-and-tfvars",{"type":47,"value":539}," — current workspace layout and naming.",{"type":42,"tag":100,"props":541,"children":542},{},[543,549],{"type":42,"tag":56,"props":544,"children":546},{"className":545},[],[547],{"type":47,"value":548},"sdaf-control-plane-bootstrap",{"type":47,"value":550}," — the first deploy step.",{"type":42,"tag":100,"props":552,"children":553},{},[554,559],{"type":42,"tag":56,"props":555,"children":557},{"className":556},[],[558],{"type":47,"value":86},{"type":47,"value":560}," — for a run that has already failed.",{"type":42,"tag":100,"props":562,"children":563},{},[564,570,571,576,577,583],{"type":42,"tag":56,"props":565,"children":567},{"className":566},[],[568],{"type":47,"value":569},"docs\u002Flocal\u002F01-00-prerequisites.md",{"type":47,"value":188},{"type":42,"tag":56,"props":572,"children":574},{"className":573},[],[575],{"type":47,"value":273},{"type":47,"value":188},{"type":42,"tag":56,"props":578,"children":580},{"className":579},[],[581],{"type":47,"value":582},"docs\u002Flocal\u002Ftroubleshooting.md",{"type":47,"value":148},{"items":585,"total":755},[586,605,622,634,646,663,674,687,697,710,722,742],{"slug":587,"name":587,"fn":588,"description":589,"org":590,"tags":591,"stars":602,"repoUrl":603,"updatedAt":604},"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},[592,593,596,599],{"name":11,"slug":8,"type":14},{"name":594,"slug":595,"type":14},"Compliance","compliance",{"name":597,"slug":598,"type":14},"Governance","governance",{"name":600,"slug":601,"type":14},"Policy","policy",1689,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":606,"name":606,"fn":607,"description":608,"org":609,"tags":610,"stars":619,"repoUrl":620,"updatedAt":621},"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},[611,612,613,616],{"name":11,"slug":8,"type":14},{"name":19,"slug":20,"type":14},{"name":614,"slug":615,"type":14},"Infrastructure as Code","infrastructure-as-code",{"name":617,"slug":618,"type":14},"Migration","migration",261,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-08-20T03:28:18.136156",{"slug":623,"name":623,"fn":624,"description":625,"org":626,"tags":627,"stars":24,"repoUrl":25,"updatedAt":633},"sdaf-bom-selection","select SAP Bill of Materials","Pick the right SDAF BOM for a target SAP product \u002F release \u002F DB platform \u002F version \u002F kernel \u002F topology. Explains where BOMs live in the samples repo (`SAP\u002F` for whole products, `BOM\u002F` for components), decodes the `ms`, `v####`, and `latest` suffix conventions, points at the compatibility guardrails (`supportedPlatforms`, `supportedDBVersions`, `supportedKernels`), and reminds the operator that the download flow needs four explicit BOM keys in `sap-parameters.yaml`. Use when a user says \"which BOM do I use\", \"product BOM vs component BOM\", \"SAP samples BOM catalog\", \"BOM_CATALOG\", \"S4\u002F2023 BOM\", \"HANA BOM\", or \"how do I pick a BOM for HANA\u002FOracle\u002FDB2\u002FASE\". Do NOT use to author a new BOM, to acquire media (`sdaf-media-acquisition`), or to troubleshoot a checksum \u002F 404 (`sdaf-media-diagnostics`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[628,629,632],{"name":11,"slug":8,"type":14},{"name":630,"slug":631,"type":14},"Configuration","configuration",{"name":22,"slug":23,"type":14},"2026-09-02T07:47:45.597063",{"slug":548,"name":548,"fn":635,"description":636,"org":637,"tags":638,"stars":24,"repoUrl":25,"updatedAt":645},"deploy SDAF control plane infrastructure","Deploy the SDAF control plane locally: prepare DEPLOYER and LIBRARY tfvars, review the plan, run `deploy_controlplane.sh` per `docs\u002Flocal\u002F03-00-control-plane.md § Run`, and validate the deployer + library + state hand-off. Grounded in `docs\u002Flocal\u002F03-00-control-plane.md`. Use when a user says \"deploy the SDAF control plane\", \"run deploy_controlplane.sh\", \"bootstrap SDAF from an empty subscription\", \"install the deployer\" or \"create the SAP library\". Do NOT use for workload zone (see sdaf-workload-zone), SAP system (see sdaf-sap-system), removal (`sdaf-safe-removal`), or Azure Government \u002F sovereign-cloud deltas (`sdaf-sovereign-cloud`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[639,640,641,644],{"name":11,"slug":8,"type":14},{"name":19,"slug":20,"type":14},{"name":642,"slug":643,"type":14},"Infrastructure","infrastructure",{"name":22,"slug":23,"type":14},"2026-09-02T07:46:51.573641",{"slug":86,"name":86,"fn":647,"description":648,"org":649,"tags":650,"stars":24,"repoUrl":25,"updatedAt":662},"triage failed SAP automation runs","Triage a failed or suspicious SDAF run: distinguish a real failure from a green no-op or a clean plan reported as failure, map the observed symptom to a documented cause in `docs\u002Flocal\u002Ftroubleshooting.md`, and hand off to the stage-owning skill for retry. Use when a user says \"SDAF run failed\", \"my deploy exited non-zero\", \"the plan was clean but exit 1\", \"the run said success but nothing was deployed\", \"state lock error\", \"unexpected replacement\", \"control plane stopped partway\", \"generated hosts.yaml missing\", \"workload-zone private endpoint failure\", \"workload-zone subnet policy failure\", or \"SDAF exit 2\". Do NOT use to actually deploy or to redesign the workspace layout.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[651,652,655,658,659],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},"Diagnostics","diagnostics",{"name":656,"slug":657,"type":14},"Operations","operations",{"name":22,"slug":23,"type":14},{"name":660,"slug":661,"type":14},"Triage","triage","2026-09-02T07:47:40.607437",{"slug":664,"name":664,"fn":665,"description":666,"org":667,"tags":668,"stars":24,"repoUrl":25,"updatedAt":673},"sdaf-ha-diagnostics","diagnose SDAF high-availability cluster failures","Diagnose a live or recently failed SDAF high-availability cluster without changing cluster state. Start read-first: capture `crm status full` or `pcs status --full`, inspect SBD or fencing evidence, confirm current resource placement, and reuse existing quality-assurance or HCMT artifacts. Grounded in `docs\u002Flocal\u002F07-10-quality-assurance.md`, the shipped Pacemaker role vars\u002Ftasks, and the SAP Automation QA setup role. Use when a user says \"diagnose my HANA failover\", \"crm status\", \"pcs status\", \"check fencing\", \"why is the SCS\u002FERS cluster unhealthy\", \"offline_validation\u002Fcib\", or \"review an HCMT result zip\". Do NOT use for pre-deploy topology or design choices (see `sdaf-ha-topology`), fresh installation\u002Fdeploy, or disruptive failover\u002Ffencing exercises (see `sdaf-quality-assurance`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[669,670,671,672],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},{"name":656,"slug":657,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:48:04.154501",{"slug":675,"name":675,"fn":676,"description":677,"org":678,"tags":679,"stars":24,"repoUrl":25,"updatedAt":686},"sdaf-ha-topology","design high-availability SAP topologies","Choose the documented SDAF high-availability design before SAP-system deployment. Use when a user asks which HA topology to deploy, whether to use AFA or SBD, AFS or ANF, HANA scale-up or scale-out, whether ANGI is allowed, or which HA inputs must be set before deployment. Ground answers in the current support matrix, Ansible roles, sample tfvars, and validation logic. Do NOT use for live cluster diagnosis (sdaf-ha-diagnostics) or for running the installers (sdaf-sap-installation).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[680,683,684,685],{"name":681,"slug":682,"type":14},"Architecture","architecture",{"name":11,"slug":8,"type":14},{"name":642,"slug":643,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:47:43.405138",{"slug":688,"name":688,"fn":689,"description":690,"org":691,"tags":692,"stars":24,"repoUrl":25,"updatedAt":696},"sdaf-media-acquisition","acquire SAP installation media","Acquire approved SAP media into the SDAF library after SAP-system infrastructure exists. Drives local `deploy\u002Fansible\u002Fdownload_menu.sh` per `docs\u002Flocal\u002F06-00-software-and-installation.md § Download software`, enforces the documented `BOM_CATALOG` root and the four required `sap-parameters.yaml` BOM keys (`application_bom_name`, `database_bom_name`, `sap_kernel_bom_name`, `save_bom_as`), and explains the documented download and validation flow. Use for \"download SAP media\", \"run download_menu.sh\", \"acquire software into the library\", \"BOM Downloader\", \"BOM_CATALOG\", or \"assemble application\u002Fdatabase\u002Fkernel BOMs for download\". Do NOT use to choose a BOM, troubleshoot a failed download, or run installation playbooks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[693,694,695],{"name":11,"slug":8,"type":14},{"name":656,"slug":657,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:46:44.504107",{"slug":698,"name":698,"fn":699,"description":700,"org":701,"tags":702,"stars":24,"repoUrl":25,"updatedAt":709},"sdaf-media-diagnostics","diagnose SDAF media and BOM processing","Diagnose SDAF software-download and BOM-processing failures after a BOM is already selected. Covers the documented local media path, SAP download, storage-account upload\u002Fdownload, checksum validation, and `SAPCAR` \u002F `.EXE` extraction. Use when a user says \"download_menu failed\", \"BOM downloader 404\", \"missing archive\", \"checksum mismatch\", \"SAPCAR failed\", \"bom-processing-done missing\", or \"my SPS07 media run can't find a file\". Do NOT use to choose a BOM (see `sdaf-bom-selection`), to run a clean first-time media download with no failure, or to diagnose a later non-media install failure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[703,704,705,706],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},{"name":22,"slug":23,"type":14},{"name":707,"slug":708,"type":14},"Storage","storage","2026-09-02T07:48:06.369058",{"slug":526,"name":526,"fn":711,"description":712,"org":713,"tags":714,"stars":24,"repoUrl":25,"updatedAt":721},"orient users to SDAF architecture","Orient a newcomer to the SAP Deployment Automation Framework (SDAF): explain the spine (control plane → workload zone → SAP system → software → install → operate\u002Fremove), summarise the three execution surfaces (Local, Azure DevOps, GitHub Actions), and print the install command for the matching surface bootstrap plugin — as documented in this repository's `docs\u002FPLUGINS.md` — so the operator can run it manually. Use when a user says \"what is SDAF\", \"how is SDAF structured\", \"where do I start with SDAF\", \"which surface should I use\", \"SDAF Local vs ADO vs GitHub\", \"workstation vs Azure Pipelines vs GitHub workflows\", \"how do I install the SDAF ADO\u002FGitHub plugin\", or \"I'm new to SDAF\". Do NOT use for readiness pre-flight (see sdaf-readiness-check), workspace\u002Ftfvars layout (see sdaf-workspace-and-tfvars), or troubleshooting a failed run (see sdaf-failure-triage).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[715,716,717,720],{"name":681,"slug":682,"type":14},{"name":11,"slug":8,"type":14},{"name":718,"slug":719,"type":14},"Documentation","documentation",{"name":22,"slug":23,"type":14},"2026-09-02T07:46:52.116557",{"slug":723,"name":723,"fn":724,"description":725,"org":726,"tags":727,"stars":24,"repoUrl":25,"updatedAt":741},"sdaf-plan-and-test-semantics","manage SDAF plan and test semantics","Explain SDAF plan-only \u002F test \u002F apply semantics without pretending they are universal. Compares the documented Local commands, Azure DevOps wrapper pipelines, and GitHub Actions workflows for control plane, workload zone, and SAP system: local stage commands show Terraform plans and then apply after approval; ADO\u002FGitHub workload-zone and SAP-system test runs stop after the plan; the current hosted control-plane test options do not provide a plan-only run. Use when a user says \"what does test do in SDAF\", \"is this a real dry run\", \"plan-only vs apply\", \"workflow 01 dry-run\", \"pipeline 02 test\", or \"TEST_ONLY\". Do NOT use to actually deploy a stage or to triage a failed run (see sdaf-control-plane-bootstrap \u002F sdaf-workload-zone \u002F sdaf-sap-system \u002F sdaf-failure-triage).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[728,731,732,735,738],{"name":729,"slug":730,"type":14},"Automation","automation",{"name":11,"slug":8,"type":14},{"name":733,"slug":734,"type":14},"Azure DevOps","azure-devops",{"name":736,"slug":737,"type":14},"CI\u002FCD","ci-cd",{"name":739,"slug":740,"type":14},"GitHub Actions","github-actions","2026-09-02T07:48:08.951811",{"slug":743,"name":743,"fn":744,"description":745,"org":746,"tags":747,"stars":24,"repoUrl":25,"updatedAt":754},"sdaf-quality-assurance","validate deployed SDAF SAP systems","Validate a deployed SDAF SAP system through the SDAF-owned QA entry points: the local quality-assurance menu and the documented Azure DevOps pipeline 13 path. Choose configuration checks vs functional tests, apply `TEST_GROUPS` \u002F `TEST_CASES` safely, interpret `quality_assurance\u002F` and `logs\u002F`, and enforce the documented boundary that the GitHub Actions wrapper is still pending. Use when a user says \"run quality assurance\", \"run configuration checks\", \"pipeline 13 QA\", \"offline HA validation\", or \"why does the report say No test results found\". Do NOT use to deploy the SAP system or generate `sap-parameters.yaml` \u002F `\u003CSID>_hosts.yaml` (see `sdaf-sap-system`), or for a generic failed-run report with no QA-stage context (see `sdaf-failure-triage`).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[748,749,750,753],{"name":729,"slug":730,"type":14},{"name":11,"slug":8,"type":14},{"name":751,"slug":752,"type":14},"Quality Assurance","quality-assurance",{"name":22,"slug":23,"type":14},"2026-09-02T07:46:49.932123",145,{"items":757,"total":806},[758,764,771,779,786,793,799],{"slug":623,"name":623,"fn":624,"description":625,"org":759,"tags":760,"stars":24,"repoUrl":25,"updatedAt":633},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[761,762,763],{"name":11,"slug":8,"type":14},{"name":630,"slug":631,"type":14},{"name":22,"slug":23,"type":14},{"slug":548,"name":548,"fn":635,"description":636,"org":765,"tags":766,"stars":24,"repoUrl":25,"updatedAt":645},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[767,768,769,770],{"name":11,"slug":8,"type":14},{"name":19,"slug":20,"type":14},{"name":642,"slug":643,"type":14},{"name":22,"slug":23,"type":14},{"slug":86,"name":86,"fn":647,"description":648,"org":772,"tags":773,"stars":24,"repoUrl":25,"updatedAt":662},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[774,775,776,777,778],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},{"name":656,"slug":657,"type":14},{"name":22,"slug":23,"type":14},{"name":660,"slug":661,"type":14},{"slug":664,"name":664,"fn":665,"description":666,"org":780,"tags":781,"stars":24,"repoUrl":25,"updatedAt":673},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[782,783,784,785],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},{"name":656,"slug":657,"type":14},{"name":22,"slug":23,"type":14},{"slug":675,"name":675,"fn":676,"description":677,"org":787,"tags":788,"stars":24,"repoUrl":25,"updatedAt":686},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[789,790,791,792],{"name":681,"slug":682,"type":14},{"name":11,"slug":8,"type":14},{"name":642,"slug":643,"type":14},{"name":22,"slug":23,"type":14},{"slug":688,"name":688,"fn":689,"description":690,"org":794,"tags":795,"stars":24,"repoUrl":25,"updatedAt":696},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[796,797,798],{"name":11,"slug":8,"type":14},{"name":656,"slug":657,"type":14},{"name":22,"slug":23,"type":14},{"slug":698,"name":698,"fn":699,"description":700,"org":800,"tags":801,"stars":24,"repoUrl":25,"updatedAt":709},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[802,803,804,805],{"name":11,"slug":8,"type":14},{"name":653,"slug":654,"type":14},{"name":22,"slug":23,"type":14},{"name":707,"slug":708,"type":14},18]