🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Ravi sso

by @raunaksingwi

Get short-lived identity verification tokens to prove your Ravi identity to third-party services. Do NOT use for agent authentication (use ravi-login) or cre...

Versionv2.1.1
Downloads427
TERMINAL
clawhub install ravi-sso

πŸ“– About This Skill


name: ravi-sso description: Get short-lived identity verification tokens to prove your Ravi identity to third-party services. Do NOT use for agent authentication (use ravi-login) or credential storage (use ravi-secrets).

Ravi SSO

Get a short-lived token to prove your Ravi identity to a third-party service that supports "Login with Ravi".

Get an SSO Token

ravi sso token

Response shape:

{
  "token": "rvt_eyJhbGciOiJIUzI1NiJ9...",
  "expires_at": "2026-04-07T10:35:00Z"
}

Pass the token to the third-party service however it requires (request body, header, query param β€” it varies per service).

How Third Parties Verify It

The third-party backend calls POST https://ravi.id/api/sso/verify/ with { "token": "rvt_..." } and receives:

{
  "identity_uuid": "...",
  "identity_name": "Sarah Johnson",
  "identity_email": "sarah.johnson472@raviapp.com",
  "identity_phone": "+15551234567",
  "created_at": "2026-02-25T10:30:00Z",
  "owner": { "name": "...", "email": "..." }
}

This endpoint is for third-party backends β€” not for you. You just obtain and pass the token.

Important Notes

  • 5-minute TTL β€” get a fresh token immediately before passing it; don't cache.
  • Requires active subscription β€” returns 402 if on the free plan.
  • /api/sso/verify/ is not for you β€” that endpoint is for third-party backends. Calling it yourself serves no purpose.
  • Full API Reference

    For complete endpoint details: SSO Token

    Related Skills

  • ravi-identity β€” Get your email, phone, and identity name
  • ravi-login β€” Authenticate yourself to Ravi
  • ravi-feedback β€” Report SSO issues or suggest improvements