What problem does it solve? Production APIs suddenly return blanket 401 errors while pods stay healthy, and teams waste hours redeploying services or rolling back Kubernetes when the real cause is a recreated Entra app registration that invalidated every consumer's client ID and role assignment. ## Core Features & Use Cases - Root-cause fingerprinting: Compare AWS Secrets Manager CreatedDate vs LastChangedDate and CloudTrail DeleteSecret/CreateSecret events to prove an app registration was destroyed and rebuilt. - Fleet-wide consumer mapping: Sweep ConfigMaps and Secrets Manager for stale client ID GUIDs across every API and SPA, not just the reported one. - Pre-fix validation: Acquire a client_credentials token to distinguish AADSTS500011 (dead registration) from AADSTS501051 (missing app-role assignment) before changing anything. - Use Case: After an orders-api outage with 100% 401s, use this Skill to confirm the registration was recreated, find three silently broken consumer APIs, and sequence dependency-ordered releases that restore access. ## Quick Start Triage why the orders-api on the prod EKS cluster returns 401 on every request even though the pods are healthy.