Use when troubleshooting issues with the ALZ / AMBA / FSI / SLZ library sync process in EPAC (e.g. Sync-ALZPolicyFromLibrary or New-ALZPolicyDefaultStructure errors, unexpected generated assignment files, parameter or management group mapping problems). Sets up a minimal `Definitions` folder with a placeholder `global-settings.jsonc` and runs the two sync commands so the failure can be reproduced and inspected.
npx skills add https://github.com/Azure/enterprise-azure-policy-as-code --skill alz-sync-troubleshoot
This skill reproduces the ALZ Library sync workflow with a minimal scratch Definitions folder. Use it to investigate issues in New-ALZPolicyDefaultStructure and Sync-ALZPolicyFromLibrary (see Docs/integrating-with-alz-library.md).
It is intended for the GitHub Copilot cloud agent. Do not commit the generated Definitions/, policyStructures/, or temp/ folders – they are scratch artefacts.
Trigger this skill when the user reports problems such as:
New-ALZPolicyDefaultStructure failing or producing an empty / malformed default fileSync-ALZPolicyFromLibrary throwing errors, missing parameters, or generating unexpected assignments-Tag, -LibraryPath, or a -Type (ALZ, AMBA, FSI, SLZ)-SyncAMBAExtendedPolicies)git available on PATH (the scripts clone Azure/Azure-Landing-Zones-Library)enterprise-azure-policy-as-code). The scripts live in Scripts/CloudAdoptionFramework/.Create ./Definitions/global-settings.jsonc with placeholder values – the sync commands only need a valid pacEnvironments entry whose pacSelector matches -PacEnvironmentSelector (default epac-dev).
New-Item -ItemType Directory -Force -Path ./Definitions | Out-Null
@'
{
"$schema": "https://raw.githubusercontent.com/Azure/enterprise-azure-policy-as-code/main/Schemas/global-settings-schema.json",
"pacOwnerId": "00000000-0000-0000-0000-000000000000",
"pacEnvironments": [
{
"pacSelector": "epac-dev",
"cloud": "AzureCloud",
"tenantId": "00000000-0000-0000-0000-000000000000",
"deploymentRootScope": "/providers/Microsoft.Management/managementGroups/epac-troubleshoot",
"desiredState": {
"strategy": "ownedOnly"
},
"globalNotScopes": [],
"managedIdentityLocation": "eastus2"
}
]
}
'@ | Set-Content -Path ./Definitions/global-settings.jsonc -Encoding utf8
New-ALZPolicyDefaultStructureThis must run at least once before sync. It generates the policy structure file under Definitions/policyStructures/.
./Scripts/CloudAdoptionFramework/New-ALZPolicyDefaultStructure.ps1 `
-DefinitionsRootFolder ./Definitions `
-Type ALZ `
-PacEnvironmentSelector epac-dev
Useful variants when reproducing a bug report:
# Pin to a specific library tag
-Tag "platform/alz/2025.02.0"
# Reuse an already-cloned/modified library (skips git clone)
-LibraryPath ./temp
# Other library types
-Type AMBA # or FSI / SLZ
Sync-ALZPolicyFromLibrary./Scripts/CloudAdoptionFramework/Sync-ALZPolicyFromLibrary.ps1 `
-DefinitionsRootFolder ./Definitions `
-Type ALZ `
-PacEnvironmentSelector epac-dev
Useful switches when reproducing reported issues:
| Switch | Purpose |
| --- | --- |
| -Tag <tag> | Pin to a specific library release (e.g. platform/alz/2025.02.0). |
| -LibraryPath <path> | Use a pre-cloned / modified library; skip clone. |
| -CreateGuardrailAssignments | Reproduce guardrail-assignment generation issues. |
| -EnableOverrides | Reproduce override-related issues. |
| -SyncAssignmentsOnly | Only refresh assignments. |
| -SyncAMBAExtendedPolicies | AMBA-only; also clones azure-monitor-baseline-alerts. |
After the commands succeed, the relevant generated artefacts are:
Definitions/policyStructures/*.jsonc – defaults file produced in step 2Definitions/policyAssignments/<Type>/** – assignments produced in step 3Definitions/policyDefinitions/<Type>/, Definitions/policySetDefinitions/<Type>/ – synced definitionstemp/ (and temp_amba_extended/ for AMBA extended) – cloned library; safe to deleteWhen troubleshooting, capture the full console output of both commands and any stack trace. Note the -Tag value printed in the header – sync errors are usually tied to a specific library release.
Remove-Item -Recurse -Force ./Definitions, ./temp, ./temp_amba_extended -ErrorAction SilentlyContinue
Scripts/CloudAdoptionFramework/*.ps1) – check there if "latest" behaviour seems off.-Tag against https://api.github.com/repos/Azure/Azure-Landing-Zones-Library/git/refs/tags/; network egress to GitHub is required.10.9.0 (per Docs/integrating-with-alz-library.md).Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.
Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.
Creative research ideation and exploration. Use for open-ended brainstorming sessions, exploring interdisciplinary connections, challenging assumptions, or identifying research gaps. Best for early-stage research planning when you do not have specific observations yet. For formulating testable hypotheses from data use hypothesis-generation.
Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Take azure/alz-sync-troubleshoot from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.