Setting the file. One moment.
Subchapter 28.2
references/global-rules.mdMarkdown1 KBView on GitHub
MANDATORY — These rules apply to ALL skills. Violations are unacceptable.
⛔ ALWAYS use ask_user before ANY destructive action.
| Category | Examples |
|---|---|
| Delete | az group delete, azd down, rm -rf, delete resource |
| Overwrite | Replace existing files, overwrite config, reset settings |
| Irreversible | Purge Key Vault, delete storage account, drop database |
| Cost Impact | Provision expensive resources, scale up significantly |
| Security | Expose secrets, change access policies, modify RBAC |
ask_user(
question: "This will permanently delete resource group 'rg-myapp'. Continue?",
choices: ["Yes, delete it", "No, cancel"]
)⛔ ALWAYS use ask_user to confirm: