openid-connect

Installation
SKILL.md

OpenID Connect (OIDC)

OIDC extends OAuth 2.0 to provide Identity. While OAuth handles "Access" (Authorization), OIDC handles "Who are you?" (Authentication).

When to Use

  • Single Sign-On (SSO): One login for multiple apps.
  • User Profile: Getting name, email, picture from a provider.
  • Enterprise Identity: Connecting to Active Directory via OIDC.

Quick Start

// Request
GET /authorize?
  response_type=code&
  scope=openid profile email&  <-- 'openid' scope triggers OIDC
  client_id=...&
  redirect_uri=...
Related skills
Installs
1
GitHub Stars
7
First Seen
Feb 10, 2026