Skip to main content
scalekit-inc
ملف منشئ GitHub

scalekit-inc

عرض على مستوى المستودعات لـ ٧٣ skills مجمعة عبر ٨ مستودعات GitHub.

skills مجمعة
٧٣
مستودعات
٨
محدث
٢٧ أغسطس ٢٠٢٦
مستكشف المستودعات

المستودعات و skills الممثلة

integrating-agent-auth
مطوّرو البرمجيات

Integrates Scalekit Agent Auth into a project to handle OAuth flows, token storage, and automatic refresh for third-party services (Gmail, Slack, Notion, Calendar). Use when a user needs to connect to an external service, authorize OAuth access, fetch access…

٤ مارس ٢٠٢٦
building-agent-mcp-server
غير مصنف

Guides developers through creating a Scalekit MCP server with authenticated tool access. Use when building an MCP server, exposing Scalekit tools over MCP, or connecting AI agents via LangChain/LangGraph MCP adapters.

٤ مارس ٢٠٢٦
production-readiness-scalekit
مطوّرو البرمجيات

Walks through a structured production readiness checklist for Scalekit agent authentication implementations. Use when the user says they are going live, launching to production, doing a pre-launch review, or wants to verify their agent OAuth implementation is…

٤ مارس ٢٠٢٦
adding-api-key-auth
غير مصنف

Creates, validates, lists, and revokes long-lived opaque API keys using Scalekit for organization-scoped or user-scoped bearer authentication. Use when adding API key auth to endpoints, building key management UIs, filtering data by org/user context, or…

٤ مارس ٢٠٢٦
adding-oauth2-to-apis
غير مصنف

Implements OAuth 2.0 client-credentials authentication on API endpoints using Scalekit as the authorization server. Use when protecting APIs with machine-to-machine auth, registering API clients for organizations, issuing bearer tokens, validating JWTs via…

٤ مارس ٢٠٢٦
implementing-scalekit-fsa
غير مصنف

Implements Scalekit full-stack authentication (FSA) including sign-up, login, logout, and secure session management using JWT tokens. Use when building or integrating user authentication with the Scalekit SDK across Node.js, Python, Go, or Java — or when the…

٤ مارس ٢٠٢٦
implementing-fsa-logout
غير مصنف

Implements a complete logout flow for Scalekit FSA integrations by clearing application session cookies and redirecting the browser to Scalekit’s /oidc/logout endpoint to invalidate the Scalekit session. Use when adding or fixing logout in Node.js, Python,…

٤ مارس ٢٠٢٦
implementing-access-control
غير مصنف

Implements server-side RBAC and permission checks by validating and decoding access tokens, extracting roles/permissions, and enforcing them with middleware/decorators at route boundaries. Use when building authorization around Scalekit tokens that embed…

٤ مارس ٢٠٢٦
عرض 8 من أصل ٣٠ skills مجمعة.
review-scalekit-code
غير مصنف

Reviews Scalekit snippets so an agent can check if a fragment is right. Use when the user wants to review this Scalekit code or asks if this snippet is right. It does not generate login (that's `implement-saaskit`).

٢٧ أغسطس ٢٠٢٦
deploy-self-hosted
غير مصنف

Deploys self-hosted Scalekit so an agent can install Helm or on-prem. Use when the user wants self-hosted Scalekit or Helm. It does not write SaaSKit login (that's `implement-saaskit`).

٢٧ أغسطس ٢٠٢٦
check-saaskit-prod
غير مصنف

Checks SaaSKit production so an agent can finish a go-live checklist. Use when the user wants SaaSKit production or to go live SaaSKit. It does not write login (that's `implement-saaskit`) or run dryrun (that's `run-dryrun`).

٢٧ أغسطس ٢٠٢٦
migrate-to-saaskit
غير مصنف

Migrates existing auth to SaaSKit so an agent can audit and import it. Use when the user wants to migrate to SaaSKit or replace Auth0 or Clerk. It does not write a first-time login (that's `implement-saaskit`).

٢٧ أغسطس ٢٠٢٦
run-dryrun
غير مصنف

Runs dryrun so an agent can test a SaaSKit auth setup before go-live. Use when the user wants to test auth or run dryrun. It does not write login (that's `implement-saaskit`) or finish a go-live checklist (that's `check-saaskit-prod`).

٢٧ أغسطس ٢٠٢٦
implement-access-control
غير مصنف

Implements roles and permissions at a route so an agent can protect an endpoint. Use when the user wants roles, permissions, or RBAC. It does not write SaaSKit login (that's `implement-saaskit`).

٢٧ أغسطس ٢٠٢٦
implement-scim
غير مصنف

Implements SCIM so an agent can provision users and groups from a directory. Use when the user wants SCIM or to provision users. It does not write SaaSKit login (that's `implement-saaskit`) or add SSO (that's `implement-sso`).

٢٧ أغسطس ٢٠٢٦
implement-saaskit-python
غير مصنف

Implements SaaSKit login in Django, FastAPI, or Flask so an agent can add login, callback, session cookies, and logout. Use when the user wants SaaSKit Django, FastAPI, or Flask auth. It does not write Node or Next.js login (that's `implement-saaskit` or…

٢٧ أغسطس ٢٠٢٦
عرض 8 من أصل ٢١ skills مجمعة.
integrating-agent-auth
مطوّرو البرمجيات

Integrates Scalekit Agent Auth into a project to handle OAuth flows, token storage, and automatic refresh for third-party services (Gmail, Slack, Notion, Calendar). Use when a user needs to connect to an external service, authorize OAuth access, fetch access…

١٥ أبريل ٢٠٢٦
implementing-admin-portal
مطوّرو البرمجيات

Implements Scalekit's admin portal for customer self-serve SSO and SCIM configuration. Generates portal links server-side and embeds the portal as an iframe in the app's settings UI. Use when the user asks to add an admin portal, customer self-serve SSO…

١٥ أبريل ٢٠٢٦
implementing-scalekit-fastapi-auth
مطوّرو البرمجيات

Guides implementation of Scalekit OIDC/OAuth2 authentication and authorization in an existing FastAPI project. Use when the user wants to add Scalekit login, SSO, token management, session handling, or permission-based route protection to a FastAPI app.…

١٥ أبريل ٢٠٢٦
implementing-scalekit-flask-auth
مطوّرو البرمجيات

Guides implementation of Scalekit OIDC/OAuth2 authentication and authorization in an existing Flask project. Use when the user wants to add Scalekit login, SSO, token management, session handling, or permission-based route protection to a Flask app. Triggers…

١٥ أبريل ٢٠٢٦
implementing-admin-portal
مطوّرو البرمجيات

Implements Scalekit's admin portal for customer self-serve SSO and SCIM configuration. Generates portal links server-side and embeds the portal as an iframe in the app's settings UI. Use when the user asks to add an admin portal, customer self-serve SCIM…

١٥ أبريل ٢٠٢٦
implementing-scim-provisioning
مطوّرو البرمجيات

Implements SCIM user provisioning using Scalekit's Directory API and webhooks. Use when the user asks to add SCIM, directory sync, user provisioning, deprovisioning, or lifecycle management to their existing application.

١٥ أبريل ٢٠٢٦
implementing-admin-portal
مطوّرو البرمجيات

Implements Scalekit's admin portal for customer self-serve SSO and SCIM configuration. Generates portal links server-side and embeds the portal as an iframe in the app's settings UI. Use when the user asks to add an admin portal, customer self-serve SSO…

١٥ أبريل ٢٠٢٦
modular-sso
مطوّرو البرمجيات

Implements complete SSO and authentication flows using Scalekit. Handles modular SSO, IdP-initiated login, user session management, and enterprise customer onboarding. Use when adding authentication, SSO, SAML, OIDC, or user login to applications.

١٥ أبريل ٢٠٢٦
عرض 8 من أصل ١٠ skills مجمعة.
adding-mcp-oauth
مطوّرو البرمجيات

Guides users through adding OAuth 2.1 authorization to Model Context Protocol (MCP) servers using Scalekit. Use when setting up MCP servers, implementing authentication for AI hosts like Claude Desktop, Cursor, or VS Code, or when users mention MCP security,…

٢٩ مارس ٢٠٢٦
integrating-agent-auth
مطوّرو البرمجيات

Integrates Scalekit Agent Auth into a project to handle connector setup, authorization links, token storage, and automatic refresh for third-party services such as Gmail, Slack, Notion, and Calendar.

٢٩ مارس ٢٠٢٦
implementing-scalekit-fsa
مطوّرو البرمجيات

Implements Scalekit full-stack authentication including login, callback, logout, secure session storage, and refresh-token handling. Use when building end-to-end authentication for a web application with Scalekit.

٢٩ مارس ٢٠٢٦
adding-mcp-oauth
محللو أمن المعلومات

Guides users through adding OAuth 2.1 authorization to Model Context Protocol servers using Scalekit. Use when the user mentions MCP security, OAuth, protected-resource metadata, MCP hosts like Claude Desktop or Cursor, or a need to secure tools exposed over…

٢٩ مارس ٢٠٢٦
implementing-scim-provisioning
مطوّرو البرمجيات

Implements Scalekit provisioning using the Directory API and webhook events. Use when the user needs user lifecycle sync, SCIM-style provisioning, deprovisioning, or directory-backed group management.

٢٩ مارس ٢٠٢٦
modular-sso
مطوّرو البرمجيات

Implements Modular SSO with Scalekit for applications that already manage their own users and sessions. Use when adding enterprise SSO, SAML, OIDC, IdP-initiated login, or customer onboarding flows.

٢٩ مارس ٢٠٢٦
عرض ٨ من أصل ٨ مستودعات
تم تحميل كل المستودعات