agentsclimarketplace

Oauth

Skill a5c-ai/babysitter/library/specializations/web-development/skills/oauth

OAuth 2.0/OIDC flows, provider integration, and token handling.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill oauth

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.3 KB, 196 tokens by cl100k_base, as published. Nobody here has run it

OAuth Skill

Expert assistance for OAuth 2.0 and OpenID Connect implementation.

Capabilities

  • Implement OAuth flows
  • Integrate providers (Google, GitHub)
  • Handle PKCE
  • Manage tokens
  • Configure OIDC

OAuth Flow

// Authorization Code Flow with PKCE
const codeVerifier = generateCodeVerifier();
const codeChallenge = await generateCodeChallenge(codeVerifier);

const authUrl = new URL('https://provider.com/authorize');
authUrl.searchParams.set('client_id', CLIENT_ID);
authUrl.searchParams.set('redirect_uri', REDIRECT_URI);
authUrl.searchParams.set('response_type', 'code');
authUrl.searchParams.set('scope', 'openid profile email');
authUrl.searchParams.set('code_challenge', codeChallenge);
authUrl.searchParams.set('code_challenge_method', 'S256');

Target Processes

  • oauth-integration
  • social-login
  • sso-implementation

What ships with it: 1 file

301 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.