From c9f8d4f4380736cfa00a9562c4573ec5053c2889 Mon Sep 17 00:00:00 2001 From: ashwinhegde19 Date: Mon, 29 Dec 2025 22:11:08 +0530 Subject: [PATCH] fix: update version to v0.1.1 and add installation troubleshooting - Update gemini-extension.json version from 0.1.0 to 0.1.1 to match latest release - Add troubleshooting section to README addressing 401 errors during installation - Document workarounds for GitHub API rate limiting issues (issue #20) Fixes #20 --- README.md | 10 ++++++++++ gemini-extension.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e6a57dc..f99fa11 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,16 @@ gemini extensions install https://github.com/gemini-cli-extensions/conductor --a The `--auto-update` is optional: if specified, it will update to new versions as they are released. +### Troubleshooting Installation + +If you encounter a 401 error during installation (e.g., "Error downloading github release... Request failed with status code 401"), you may be experiencing GitHub API rate limiting. This is a known issue with the gemini CLI installer and can be resolved by: + +1. **Using git clone method**: When prompted with "Would you like to attempt to install via 'git clone' instead?", type `Y` to continue with the alternative installation method. + +2. **Authenticating with GitHub**: If you have a GitHub personal access token, you can configure the gemini CLI to use it to avoid rate limits. Check the gemini CLI documentation for authentication options. + +3. **Using --auto-update flag**: The `--auto-update` flag can help ensure you're using the latest version and may bypass certain caching issues. + ## Usage Conductor is designed to manage the entire lifecycle of your development tasks. diff --git a/gemini-extension.json b/gemini-extension.json index 540c927..24e1427 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -1,5 +1,5 @@ { "name": "conductor", - "version": "0.1.0", + "version": "0.1.1", "contextFileName": "GEMINI.md" } \ No newline at end of file