[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-sdaf-quality-assurance":3,"mdc--bam45j-key":35,"related-repo-azure-sdaf-quality-assurance":1166,"related-org-azure-sdaf-quality-assurance":1260},{"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-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},"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},"Automation","automation",{"name":19,"slug":20,"type":14},"Quality Assurance","quality-assurance",{"name":22,"slug":23,"type":14},"SAP","sap",143,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fsap-automation","2026-09-02T07:46:49.932123","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-quality-assurance","---\nname: sdaf-quality-assurance\ndescription: >\n  Validate a deployed SDAF SAP system through the SDAF-owned QA entry points:\n  the local quality-assurance menu and the documented Azure DevOps pipeline\n  13 path. Choose configuration checks vs functional\n  tests, apply `TEST_GROUPS` \u002F `TEST_CASES` safely, interpret\n  `quality_assurance\u002F` and `logs\u002F`, and enforce the documented boundary that\n  the GitHub Actions wrapper is still pending. Use when a user says \"run\n  quality assurance\", \"run configuration checks\", \"pipeline 13 QA\", \"offline\n  HA validation\", or \"why does the report say No test results found\". Do NOT\n  use to deploy the SAP system or generate `sap-parameters.yaml` \u002F\n  `\u003CSID>_hosts.yaml` (see `sdaf-sap-system`), or for a generic failed-run\n  report with no QA-stage context (see `sdaf-failure-triage`).\nallowed-tools: shell\nlicense: MIT\n---\n\n# SDAF Quality Assurance\n\nAction-loop skill. Validate an already deployed and installed SAP system\nthrough SDAF's own QA surfaces only. Durable anchors and the full test matrix\nlive in [`references\u002Fqa-entrypoints.md`](references\u002Fqa-entrypoints.md).\n\n## When to invoke\nTrigger on: \"run quality assurance\", \"run configuration checks\", \"run SAP\nfunctional tests\", \"pipeline 13 QA\", \"offline HA validation\", \"read the QA\nreport\", \"why does the report say No test results found\", or \"which\nTEST_GROUPS \u002F TEST_CASES should I use\".\n\nDo NOT trigger on: deploying the SAP-system infrastructure, generating\n`sap-parameters.yaml` or `\u003CSID>_hosts.yaml`, software download, or a generic\n\"my SDAF run failed\" report that is not yet tied to the QA stage.\n\n## Surface availability\n| Surface | Availability | What to do |\n| --- | --- | --- |\n| Local \u002F scripted | Fully documented and runnable through the quality-assurance menu | Use this skill directly. |\n| Azure DevOps | The operator documentation describes pipeline 13; the public bootstrap wrapper is still documented as proposed | Use this skill only if the operator already has a real pipeline-13 path. |\n| GitHub Actions | Wrapper workflow is still documented as pending | Say the docs mark it pending and stop; do not invent the workflow. |\n\n## Preconditions\n- The SAP system is already installed and running; QA validates a configured\n  system and does not install one.\n- The system workspace contains `sap-parameters.yaml` and\n  `\u003CSAP_SID>_hosts.yaml`.\n- Azure sign-in works and the operator can read the workload-zone Key Vault.\n- The execution host can reach every inventory host over SSH.\n- Local runs additionally require outbound `https:\u002F\u002Fgithub.com`, `sudo`, and\n  `ARM_CLIENT_ID` on multi-identity hosts.\n- Azure DevOps runs additionally require a self-hosted agent.\n\n## Safety and test modes\n- `ConfigurationChecks` and offline HA validation are non-disruptive.\n- Online `SAPFunctionalTests` are disruptive; require an approved maintenance\n  window.\n- Supported functional families are DB HA, SCS HA, and Azure Backup DB.\n- Exact menu \u002F pipeline \u002F framework playbook mapping is in the reference\n  file.\n\n## Local path\n1. Change to the system workspace:\n   ```bash\n   cd \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FSYSTEM\u002F\u003CSAP_SYSTEM>\"\n   ```\n\n2. Confirm required artifacts:\n\n   ```bash\n   test -f sap-parameters.yaml\n   test -f \"\u003CSAP_SID>_hosts.yaml\"\n   ```\n\n3. Start with configuration checks:\n\n   ```bash\n   run_with_key_cleanup() (\n     set -e; trap 'rm -f -- \"$PWD\u002Fsshkey\"' EXIT\n     \"$@\"\n   )\n   run_with_key_cleanup \\\n     \"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fansible\u002Fquality_assurance_menu.sh\" \\\n     && test ! -e \"$PWD\u002Fsshkey\"\n   ```\n\n4. Narrow a functional run only by exporting the selection first:\n   ```bash\n   TEST_GROUPS=\"HA_SCS\" \\\n   TEST_CASES=\"ascs-migration\" \\\n   run_with_key_cleanup \\\n     \"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fansible\u002Fquality_assurance_menu.sh\" \\\n     && test ! -e \"$PWD\u002Fsshkey\"\n   ```\n\n## Selection rules\n- `TEST_GROUPS` is one exact group name.\n- `TEST_CASES` is a comma-separated list of framework `task_name` values, not\n  display names; e.g. `ascs-migration`, not `Manual ASCS Migration`.\n- Always set `TEST_GROUPS` when setting `TEST_CASES`.\n- The preparation playbook writes the resolved selection to\n  `artifacts\u002Fqa_test_selection.json`; use it to confirm the requested scope.\n- Validate group and case names against the pinned framework version from\n  `deploy\u002Fansible\u002Fvars\u002Fansible-input-api.yaml`.\n- Offline HA runs additionally require `offline_validation\u002F\u003Cinventory host>\u002Fcib`;\n  otherwise stop before the playbook.\n\n## Azure DevOps contract\nWhen an SDAF ADO environment already exposes pipeline 13, this skill owns the\nstage semantics:\n\n- queue-time selection lives in `test_type`, `sap_functional_test_type`,\n  `test_groups`, `test_cases`, and `offline_mode`;\n- the prep script validates `extra_params` as `-e key=value` only;\n- the run performs **Quality Assurance Setup**, then\n  **Quality Assurance Execution** for the selected framework;\n- logs and reports are collected from `SYSTEM\u002F\u003Cconfig>\u002Flogs` and\n  `SYSTEM\u002F\u003Cconfig>\u002Fquality_assurance`.\n\nIf the operator cannot point to an actual wired pipeline-13 path, stop at the\ndocumented availability boundary rather than assuming the proposed wrapper is\npresent.\n\n## Validate\n\nConfirm all of the following:\n\n- `quality_assurance\u002F` contains the HTML report.\n- `logs\u002F\u003Ctest_group_invocation_id>.log` exists; it is the machine-readable\n  JSONL result record.\n- `logs\u002Fexecution_\u003Ctimestamp>.log` exists and matches the completion banner.\n- `No test results found.` means no results log was produced, not that the run\n  passed.\n- For functional tests, the cluster returned to its expected state before the\n  maintenance window closed.\n\n## Routing boundaries\n\n- Need to deploy the system first or generate `sap-parameters.yaml` \u002F\n  `\u003CSID>_hosts.yaml` → `sdaf-sap-system`.\n- Generic failed-run triage or a non-QA symptom → `sdaf-failure-triage`.\n- Asked for a GitHub Actions QA wrapper → say the docs mark it pending and\n  stop.\n- Do not infer undocumented STAF-side behaviour or additional surfaces.\n\n## See also\n\n- [`references\u002Fqa-entrypoints.md`](references\u002Fqa-entrypoints.md)\n- `sdaf-sap-system`, `sdaf-failure-triage`\n- `docs\u002Flocal\u002F07-10-quality-assurance.md`, `docs\u002Fdeployment-options.md`,\n  `docs\u002Fdocumentation-source-map.md`, `docs\u002Fsupportability.md`\n",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37,"license":27},"shell",{"type":39,"children":40},"root",[41,49,68,75,80,101,107,194,200,273,279,316,322,747,753,855,861,866,971,976,982,987,1039,1045,1096,1102,1160],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","SDAF Quality Assurance",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53,55,66],{"type":47,"value":54},"Action-loop skill. Validate an already deployed and installed SAP system\nthrough SDAF's own QA surfaces only. Durable anchors and the full test matrix\nlive in ",{"type":42,"tag":56,"props":57,"children":59},"a",{"href":58},"references\u002Fqa-entrypoints.md",[60],{"type":42,"tag":61,"props":62,"children":64},"code",{"className":63},[],[65],{"type":47,"value":58},{"type":47,"value":67},".",{"type":42,"tag":69,"props":70,"children":72},"h2",{"id":71},"when-to-invoke",[73],{"type":47,"value":74},"When to invoke",{"type":42,"tag":50,"props":76,"children":77},{},[78],{"type":47,"value":79},"Trigger on: \"run quality assurance\", \"run configuration checks\", \"run SAP\nfunctional tests\", \"pipeline 13 QA\", \"offline HA validation\", \"read the QA\nreport\", \"why does the report say No test results found\", or \"which\nTEST_GROUPS \u002F TEST_CASES should I use\".",{"type":42,"tag":50,"props":81,"children":82},{},[83,85,91,93,99],{"type":47,"value":84},"Do NOT trigger on: deploying the SAP-system infrastructure, generating\n",{"type":42,"tag":61,"props":86,"children":88},{"className":87},[],[89],{"type":47,"value":90},"sap-parameters.yaml",{"type":47,"value":92}," or ",{"type":42,"tag":61,"props":94,"children":96},{"className":95},[],[97],{"type":47,"value":98},"\u003CSID>_hosts.yaml",{"type":47,"value":100},", software download, or a generic\n\"my SDAF run failed\" report that is not yet tied to the QA stage.",{"type":42,"tag":69,"props":102,"children":104},{"id":103},"surface-availability",[105],{"type":47,"value":106},"Surface availability",{"type":42,"tag":108,"props":109,"children":110},"table",{},[111,135],{"type":42,"tag":112,"props":113,"children":114},"thead",{},[115],{"type":42,"tag":116,"props":117,"children":118},"tr",{},[119,125,130],{"type":42,"tag":120,"props":121,"children":122},"th",{},[123],{"type":47,"value":124},"Surface",{"type":42,"tag":120,"props":126,"children":127},{},[128],{"type":47,"value":129},"Availability",{"type":42,"tag":120,"props":131,"children":132},{},[133],{"type":47,"value":134},"What to do",{"type":42,"tag":136,"props":137,"children":138},"tbody",{},[139,158,176],{"type":42,"tag":116,"props":140,"children":141},{},[142,148,153],{"type":42,"tag":143,"props":144,"children":145},"td",{},[146],{"type":47,"value":147},"Local \u002F scripted",{"type":42,"tag":143,"props":149,"children":150},{},[151],{"type":47,"value":152},"Fully documented and runnable through the quality-assurance menu",{"type":42,"tag":143,"props":154,"children":155},{},[156],{"type":47,"value":157},"Use this skill directly.",{"type":42,"tag":116,"props":159,"children":160},{},[161,166,171],{"type":42,"tag":143,"props":162,"children":163},{},[164],{"type":47,"value":165},"Azure DevOps",{"type":42,"tag":143,"props":167,"children":168},{},[169],{"type":47,"value":170},"The operator documentation describes pipeline 13; the public bootstrap wrapper is still documented as proposed",{"type":42,"tag":143,"props":172,"children":173},{},[174],{"type":47,"value":175},"Use this skill only if the operator already has a real pipeline-13 path.",{"type":42,"tag":116,"props":177,"children":178},{},[179,184,189],{"type":42,"tag":143,"props":180,"children":181},{},[182],{"type":47,"value":183},"GitHub Actions",{"type":42,"tag":143,"props":185,"children":186},{},[187],{"type":47,"value":188},"Wrapper workflow is still documented as pending",{"type":42,"tag":143,"props":190,"children":191},{},[192],{"type":47,"value":193},"Say the docs mark it pending and stop; do not invent the workflow.",{"type":42,"tag":69,"props":195,"children":197},{"id":196},"preconditions",[198],{"type":47,"value":199},"Preconditions",{"type":42,"tag":201,"props":202,"children":203},"ul",{},[204,210,229,234,239,268],{"type":42,"tag":205,"props":206,"children":207},"li",{},[208],{"type":47,"value":209},"The SAP system is already installed and running; QA validates a configured\nsystem and does not install one.",{"type":42,"tag":205,"props":211,"children":212},{},[213,215,220,222,228],{"type":47,"value":214},"The system workspace contains ",{"type":42,"tag":61,"props":216,"children":218},{"className":217},[],[219],{"type":47,"value":90},{"type":47,"value":221}," and\n",{"type":42,"tag":61,"props":223,"children":225},{"className":224},[],[226],{"type":47,"value":227},"\u003CSAP_SID>_hosts.yaml",{"type":47,"value":67},{"type":42,"tag":205,"props":230,"children":231},{},[232],{"type":47,"value":233},"Azure sign-in works and the operator can read the workload-zone Key Vault.",{"type":42,"tag":205,"props":235,"children":236},{},[237],{"type":47,"value":238},"The execution host can reach every inventory host over SSH.",{"type":42,"tag":205,"props":240,"children":241},{},[242,244,250,252,258,260,266],{"type":47,"value":243},"Local runs additionally require outbound ",{"type":42,"tag":61,"props":245,"children":247},{"className":246},[],[248],{"type":47,"value":249},"https:\u002F\u002Fgithub.com",{"type":47,"value":251},", ",{"type":42,"tag":61,"props":253,"children":255},{"className":254},[],[256],{"type":47,"value":257},"sudo",{"type":47,"value":259},", and\n",{"type":42,"tag":61,"props":261,"children":263},{"className":262},[],[264],{"type":47,"value":265},"ARM_CLIENT_ID",{"type":47,"value":267}," on multi-identity hosts.",{"type":42,"tag":205,"props":269,"children":270},{},[271],{"type":47,"value":272},"Azure DevOps runs additionally require a self-hosted agent.",{"type":42,"tag":69,"props":274,"children":276},{"id":275},"safety-and-test-modes",[277],{"type":47,"value":278},"Safety and test modes",{"type":42,"tag":201,"props":280,"children":281},{},[282,293,306,311],{"type":42,"tag":205,"props":283,"children":284},{},[285,291],{"type":42,"tag":61,"props":286,"children":288},{"className":287},[],[289],{"type":47,"value":290},"ConfigurationChecks",{"type":47,"value":292}," and offline HA validation are non-disruptive.",{"type":42,"tag":205,"props":294,"children":295},{},[296,298,304],{"type":47,"value":297},"Online ",{"type":42,"tag":61,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":303},"SAPFunctionalTests",{"type":47,"value":305}," are disruptive; require an approved maintenance\nwindow.",{"type":42,"tag":205,"props":307,"children":308},{},[309],{"type":47,"value":310},"Supported functional families are DB HA, SCS HA, and Azure Backup DB.",{"type":42,"tag":205,"props":312,"children":313},{},[314],{"type":47,"value":315},"Exact menu \u002F pipeline \u002F framework playbook mapping is in the reference\nfile.",{"type":42,"tag":69,"props":317,"children":319},{"id":318},"local-path",[320],{"type":47,"value":321},"Local path",{"type":42,"tag":323,"props":324,"children":325},"ol",{},[326,377,431,614],{"type":42,"tag":205,"props":327,"children":328},{},[329,331],{"type":47,"value":330},"Change to the system workspace:",{"type":42,"tag":332,"props":333,"children":338},"pre",{"className":334,"code":335,"language":336,"meta":337,"style":337},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","cd \"$CONFIG_REPO_PATH\u002FWORKSPACES\u002FSYSTEM\u002F\u003CSAP_SYSTEM>\"\n","bash","",[339],{"type":42,"tag":61,"props":340,"children":341},{"__ignoreMap":337},[342],{"type":42,"tag":343,"props":344,"children":347},"span",{"class":345,"line":346},"line",1,[348,354,360,366,372],{"type":42,"tag":343,"props":349,"children":351},{"style":350},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[352],{"type":47,"value":353},"cd",{"type":42,"tag":343,"props":355,"children":357},{"style":356},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[358],{"type":47,"value":359}," \"",{"type":42,"tag":343,"props":361,"children":363},{"style":362},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[364],{"type":47,"value":365},"$CONFIG_REPO_PATH",{"type":42,"tag":343,"props":367,"children":369},{"style":368},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[370],{"type":47,"value":371},"\u002FWORKSPACES\u002FSYSTEM\u002F\u003CSAP_SYSTEM>",{"type":42,"tag":343,"props":373,"children":374},{"style":356},[375],{"type":47,"value":376},"\"\n",{"type":42,"tag":205,"props":378,"children":379},{},[380,382],{"type":47,"value":381},"Confirm required artifacts:",{"type":42,"tag":332,"props":383,"children":385},{"className":334,"code":384,"language":336,"meta":337,"style":337},"test -f sap-parameters.yaml\ntest -f \"\u003CSAP_SID>_hosts.yaml\"\n",[386],{"type":42,"tag":61,"props":387,"children":388},{"__ignoreMap":337},[389,407],{"type":42,"tag":343,"props":390,"children":391},{"class":345,"line":346},[392,397,402],{"type":42,"tag":343,"props":393,"children":394},{"style":350},[395],{"type":47,"value":396},"test",{"type":42,"tag":343,"props":398,"children":399},{"style":368},[400],{"type":47,"value":401}," -f",{"type":42,"tag":343,"props":403,"children":404},{"style":368},[405],{"type":47,"value":406}," sap-parameters.yaml\n",{"type":42,"tag":343,"props":408,"children":410},{"class":345,"line":409},2,[411,415,419,423,427],{"type":42,"tag":343,"props":412,"children":413},{"style":350},[414],{"type":47,"value":396},{"type":42,"tag":343,"props":416,"children":417},{"style":368},[418],{"type":47,"value":401},{"type":42,"tag":343,"props":420,"children":421},{"style":356},[422],{"type":47,"value":359},{"type":42,"tag":343,"props":424,"children":425},{"style":368},[426],{"type":47,"value":227},{"type":42,"tag":343,"props":428,"children":429},{"style":356},[430],{"type":47,"value":376},{"type":42,"tag":205,"props":432,"children":433},{},[434,436],{"type":47,"value":435},"Start with configuration checks:",{"type":42,"tag":332,"props":437,"children":439},{"className":334,"code":438,"language":336,"meta":337,"style":337},"run_with_key_cleanup() (\n  set -e; trap 'rm -f -- \"$PWD\u002Fsshkey\"' EXIT\n  \"$@\"\n)\nrun_with_key_cleanup \\\n  \"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fansible\u002Fquality_assurance_menu.sh\" \\\n  && test ! -e \"$PWD\u002Fsshkey\"\n",[440],{"type":42,"tag":61,"props":441,"children":442},{"__ignoreMap":337},[443,461,504,524,533,546,573],{"type":42,"tag":343,"props":444,"children":445},{"class":345,"line":346},[446,451,456],{"type":42,"tag":343,"props":447,"children":448},{"style":350},[449],{"type":47,"value":450},"run_with_key_cleanup",{"type":42,"tag":343,"props":452,"children":453},{"style":356},[454],{"type":47,"value":455},"()",{"type":42,"tag":343,"props":457,"children":458},{"style":356},[459],{"type":47,"value":460}," (\n",{"type":42,"tag":343,"props":462,"children":463},{"class":345,"line":409},[464,469,474,479,484,489,494,499],{"type":42,"tag":343,"props":465,"children":466},{"style":350},[467],{"type":47,"value":468},"  set",{"type":42,"tag":343,"props":470,"children":471},{"style":368},[472],{"type":47,"value":473}," -e",{"type":42,"tag":343,"props":475,"children":476},{"style":356},[477],{"type":47,"value":478},";",{"type":42,"tag":343,"props":480,"children":481},{"style":350},[482],{"type":47,"value":483}," trap",{"type":42,"tag":343,"props":485,"children":486},{"style":356},[487],{"type":47,"value":488}," '",{"type":42,"tag":343,"props":490,"children":491},{"style":368},[492],{"type":47,"value":493},"rm -f -- \"$PWD\u002Fsshkey\"",{"type":42,"tag":343,"props":495,"children":496},{"style":356},[497],{"type":47,"value":498},"'",{"type":42,"tag":343,"props":500,"children":501},{"style":368},[502],{"type":47,"value":503}," EXIT\n",{"type":42,"tag":343,"props":505,"children":507},{"class":345,"line":506},3,[508,514,520],{"type":42,"tag":343,"props":509,"children":511},{"style":510},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[512],{"type":47,"value":513},"  \"",{"type":42,"tag":343,"props":515,"children":517},{"style":516},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[518],{"type":47,"value":519},"$@",{"type":42,"tag":343,"props":521,"children":522},{"style":510},[523],{"type":47,"value":376},{"type":42,"tag":343,"props":525,"children":527},{"class":345,"line":526},4,[528],{"type":42,"tag":343,"props":529,"children":530},{"style":356},[531],{"type":47,"value":532},")\n",{"type":42,"tag":343,"props":534,"children":536},{"class":345,"line":535},5,[537,541],{"type":42,"tag":343,"props":538,"children":539},{"style":510},[540],{"type":47,"value":450},{"type":42,"tag":343,"props":542,"children":543},{"style":362},[544],{"type":47,"value":545}," \\\n",{"type":42,"tag":343,"props":547,"children":549},{"class":345,"line":548},6,[550,554,559,564,569],{"type":42,"tag":343,"props":551,"children":552},{"style":356},[553],{"type":47,"value":513},{"type":42,"tag":343,"props":555,"children":556},{"style":362},[557],{"type":47,"value":558},"$SAP_AUTOMATION_REPO_PATH",{"type":42,"tag":343,"props":560,"children":561},{"style":368},[562],{"type":47,"value":563},"\u002Fdeploy\u002Fansible\u002Fquality_assurance_menu.sh",{"type":42,"tag":343,"props":565,"children":566},{"style":356},[567],{"type":47,"value":568},"\"",{"type":42,"tag":343,"props":570,"children":571},{"style":362},[572],{"type":47,"value":545},{"type":42,"tag":343,"props":574,"children":576},{"class":345,"line":575},7,[577,582,587,592,596,600,605,610],{"type":42,"tag":343,"props":578,"children":579},{"style":356},[580],{"type":47,"value":581},"  &&",{"type":42,"tag":343,"props":583,"children":584},{"style":350},[585],{"type":47,"value":586}," test",{"type":42,"tag":343,"props":588,"children":589},{"style":368},[590],{"type":47,"value":591}," !",{"type":42,"tag":343,"props":593,"children":594},{"style":368},[595],{"type":47,"value":473},{"type":42,"tag":343,"props":597,"children":598},{"style":356},[599],{"type":47,"value":359},{"type":42,"tag":343,"props":601,"children":602},{"style":362},[603],{"type":47,"value":604},"$PWD",{"type":42,"tag":343,"props":606,"children":607},{"style":368},[608],{"type":47,"value":609},"\u002Fsshkey",{"type":42,"tag":343,"props":611,"children":612},{"style":356},[613],{"type":47,"value":376},{"type":42,"tag":205,"props":615,"children":616},{},[617,619],{"type":47,"value":618},"Narrow a functional run only by exporting the selection first:",{"type":42,"tag":332,"props":620,"children":622},{"className":334,"code":621,"language":336,"meta":337,"style":337},"TEST_GROUPS=\"HA_SCS\" \\\nTEST_CASES=\"ascs-migration\" \\\nrun_with_key_cleanup \\\n  \"$SAP_AUTOMATION_REPO_PATH\u002Fdeploy\u002Fansible\u002Fquality_assurance_menu.sh\" \\\n  && test ! -e \"$PWD\u002Fsshkey\"\n",[623],{"type":42,"tag":61,"props":624,"children":625},{"__ignoreMap":337},[626,656,681,689,712],{"type":42,"tag":343,"props":627,"children":628},{"class":345,"line":346},[629,634,639,643,648,652],{"type":42,"tag":343,"props":630,"children":631},{"style":362},[632],{"type":47,"value":633},"TEST_GROUPS",{"type":42,"tag":343,"props":635,"children":636},{"style":356},[637],{"type":47,"value":638},"=",{"type":42,"tag":343,"props":640,"children":641},{"style":356},[642],{"type":47,"value":568},{"type":42,"tag":343,"props":644,"children":645},{"style":368},[646],{"type":47,"value":647},"HA_SCS",{"type":42,"tag":343,"props":649,"children":650},{"style":356},[651],{"type":47,"value":568},{"type":42,"tag":343,"props":653,"children":654},{"style":510},[655],{"type":47,"value":545},{"type":42,"tag":343,"props":657,"children":658},{"class":345,"line":409},[659,664,668,673,677],{"type":42,"tag":343,"props":660,"children":661},{"style":362},[662],{"type":47,"value":663},"TEST_CASES=",{"type":42,"tag":343,"props":665,"children":666},{"style":356},[667],{"type":47,"value":568},{"type":42,"tag":343,"props":669,"children":670},{"style":368},[671],{"type":47,"value":672},"ascs-migration",{"type":42,"tag":343,"props":674,"children":675},{"style":356},[676],{"type":47,"value":568},{"type":42,"tag":343,"props":678,"children":679},{"style":362},[680],{"type":47,"value":545},{"type":42,"tag":343,"props":682,"children":683},{"class":345,"line":506},[684],{"type":42,"tag":343,"props":685,"children":686},{"style":362},[687],{"type":47,"value":688},"run_with_key_cleanup \\\n",{"type":42,"tag":343,"props":690,"children":691},{"class":345,"line":526},[692,696,700,704,708],{"type":42,"tag":343,"props":693,"children":694},{"style":356},[695],{"type":47,"value":513},{"type":42,"tag":343,"props":697,"children":698},{"style":362},[699],{"type":47,"value":558},{"type":42,"tag":343,"props":701,"children":702},{"style":368},[703],{"type":47,"value":563},{"type":42,"tag":343,"props":705,"children":706},{"style":356},[707],{"type":47,"value":568},{"type":42,"tag":343,"props":709,"children":710},{"style":362},[711],{"type":47,"value":545},{"type":42,"tag":343,"props":713,"children":714},{"class":345,"line":535},[715,719,723,727,731,735,739,743],{"type":42,"tag":343,"props":716,"children":717},{"style":356},[718],{"type":47,"value":581},{"type":42,"tag":343,"props":720,"children":721},{"style":350},[722],{"type":47,"value":586},{"type":42,"tag":343,"props":724,"children":725},{"style":368},[726],{"type":47,"value":591},{"type":42,"tag":343,"props":728,"children":729},{"style":368},[730],{"type":47,"value":473},{"type":42,"tag":343,"props":732,"children":733},{"style":356},[734],{"type":47,"value":359},{"type":42,"tag":343,"props":736,"children":737},{"style":362},[738],{"type":47,"value":604},{"type":42,"tag":343,"props":740,"children":741},{"style":368},[742],{"type":47,"value":609},{"type":42,"tag":343,"props":744,"children":745},{"style":356},[746],{"type":47,"value":376},{"type":42,"tag":69,"props":748,"children":750},{"id":749},"selection-rules",[751],{"type":47,"value":752},"Selection rules",{"type":42,"tag":201,"props":754,"children":755},{},[756,766,799,817,830,842],{"type":42,"tag":205,"props":757,"children":758},{},[759,764],{"type":42,"tag":61,"props":760,"children":762},{"className":761},[],[763],{"type":47,"value":633},{"type":47,"value":765}," is one exact group name.",{"type":42,"tag":205,"props":767,"children":768},{},[769,775,777,783,785,790,792,798],{"type":42,"tag":61,"props":770,"children":772},{"className":771},[],[773],{"type":47,"value":774},"TEST_CASES",{"type":47,"value":776}," is a comma-separated list of framework ",{"type":42,"tag":61,"props":778,"children":780},{"className":779},[],[781],{"type":47,"value":782},"task_name",{"type":47,"value":784}," values, not\ndisplay names; e.g. ",{"type":42,"tag":61,"props":786,"children":788},{"className":787},[],[789],{"type":47,"value":672},{"type":47,"value":791},", not ",{"type":42,"tag":61,"props":793,"children":795},{"className":794},[],[796],{"type":47,"value":797},"Manual ASCS Migration",{"type":47,"value":67},{"type":42,"tag":205,"props":800,"children":801},{},[802,804,809,811,816],{"type":47,"value":803},"Always set ",{"type":42,"tag":61,"props":805,"children":807},{"className":806},[],[808],{"type":47,"value":633},{"type":47,"value":810}," when setting ",{"type":42,"tag":61,"props":812,"children":814},{"className":813},[],[815],{"type":47,"value":774},{"type":47,"value":67},{"type":42,"tag":205,"props":818,"children":819},{},[820,822,828],{"type":47,"value":821},"The preparation playbook writes the resolved selection to\n",{"type":42,"tag":61,"props":823,"children":825},{"className":824},[],[826],{"type":47,"value":827},"artifacts\u002Fqa_test_selection.json",{"type":47,"value":829},"; use it to confirm the requested scope.",{"type":42,"tag":205,"props":831,"children":832},{},[833,835,841],{"type":47,"value":834},"Validate group and case names against the pinned framework version from\n",{"type":42,"tag":61,"props":836,"children":838},{"className":837},[],[839],{"type":47,"value":840},"deploy\u002Fansible\u002Fvars\u002Fansible-input-api.yaml",{"type":47,"value":67},{"type":42,"tag":205,"props":843,"children":844},{},[845,847,853],{"type":47,"value":846},"Offline HA runs additionally require ",{"type":42,"tag":61,"props":848,"children":850},{"className":849},[],[851],{"type":47,"value":852},"offline_validation\u002F\u003Cinventory host>\u002Fcib",{"type":47,"value":854},";\notherwise stop before the playbook.",{"type":42,"tag":69,"props":856,"children":858},{"id":857},"azure-devops-contract",[859],{"type":47,"value":860},"Azure DevOps contract",{"type":42,"tag":50,"props":862,"children":863},{},[864],{"type":47,"value":865},"When an SDAF ADO environment already exposes pipeline 13, this skill owns the\nstage semantics:",{"type":42,"tag":201,"props":867,"children":868},{},[869,911,932,952],{"type":42,"tag":205,"props":870,"children":871},{},[872,874,880,881,887,889,895,896,902,904,910],{"type":47,"value":873},"queue-time selection lives in ",{"type":42,"tag":61,"props":875,"children":877},{"className":876},[],[878],{"type":47,"value":879},"test_type",{"type":47,"value":251},{"type":42,"tag":61,"props":882,"children":884},{"className":883},[],[885],{"type":47,"value":886},"sap_functional_test_type",{"type":47,"value":888},",\n",{"type":42,"tag":61,"props":890,"children":892},{"className":891},[],[893],{"type":47,"value":894},"test_groups",{"type":47,"value":251},{"type":42,"tag":61,"props":897,"children":899},{"className":898},[],[900],{"type":47,"value":901},"test_cases",{"type":47,"value":903},", and ",{"type":42,"tag":61,"props":905,"children":907},{"className":906},[],[908],{"type":47,"value":909},"offline_mode",{"type":47,"value":478},{"type":42,"tag":205,"props":912,"children":913},{},[914,916,922,924,930],{"type":47,"value":915},"the prep script validates ",{"type":42,"tag":61,"props":917,"children":919},{"className":918},[],[920],{"type":47,"value":921},"extra_params",{"type":47,"value":923}," as ",{"type":42,"tag":61,"props":925,"children":927},{"className":926},[],[928],{"type":47,"value":929},"-e key=value",{"type":47,"value":931}," only;",{"type":42,"tag":205,"props":933,"children":934},{},[935,937,943,945,950],{"type":47,"value":936},"the run performs ",{"type":42,"tag":938,"props":939,"children":940},"strong",{},[941],{"type":47,"value":942},"Quality Assurance Setup",{"type":47,"value":944},", then\n",{"type":42,"tag":938,"props":946,"children":947},{},[948],{"type":47,"value":949},"Quality Assurance Execution",{"type":47,"value":951}," for the selected framework;",{"type":42,"tag":205,"props":953,"children":954},{},[955,957,963,964,970],{"type":47,"value":956},"logs and reports are collected from ",{"type":42,"tag":61,"props":958,"children":960},{"className":959},[],[961],{"type":47,"value":962},"SYSTEM\u002F\u003Cconfig>\u002Flogs",{"type":47,"value":221},{"type":42,"tag":61,"props":965,"children":967},{"className":966},[],[968],{"type":47,"value":969},"SYSTEM\u002F\u003Cconfig>\u002Fquality_assurance",{"type":47,"value":67},{"type":42,"tag":50,"props":972,"children":973},{},[974],{"type":47,"value":975},"If the operator cannot point to an actual wired pipeline-13 path, stop at the\ndocumented availability boundary rather than assuming the proposed wrapper is\npresent.",{"type":42,"tag":69,"props":977,"children":979},{"id":978},"validate",[980],{"type":47,"value":981},"Validate",{"type":42,"tag":50,"props":983,"children":984},{},[985],{"type":47,"value":986},"Confirm all of the following:",{"type":42,"tag":201,"props":988,"children":989},{},[990,1001,1012,1023,1034],{"type":42,"tag":205,"props":991,"children":992},{},[993,999],{"type":42,"tag":61,"props":994,"children":996},{"className":995},[],[997],{"type":47,"value":998},"quality_assurance\u002F",{"type":47,"value":1000}," contains the HTML report.",{"type":42,"tag":205,"props":1002,"children":1003},{},[1004,1010],{"type":42,"tag":61,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":47,"value":1009},"logs\u002F\u003Ctest_group_invocation_id>.log",{"type":47,"value":1011}," exists; it is the machine-readable\nJSONL result record.",{"type":42,"tag":205,"props":1013,"children":1014},{},[1015,1021],{"type":42,"tag":61,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":47,"value":1020},"logs\u002Fexecution_\u003Ctimestamp>.log",{"type":47,"value":1022}," exists and matches the completion banner.",{"type":42,"tag":205,"props":1024,"children":1025},{},[1026,1032],{"type":42,"tag":61,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":47,"value":1031},"No test results found.",{"type":47,"value":1033}," means no results log was produced, not that the run\npassed.",{"type":42,"tag":205,"props":1035,"children":1036},{},[1037],{"type":47,"value":1038},"For functional tests, the cluster returned to its expected state before the\nmaintenance window closed.",{"type":42,"tag":69,"props":1040,"children":1042},{"id":1041},"routing-boundaries",[1043],{"type":47,"value":1044},"Routing boundaries",{"type":42,"tag":201,"props":1046,"children":1047},{},[1048,1074,1086,1091],{"type":42,"tag":205,"props":1049,"children":1050},{},[1051,1053,1058,1060,1065,1067,1073],{"type":47,"value":1052},"Need to deploy the system first or generate ",{"type":42,"tag":61,"props":1054,"children":1056},{"className":1055},[],[1057],{"type":47,"value":90},{"type":47,"value":1059}," \u002F\n",{"type":42,"tag":61,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":47,"value":98},{"type":47,"value":1066}," → ",{"type":42,"tag":61,"props":1068,"children":1070},{"className":1069},[],[1071],{"type":47,"value":1072},"sdaf-sap-system",{"type":47,"value":67},{"type":42,"tag":205,"props":1075,"children":1076},{},[1077,1079,1085],{"type":47,"value":1078},"Generic failed-run triage or a non-QA symptom → ",{"type":42,"tag":61,"props":1080,"children":1082},{"className":1081},[],[1083],{"type":47,"value":1084},"sdaf-failure-triage",{"type":47,"value":67},{"type":42,"tag":205,"props":1087,"children":1088},{},[1089],{"type":47,"value":1090},"Asked for a GitHub Actions QA wrapper → say the docs mark it pending and\nstop.",{"type":42,"tag":205,"props":1092,"children":1093},{},[1094],{"type":47,"value":1095},"Do not infer undocumented STAF-side behaviour or additional surfaces.",{"type":42,"tag":69,"props":1097,"children":1099},{"id":1098},"see-also",[1100],{"type":47,"value":1101},"See also",{"type":42,"tag":201,"props":1103,"children":1104},{},[1105,1116,1130],{"type":42,"tag":205,"props":1106,"children":1107},{},[1108],{"type":42,"tag":56,"props":1109,"children":1110},{"href":58},[1111],{"type":42,"tag":61,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":47,"value":58},{"type":42,"tag":205,"props":1117,"children":1118},{},[1119,1124,1125],{"type":42,"tag":61,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":47,"value":1072},{"type":47,"value":251},{"type":42,"tag":61,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":47,"value":1084},{"type":42,"tag":205,"props":1131,"children":1132},{},[1133,1139,1140,1146,1147,1153,1154],{"type":42,"tag":61,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":47,"value":1138},"docs\u002Flocal\u002F07-10-quality-assurance.md",{"type":47,"value":251},{"type":42,"tag":61,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":47,"value":1145},"docs\u002Fdeployment-options.md",{"type":47,"value":888},{"type":42,"tag":61,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":47,"value":1152},"docs\u002Fdocumentation-source-map.md",{"type":47,"value":251},{"type":42,"tag":61,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":47,"value":1159},"docs\u002Fsupportability.md",{"type":42,"tag":1161,"props":1162,"children":1163},"style",{},[1164],{"type":47,"value":1165},"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":1167,"total":1259},[1168,1180,1195,1212,1223,1236,1246],{"slug":1169,"name":1169,"fn":1170,"description":1171,"org":1172,"tags":1173,"stars":24,"repoUrl":25,"updatedAt":1179},"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},[1174,1175,1178],{"name":11,"slug":8,"type":14},{"name":1176,"slug":1177,"type":14},"Configuration","configuration",{"name":22,"slug":23,"type":14},"2026-09-02T07:47:45.597063",{"slug":1181,"name":1181,"fn":1182,"description":1183,"org":1184,"tags":1185,"stars":24,"repoUrl":25,"updatedAt":1194},"sdaf-control-plane-bootstrap","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},[1186,1187,1190,1193],{"name":11,"slug":8,"type":14},{"name":1188,"slug":1189,"type":14},"Deployment","deployment",{"name":1191,"slug":1192,"type":14},"Infrastructure","infrastructure",{"name":22,"slug":23,"type":14},"2026-09-02T07:46:51.573641",{"slug":1084,"name":1084,"fn":1196,"description":1197,"org":1198,"tags":1199,"stars":24,"repoUrl":25,"updatedAt":1211},"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},[1200,1201,1204,1207,1208],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},"Diagnostics","diagnostics",{"name":1205,"slug":1206,"type":14},"Operations","operations",{"name":22,"slug":23,"type":14},{"name":1209,"slug":1210,"type":14},"Triage","triage","2026-09-02T07:47:40.607437",{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":24,"repoUrl":25,"updatedAt":1222},"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},[1218,1219,1220,1221],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},{"name":1205,"slug":1206,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:48:04.154501",{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1227,"tags":1228,"stars":24,"repoUrl":25,"updatedAt":1235},"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},[1229,1232,1233,1234],{"name":1230,"slug":1231,"type":14},"Architecture","architecture",{"name":11,"slug":8,"type":14},{"name":1191,"slug":1192,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:47:43.405138",{"slug":1237,"name":1237,"fn":1238,"description":1239,"org":1240,"tags":1241,"stars":24,"repoUrl":25,"updatedAt":1245},"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},[1242,1243,1244],{"name":11,"slug":8,"type":14},{"name":1205,"slug":1206,"type":14},{"name":22,"slug":23,"type":14},"2026-09-02T07:46:44.504107",{"slug":1247,"name":1247,"fn":1248,"description":1249,"org":1250,"tags":1251,"stars":24,"repoUrl":25,"updatedAt":1258},"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},[1252,1253,1254,1255],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},{"name":22,"slug":23,"type":14},{"name":1256,"slug":1257,"type":14},"Storage","storage","2026-09-02T07:48:06.369058",18,{"items":1261,"total":1382},[1262,1281,1298,1304,1311,1319,1326,1333,1339,1346,1359,1375],{"slug":1263,"name":1263,"fn":1264,"description":1265,"org":1266,"tags":1267,"stars":1278,"repoUrl":1279,"updatedAt":1280},"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},[1268,1269,1272,1275],{"name":11,"slug":8,"type":14},{"name":1270,"slug":1271,"type":14},"Compliance","compliance",{"name":1273,"slug":1274,"type":14},"Governance","governance",{"name":1276,"slug":1277,"type":14},"Policy","policy",1689,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":1295,"repoUrl":1296,"updatedAt":1297},"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},[1287,1288,1289,1292],{"name":11,"slug":8,"type":14},{"name":1188,"slug":1189,"type":14},{"name":1290,"slug":1291,"type":14},"Infrastructure as Code","infrastructure-as-code",{"name":1293,"slug":1294,"type":14},"Migration","migration",261,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-08-20T03:28:18.136156",{"slug":1169,"name":1169,"fn":1170,"description":1171,"org":1299,"tags":1300,"stars":24,"repoUrl":25,"updatedAt":1179},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1301,1302,1303],{"name":11,"slug":8,"type":14},{"name":1176,"slug":1177,"type":14},{"name":22,"slug":23,"type":14},{"slug":1181,"name":1181,"fn":1182,"description":1183,"org":1305,"tags":1306,"stars":24,"repoUrl":25,"updatedAt":1194},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1307,1308,1309,1310],{"name":11,"slug":8,"type":14},{"name":1188,"slug":1189,"type":14},{"name":1191,"slug":1192,"type":14},{"name":22,"slug":23,"type":14},{"slug":1084,"name":1084,"fn":1196,"description":1197,"org":1312,"tags":1313,"stars":24,"repoUrl":25,"updatedAt":1211},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1314,1315,1316,1317,1318],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},{"name":1205,"slug":1206,"type":14},{"name":22,"slug":23,"type":14},{"name":1209,"slug":1210,"type":14},{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1320,"tags":1321,"stars":24,"repoUrl":25,"updatedAt":1222},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1322,1323,1324,1325],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},{"name":1205,"slug":1206,"type":14},{"name":22,"slug":23,"type":14},{"slug":1224,"name":1224,"fn":1225,"description":1226,"org":1327,"tags":1328,"stars":24,"repoUrl":25,"updatedAt":1235},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1329,1330,1331,1332],{"name":1230,"slug":1231,"type":14},{"name":11,"slug":8,"type":14},{"name":1191,"slug":1192,"type":14},{"name":22,"slug":23,"type":14},{"slug":1237,"name":1237,"fn":1238,"description":1239,"org":1334,"tags":1335,"stars":24,"repoUrl":25,"updatedAt":1245},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1336,1337,1338],{"name":11,"slug":8,"type":14},{"name":1205,"slug":1206,"type":14},{"name":22,"slug":23,"type":14},{"slug":1247,"name":1247,"fn":1248,"description":1249,"org":1340,"tags":1341,"stars":24,"repoUrl":25,"updatedAt":1258},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1342,1343,1344,1345],{"name":11,"slug":8,"type":14},{"name":1202,"slug":1203,"type":14},{"name":22,"slug":23,"type":14},{"name":1256,"slug":1257,"type":14},{"slug":1347,"name":1347,"fn":1348,"description":1349,"org":1350,"tags":1351,"stars":24,"repoUrl":25,"updatedAt":1358},"sdaf-orientation-and-surface","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},[1352,1353,1354,1357],{"name":1230,"slug":1231,"type":14},{"name":11,"slug":8,"type":14},{"name":1355,"slug":1356,"type":14},"Documentation","documentation",{"name":22,"slug":23,"type":14},"2026-09-02T07:46:52.116557",{"slug":1360,"name":1360,"fn":1361,"description":1362,"org":1363,"tags":1364,"stars":24,"repoUrl":25,"updatedAt":1374},"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},[1365,1366,1367,1369,1372],{"name":16,"slug":17,"type":14},{"name":11,"slug":8,"type":14},{"name":165,"slug":1368,"type":14},"azure-devops",{"name":1370,"slug":1371,"type":14},"CI\u002FCD","ci-cd",{"name":183,"slug":1373,"type":14},"github-actions","2026-09-02T07:48:08.951811",{"slug":4,"name":4,"fn":5,"description":6,"org":1376,"tags":1377,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1378,1379,1380,1381],{"name":16,"slug":17,"type":14},{"name":11,"slug":8,"type":14},{"name":19,"slug":20,"type":14},{"name":22,"slug":23,"type":14},145]