| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-06-25 | Add 'npm i' instruction to README (#1416) | Mark McDonald | |
| 2025-06-25 | CI: Linting Fix (#1413) | matt korwel | |
| Co-authored-by: Scott Densmore <[email protected]> | |||
| 2025-06-25 | Docs: update docs to clarify the differences between Google account login ↵ | Preston Holmes | |
| o… (#1409) Co-authored-by: Scott Densmore <[email protected]> Co-authored-by: matt korwel <[email protected]> Co-authored-by: matt korwel <[email protected]> | |||
| 2025-06-25 | refactor: remove deplicate dependency in slashCommandProcessor (#1410) | Scott Densmore | |
| Co-authored-by: matt korwel <[email protected]> | |||
| 2025-06-25 | docs: fix typos in documentation (#1411) | Daniel Tedesco | |
| Co-authored-by: Dan Tedesco <[email protected]> | |||
| 2025-06-25 | [June 25] handle early output pipe closer (#1402) | Keith Ballinger | |
| 2025-06-25 | fix(update-notifier): resolve __dirname error on npx execution (#1406) | matt korwel | |
| 2025-06-24 | Prerelease: Cleanup (#1404) | matt korwel | |
| 2025-06-24 | sandbox doc (#1390) | Brian Ray | |
| Co-authored-by: matt korwel <[email protected]> Co-authored-by: Jenna Inouye <[email protected]> | |||
| 2025-06-24 | Add slashCommand dependency (#1401) | Seth Troisi | |
| 2025-06-24 | fix: use correct directory for update checks (#1394) | Marat Boshernitsan | |
| 2025-06-24 | [JUNE 25] Permanent failover to Flash model for OAuth users after persistent ↵ | Bryan Morgan | |
| 429 errors (#1376) Co-authored-by: Scott Densmore <[email protected]> | |||
| 2025-06-24 | Documents: Add docs tools pages (#1397) | Jenna Inouye | |
| 2025-06-24 | Truncate all strings before displaying in a tool messages to avoid stack ↵ | Jacob Richman | |
| overflows (#1395) | |||
| 2025-06-24 | Added ToS links for each surface (#1365) | Mark McDonald | |
| Co-authored-by: Scott Densmore <[email protected]> Co-authored-by: matt korwel <[email protected]> | |||
| 2025-06-24 | Add the link to the privacy policy to the Usage Statistics section and ↵ | anj-s | |
| remove debug logs (#1393) | |||
| 2025-06-24 | docs: add screenshot to README (#1396) | cperry-goog | |
| 2025-06-24 | Checkpointing documentation (#1321) | Louis Jimenez | |
| Co-authored-by: matt korwel <[email protected]> | |||
| 2025-06-24 | feat: add merge_group trigger to CI and E2E workflows (#1400) | matt korwel | |
| 2025-06-24 | Remove uses of the spread operator that appear to have caused a maximum call ↵ | Jacob Richman | |
| stack size exceeded error (#1389) | |||
| 2025-06-24 | Jacob314/max old space (#1314) | Jacob Richman | |
| 2025-06-24 | Do not render mcp responses as markdown (#1388) | Sandy Tao | |
| 2025-06-24 | MCP documentation improvements (#1386) | Brian Ray | |
| Co-authored-by: Jenna Inouye <[email protected]> | |||
| 2025-06-24 | [June 25] Fixed user agent string to be standards-compliant (#1384) | Bryan Morgan | |
| 2025-06-24 | Bug/1369 at command recursive search (#1370) | Billy Biggs | |
| 2025-06-24 | Update editor.ts (#1371) | cornmander | |
| 2025-06-23 | Add Zed Editor to Eidtor List (#1372) | Scott Densmore | |
| 2025-06-23 | Fix broken doc links (#1368) | starsandskies | |
| 2025-06-24 | feat: add custom message for 429 errors (#1366) | Abhi | |
| 2025-06-23 | Updated README.md (#1367) | Bryan Morgan | |
| 2025-06-24 | Improve Auth error messaging (#1358) | Tommaso Sciortino | |
| 2025-06-24 | Add `/chat list` (#1361) | Seth Troisi | |
| 2025-06-23 | Fix Clearcut logging wire format (#1359) | owenofbrien | |
| Fix for Clearcut logging wire format based on validation thread with Clearcut / Concord eng | |||
| 2025-06-24 | Refactor usage statistics to be a top-level setting (#1363) | Jerop Kipruto | |
| This commit refactors the `usageStatisticsEnabled` setting from a sub-property of the `telemetry` configuration to a top-level setting. This change simplifies the configuration by decoupling usage statistics from the telemetry settings. The documentation has also been updated to reflect this change. | |||
| 2025-06-23 | docs: update configuration.md with new CLI options (#1360) | cperry-goog | |
| 2025-06-24 | Fix duplicate startSession logs and duplicate logging events over the wire ↵ | anj-s | |
| (#1357) | |||
| 2025-06-23 | moving `/save`, `/resume` to `/chat <save|resume>` (#1355) | Seth Troisi | |
| 2025-06-23 | Polish Theme Dialog (#1356) | Jacob Richman | |
| 2025-06-23 | Include all chat messages (#1354) | Seth Troisi | |
| 2025-06-23 | [June 25] Updated docs for telemetry and user statistics (#1346) | Bryan Morgan | |
| 2025-06-23 | Docs: Add `telemetry` to the list of configuration options (#1348) | starsandskies | |
| 2025-06-23 | Ensure telemetry events are flushed immediately (#1344) | Jerop Kipruto | |
| The previous implementation used `flushIfNeeded` to batch most telemetry events, but it was not reliably sending them, leading to data loss. Notably, the `startSession` event, which already used `flushToClearcut`, was working correctly, indicating an issue with the batching logic itself. This change replaces all calls to `flushIfNeeded` with `flushToClearcut` to align all event logging with the working `startSession` implementation and ensure that events are sent immediately. This prioritizes the reliability of data collection over network efficiency. This is a temporary solution to prevent further data loss. The underlying issue with the batching mechanism in `flushIfNeeded` should be investigated and fixed in the future, at which point this change can be reverted. | |||
| 2025-06-23 | Use concurrently to run start script with GCP telemetry (#1329) | Jerop Kipruto | |
| ## TLDR Introduces the `concurrently` package to simplify the dev startup process with GCP telemetry enabled. ## Dive Deeper Previously, developers had to run the telemetry script and the main application start script in separate terminals. This change updates the `start:gcp` script to use `concurrently`, allowing both processes to be launched and managed with a single command. This improves the developer experience and reduces the chance of forgetting to start one of the required processes. ## Reviewer Test Plan Set the required environment variable: ```shell export OTLP_GOOGLE_CLOUD_PROJECT=<your-project-id> ``` Run the following command: ```shell npm run start:gcp ``` #750 cc @teeler | |||
| 2025-06-23 | Updated docs and /stats command to support lack of token caching support for ↵ | Bryan Morgan | |
| OAuth users (b/426943001) (#1307) | |||
| 2025-06-23 | Refine refresh static logic (#1349) | Sandy Tao | |
| 2025-06-23 | Remove fallback to render normall rather than using custom MaxSizedBox ↵ | Jacob Richman | |
| layout logic (#1340) | |||
| 2025-06-23 | feat: Open MCP docs if no MCPs are configured (#1325) | N. Taylor Mullen | |
| 2025-06-23 | Add error messaging for 429 errors (#1316) | Abhi | |
| 2025-06-23 | docs(telemetry): relocate telemetry documentation (#1327) | Jerop Kipruto | |
| Moves the telemetry.md file from docs/core to the top-level docs/ directory to make it more discoverable. Updates the link in the main index.md and removes the old reference from the CLI configuration page. | |||
| 2025-06-23 | refactor: rename `disableDataCollection` to `dataCollectionEnabled` (#1319) | Jerop Kipruto | |
| Renames the `disableDataCollection` flag to the more intuitive and positive `dataCollectionEnabled`. This change improves code clarity by avoiding double negatives and making the purpose of the flag more direct. The logic has been inverted wherever the flag is used to accommodate the new naming convention. Using a suffix like `"Enabled"` follows a common convention that improves readability. - A condition like `if (dataCollectionEnabled)` reads like a natural language sentence ("if data collection is enabled"), which reduces cognitive load. - Distinguishes the boolean flag (representing a state) from potential functions that would perform an action (e.g., `enableDataCollection()` or `disableDataCollection()`), avoiding ambiguity between checking a value and calling a function. #750 | |||
