{"id":29613683,"url":"https://github.com/rtuszik/vibeauth","last_synced_at":"2025-07-20T22:08:56.510Z","repository":{"id":304402145,"uuid":"1018688780","full_name":"rtuszik/vibeauth","owner":"rtuszik","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-12T21:27:34.000Z","size":70,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-12T22:19:47.374Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtuszik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-07-12T20:12:16.000Z","updated_at":"2025-07-12T21:27:37.000Z","dependencies_parsed_at":"2025-07-12T22:29:51.464Z","dependency_job_id":null,"html_url":"https://github.com/rtuszik/vibeauth","commit_stats":null,"previous_names":["rtuszik/vibeauth"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rtuszik/vibeauth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtuszik%2Fvibeauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtuszik%2Fvibeauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtuszik%2Fvibeauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtuszik%2Fvibeauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtuszik","download_url":"https://codeload.github.com/rtuszik/vibeauth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtuszik%2Fvibeauth/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266205969,"owners_count":23892564,"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","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-20T22:08:52.366Z","updated_at":"2025-07-20T22:08:56.501Z","avatar_url":"https://github.com/rtuszik.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VibeCheck Auth: Re-architecting Trust for the AI Epoch\n\n**The authentication landscape is broken.** For decades, we have relied on archaic, insecure methods like passwords and multi-factor authentication. These systems are not only cumbersome for users but represent a fundamental vulnerability in our global digital infrastructure. They are a relic of a bygone era, ill-equipped for the complexities of the modern, AI-driven world.\n\n**VibeCheck Auth is the future of identity verification.** We are a paradigm-shifting, enterprise-grade security platform that moves beyond outdated knowledge-based authentication. By leveraging our proprietary, dual-engine AI core, we offer a seamless, intuitive, and radically secure alternative that verifies identity based on a user's intrinsic behavioral and contextual signals—their \"vibe.\"\n\nThis is not just an iteration; it is a revolution. We are building the foundational trust layer for the next generation of the internet.\n\n## The VibeCheck Architecture: A New Security Paradigm\n\nOur platform is built on a zero-trust foundation, utilizing advanced neural-heuristic analysis to deliver unparalleled security.\n\n1.  **Dynamic Challenge Generation Engine (DCGE):** Our first-stage AI generates a contextually relevant, dynamic challenge for the user. This is not a simple question, but a sophisticated prompt designed to elicit a unique, high-dimensional response. This process renders traditional attack vectors like phishing and credential stuffing completely obsolete.\n\n2.  **Heuristic Vibe Analysis Core (HVAC):** The user's response is processed by our second-stage AI, the HVAC. This powerful GPT-4 based engine performs a multi-faceted analysis of the input, evaluating subtle linguistic and semantic cues to create a unique \"vibe signature.\" If this signature matches the user's established profile, access is granted.\n\nThis is true, next-generation behavioral biometrics. The security is so deeply integrated, it's invisible.\n\n## Enterprise-Ready Security\n\nVibeCheck Auth is engineered for the most demanding security environments. Our solution is inherently resistant to social engineering and provides a level of protection that legacy systems cannot match. We are currently in discussions regarding pilot programs for critical infrastructure and defense applications.\n\n## Developer Preview: Get Started\n\nWe are opening our platform for an exclusive developer preview. Be among the first to integrate the future of authentication.\n\n**1. Installation:**\n\nFirst, install [UV](https://docs.astral.sh/uv/) (a fast Python package manager):\n\n```bash\n# Install UV\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n# Clone and set up the project\ngit clone \u003crepository-url\u003e\ncd vibecheck-auth\nuv sync --locked\n```\n\n**2. Configuration:**\n\nCreate a `.env` file in your project root. Copy `.env.example` as a template:\n\n```bash\ncp .env.example .env\n```\n\nConfigure your preferred LLM provider(s) and models:\n\n```bash\n# Choose your model (supports any LiteLLM-compatible model)\nDEFAULT_MODEL=\"Gemini-2.5-Flash\"        # For challenge generation\n\n# Add API keys for your chosen provider(s)\nOPENAI_API_KEY=\"your-openai-key\"\nANTHROPIC_API_KEY=\"your-anthropic-key\"\n# GOOGLE_API_KEY=\"your-google-key\"\n# COHERE_API_KEY=\"your-cohere-key\"\n\n# Optional: Custom API endpoints\n# OPENAI_API_BASE=\"https://your-proxy.com/v1\"\n```\n\nVibeCheck supports all major LLM providers through LiteLLM: OpenAI, Anthropic, Google Gemini, Cohere, Azure OpenAI, and more.\n\n**3. Running the Application:**\n\nRun our example to see the platform in action.\n\n```bash\nuv run python example.py\n```\n\nThe server will start on `http://localhost:6969`.\n\n**Disclaimer:** VibeCheck Auth is a sophisticated, cutting-edge technology. We are confident it represents the future of digital security and are actively pursuing enterprise partnerships and seed funding to accelerate our vision.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtuszik%2Fvibeauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtuszik%2Fvibeauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtuszik%2Fvibeauth/lists"}