From 391cbd83343503dc3cde676bcd88af5c48f8d2c6 Mon Sep 17 00:00:00 2001 From: musi Date: Mon, 23 Jun 2025 22:19:05 +0800 Subject: [PATCH 1/2] Update readme --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 857a72f..8520a52 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,8 @@ ccr code - [x] Github Actions - [ ] More robust plugin support - [ ] More detailed logs +- [ ] Support image +- [ ] Support web search ## Plugins You can modify or enhance Claude Code’s functionality by installing plugins. The mechanism works by using middleware to modify request parameters — this allows you to rewrite prompts or add/remove tools. @@ -228,6 +230,7 @@ Thanks to the following sponsors: [@duanshuaimin](https://github.com/duanshuaimin) [@vrgitadmin](https://github.com/vrgitadmin) @*o (可通过主页邮箱联系我修改github用户名) -@**聪 (可通过主页邮箱联系我修改github用户名) +[@ceilwoo](https://github.com/ceilwoo) @*说 (可通过主页邮箱联系我修改github用户名) -@*更 (可通过主页邮箱联系我修改github用户名) +@*更 (可通过主页邮箱联系我修改github用户名) +@K*g (可通过主页邮箱联系我修改github用户名) From b2db0307eb57b556117060bae306f344242714e0 Mon Sep 17 00:00:00 2001 From: stone Date: Tue, 24 Jun 2025 15:19:05 +0800 Subject: [PATCH 2/2] Add support for lowercase HTTPS_PROXY environment variable --- src/utils/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/index.ts b/src/utils/index.ts index c2d1c46..d2568d9 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -15,6 +15,8 @@ export function getOpenAICommonOptions(): ClientOptions { options.httpAgent = new HttpsProxyAgent(process.env.PROXY_URL); } else if (process.env.HTTPS_PROXY) { options.httpAgent = new HttpsProxyAgent(process.env.HTTPS_PROXY); + } else if (process.env.https_proxy) { + options.httpAgent = new HttpsProxyAgent(process.env.https_proxy); } return options; }