From 03fd141ec6f7c4a7682c8680999d1f37bf33aae0 Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Wed, 4 Mar 2026 04:35:28 +0000 Subject: [PATCH 1/2] docs: fix Claude CLI login command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b036bab..a6a8b359 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ npm i -g @google/gemini-cli # Opencode: see https://opencode.ai # Authenticate with the provider CLI -claude login # Claude +claude auth login # Claude codex login # Codex gemini auth login # Gemini opencode auth login # Opencode From ab26d8a0635df535d415edf35855054c95f65b30 Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Wed, 4 Mar 2026 04:37:16 +0000 Subject: [PATCH 2/2] docs: clarify npm test scope in contributing guide --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 964e5a3b..77de0e68 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -123,7 +123,8 @@ zeroshot/ npm test ``` -Runs all tests in `tests/**/*.test.js` using Mocha. +Runs the fast test suite (unit + top-level tests) as defined in `package.json`. +Integration tests in `tests/integration/**/*.test.js` are excluded from `npm test`; run them with `npm run test:slow`. ### Specific Test File