Overlens
Official@overlens · Brazil
Overlens provides integration skills for its Identity Provider, covering OAuth 2.1/OIDC login, JWT validation, M2M tokens, and auth troubleshooting across web, mobile, and backend stacks.
Agent Skills by Overlens
Showing 13 vetted skills indexed across 1 GitHub repositories.
idp-use-oidc-discovery
Configure generic OIDC libraries against the Overlens IDP discovery document.
idp-auth-guide
Implements OAuth 2.1 and OIDC authentication flows against the Overlens Identity Provider.
idp-troubleshoot-auth-errors
Diagnose HTTP, cookie, CORS, and rate-limit errors in Overlens IDP integrations.
idp-integrate-m2m
Implements OAuth 2.0 client_credentials machine-to-machine authentication against the Overlens IDP.
idp-auth-vite-bff
Integrates Overlens IDP login into a Vite SPA with a separate-origin BFF backend.
idp-test-integration
Scaffolds offline conformance test suites that verify Overlens IDP authentication integrations.
idp-register-oauth-client
Registers OAuth clients in the Overlens IDP via the POST /admin/clients admin API.
idp-onboarding
Guides non-developers through integrating Overlens SSO login into web, mobile, and service systems.
idp-debug-jwt
Diagnose Overlens IDP JWTs by decoding, verifying RS256 signatures, and checking iss, aud, and exp claims.
idp-auth-nextjs
Implements Overlens IDP OAuth 2.1 PKCE login, logout, and session handling in Next.js App Router projects.
idp-integrate-oauth-web
Implements OAuth 2.1 Authorization Code with PKCE login flows against the Overlens IDP for server-side web backends.
idp-validate-token
Implements local JWT validation for APIs receiving Overlens IDP access tokens.
idp-auth-mobile
Implements OAuth 2.1 Authorization Code with PKCE login for mobile apps against the Overlens IDP.
Frequently Asked Questions About Overlens
FAQPage SchemaWhat tasks can I accomplish using Overlens's IDP skills?▼
You can register OAuth clients, integrate login/signup/logout into Next.js, Vite+BFF, mobile, or generic web backends, obtain machine-to-machine tokens via client_credentials, validate JWTs in a Resource Server, debug bad tokens and JWKS issues, troubleshoot HTTP auth errors, and scaffold conformance tests with @overlens/idp-testing.
Who are the Overlens IDP skills designed for?▼
Developers integrating Overlens authentication into Next.js, Vite SPAs, NestJS, Express, Rails, Django, React Native, Expo, iOS, Android, or Flutter apps, plus backend engineers validating JWTs or wiring M2M service auth. A jargon-free onboarding wizard also serves founders and product owners who are not developers.
How do I start integrating Overlens login into my application?▼
Start with the idp-onboarding wizard, which detects your stack and routes you to the right specialist skill. You first register an OAuth client via POST /admin/clients to get a client_id and client_secret, then follow the framework-specific skill for PKCE flow, callback handling, session cookies, and silent refresh.
What prerequisites are required before integrating the Overlens IDP?▼
You need a registered OAuth client (client_id and, for confidential clients, a client_secret shown only once), exact-match redirect URIs, and chosen grant types and scopes. Web integrations require a server-side backend to hold the secret; mobile and pure SPAs use PKCE-only public clients with no secret.
How can I verify my Overlens auth integration is correct?▼
Use the idp-test-integration skill, which installs @overlens/idp-testing and drops in the T5 conformance kit with runResourceServerConformance, runClientConformance, token minting helpers, and an in-process mock IDP. Tests run offline in Jest or Vitest with no Docker, network, or real IDP required.