{"id":29573167,"url":"https://github.com/auth0-samples/auth0-ai-samples","last_synced_at":"2026-04-23T22:02:22.152Z","repository":{"id":271299404,"uuid":"912996728","full_name":"auth0-samples/auth0-ai-samples","owner":"auth0-samples","description":"Sample applications showcasing GenAI capabilities of the Auth0 platform and Okta FGA","archived":false,"fork":false,"pushed_at":"2025-11-20T19:37:27.000Z","size":14601,"stargazers_count":29,"open_issues_count":1,"forks_count":25,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-11-20T21:16:44.082Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/auth0-samples.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-06T20:25:39.000Z","updated_at":"2025-11-20T19:37:07.000Z","dependencies_parsed_at":"2025-09-11T00:09:15.802Z","dependency_job_id":"96c851fa-2b7a-40db-968d-921bffbfe8b5","html_url":"https://github.com/auth0-samples/auth0-ai-samples","commit_stats":null,"previous_names":["oktadev/auth0-ai-samples","auth0-samples/auth0-ai-samples"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/auth0-samples/auth0-ai-samples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auth0-samples%2Fauth0-ai-samples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auth0-samples%2Fauth0-ai-samples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auth0-samples%2Fauth0-ai-samples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auth0-samples%2Fauth0-ai-samples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/auth0-samples","download_url":"https://codeload.github.com/auth0-samples/auth0-ai-samples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auth0-samples%2Fauth0-ai-samples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-25T02:00:05.816Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-19T05:32:03.866Z","updated_at":"2026-04-23T22:02:22.145Z","avatar_url":"https://github.com/auth0-samples.png","language":"TypeScript","funding_links":[],"categories":["Projects Using Auth0"],"sub_categories":[],"readme":"# Auth for Generative AI Applications\n\nSample applications showcasing [Auth0's](https://www.auth0.ai/) authentication and authorization capabilities in the context of generative AI applications.\n\nSamples are organized as below:\n\n- [**authenticate-users**](https://auth0.com/ai/docs/get-started/user-authentication): Easily implement login experiences, tailor made for AI agents. Whether for chatbots or background agents.\n- [**call-apis-on-users-behalf**](https://auth0.com/ai/docs/get-started/call-others-apis-on-users-behalf): Use secure standards to get API tokens for Google, Github and more. Seamlessly integrate your app with other products.\n- [**authorization-for-rag**](https://auth0.com/ai/docs/get-started/authorization-for-rag): Only retrieve documents users have access to. Avoid leaking data to a user that should not have access to it.\n- [**asynchronous-authorization**](https://auth0.com/ai/docs/get-started/asynchronous-authorization): Let your autonomous, async agents do work in the background. Use Async Auth to request approval when needed.\n- [**auth-for-mcp**](./auth-for-mcp): Secure your MCP clients, servers, and gateways with robust user authentication, secure API access, spec-compliant client registration methods, and seamless token exchange.\n\n[**Sign up for Auth0 AI**](https://auth0.com/signup?onboard_app=genai\u0026ocid=7014z000001NyoxAAC-aPA4z0000008OZeGAM)\n\n# Quickstart releases\n\nTo support users' ability to download individual quickstarts from the [Auth for AI Agents docs site](https://auth0.com/ai/docs), this repository contains a Github Action to generate downloadable zip file artifacts of each quickstart. This action will run on any change within a quickstart folder on `main` branch, ensuring that the latest artifacts are always available for download.\n\nTo **include** a new quickstart, add a `release-config.yml` file to the quickstart's base directory, for example:\n\n```\n// authorization-for-rag/langchain-js/release-config.yml\n\ncategory: \"authorization-for-rag\"\nframework: \"langchain-js\"\nincluded: true\n```\n\nYou can *optionally* add an `exclude_patterns` to the `release-config.yml` if you want to exclude any particular files from the release. Note that the release script already excludes and scans for common sensitive files. Example:\n\n```\n// release-config.yml\n\nexclude_patterns:\n  - \"*.tmp\"\n  - \"debug.log\"\n  - \"test-data/*\"\n  - \".env.test\"\n  - \"node_modules/.cache/*\"\n```\n\nTo **exclude** an existing quickstart, within the `release-config.yml` file, switch `included` to `false`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauth0-samples%2Fauth0-ai-samples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauth0-samples%2Fauth0-ai-samples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauth0-samples%2Fauth0-ai-samples/lists"}