Browser Auth Skill

Sample skill that authenticates via Microsoft MSAL browser login. Models a real Azure MSAL auth shape for compat-detector regression tests.

jdutton Updated

File contents

Browser-auth skill

This skill authenticates users via Azure AD using MSAL's public client flow.

from msal import PublicClientApplication

app = PublicClientApplication(
    client_id=CLIENT_ID,
    authority="https://login.microsoftonline.com/common",
)
result = app.acquire_token_interactive(scopes=["User.Read"])

jdutton/vibe-agent-toolkit/tree/main/packages/agent-skills/test/fixtures/compat-scenarios/browser-auth-skill commit 5ff8c9a9f3

Frequently asked questions

npx skillmds@latest add jdutton/browser-auth-skill