{"id":29803765,"url":"https://github.com/juspay/vertex","last_synced_at":"2026-03-05T23:02:45.061Z","repository":{"id":306617597,"uuid":"1026761622","full_name":"juspay/vertex","owner":"juspay","description":"One-click AI agent setup through Google Vertex AI Platform","archived":false,"fork":false,"pushed_at":"2025-11-24T17:24:42.000Z","size":48,"stargazers_count":6,"open_issues_count":2,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-28T05:47:46.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juspay.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-07-26T15:01:25.000Z","updated_at":"2025-11-24T17:24:44.000Z","dependencies_parsed_at":"2025-07-26T20:47:22.689Z","dependency_job_id":"2a2924c8-34aa-4463-96a4-c630ecf219d4","html_url":"https://github.com/juspay/vertex","commit_stats":null,"previous_names":["juspay/vertex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/juspay/vertex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juspay%2Fvertex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juspay%2Fvertex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juspay%2Fvertex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juspay%2Fvertex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juspay","download_url":"https://codeload.github.com/juspay/vertex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juspay%2Fvertex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30154283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-28T12:00:49.631Z","updated_at":"2026-03-05T23:02:45.053Z","avatar_url":"https://github.com/juspay.png","language":"Nix","funding_links":[],"categories":["Nix"],"sub_categories":[],"readme":"# vertex\n\nOne-click AI agent setup through Google Vertex AI Platform. Currently, this launches **Claude Code** using your Google login[^cc] configured to use the **Claude Sonnet 4.5** model.\n\n[^cc]: See [Claude Code on Google Vertex AI](https://docs.anthropic.com/en/docs/claude-code/google-vertex-ai)\n\n## Usage\n\n### macOS\n\n1. Install Nix [using these instructions](https://nixos.asia/en/install)\n1. Run vertex:\n  ```sh\n  nix run github:juspay/vertex\n  ```\n\n\u003e [!TIP]\n\u003e If you are a Nix veteran, [nixos-unified-template](https://github.com/juspay/nixos-unified-template) is the best way to install `vertex`. The template already includes `vertex` (be sure to enable the \"work\" profile) and is configured to use the latest versions of tools. Once you setup your Nix config, run `vertex-claude` to launch it.\n\n### NixOS\n\nTo use this on NixOS, add the following to your `flake.nix`:\n\n```nix\n{\n  inputs = {\n    nixpkgs.url = \"github:NixOS/nixpkgs/nixos-unstable\";\n    vertex = {\n      url = \"github:juspay/vertex\";\n      inputs.nixpkgs.follows = \"nixpkgs\";\n    };\n  };\n\n  outputs = { nixpkgs, vertex, ... }: {\n    # Your NixOS configuration\n    nixosConfigurations.your-hostname = nixpkgs.lib.nixosSystem {\n      system = \"x86_64-linux\"; # or your system\n      modules = [\n        # Your existing modules\n        {\n          environment.systemPackages = [\n            vertex.packages.x86_64-linux.default # or your system\n          ];\n        }\n      ];\n    };\n  };\n}\n```\n\nThen run `sudo nixos-rebuild switch` and use `vertex-claude` command.\n\n## Editor support\n\n### Zed\n\nZed [supports](https://zed.dev/blog/claude-code-via-acp) Claude Code. To have it use our `vertex-claude`:\n\n- First, sucessfully run `vertex-claude` using the instructions above\n- Export these environment variables in a terminal:\n  ```\n  export ANTHROPIC_VERTEX_PROJECT_ID=dev-ai-gamma  # Or, your project.\n  export CLAUDE_CODE_USE_VERTEX=1\n  ```\n- Open Zed from the same terminal (important!). On macOS, you can run `open -a Zed`.\n\n\n## What `vertex-claude` does\n\nRunning `vertex-claude` (or the `nix run ...` command above) launches Claude Code after authenticating using your Google account. You can pass custom arguments to it; for [example](https://www.anthropic.com/engineering/claude-code-best-practices#d-safe-yolo-mode):\n\n```sh\nvertex-claude --dangerously-skip-permissions\n\n# Or\nnix run github:juspay/vertex -- --dangerously-skip-permissions\n```\n\n\u003e [!NOTE]\n\u003e When you run `vertex-claude`, it will automatically:\n\u003e - Use your only project if you have exactly one\n\u003e - Let you choose interactively if you have multiple projects\n\n\u003e [!TIP]\n\u003e Google authentication / permission issues? Reset your gcloud config (`rm -rf ~/.config/gcloud`) and try again.\n\n\n## Goals\n\nCombine `google-cloud-sdk`, `gemini-cli`, `claude-code` (from nixpkgs) to provide a seamless entrypoint to getting AI agents working using Claude Sonnet 4.5 through Google Vertex AI platform (provided by your organization).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuspay%2Fvertex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuspay%2Fvertex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuspay%2Fvertex/lists"}