summaryrefslogtreecommitdiff
path: root/packages/cli/src
AgeCommit message (Collapse)Author
2025-06-25refactor: remove deplicate dependency in slashCommandProcessor (#1410)Scott Densmore
Co-authored-by: matt korwel <[email protected]>
2025-06-25docs: 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-25fix(update-notifier): resolve __dirname error on npx execution (#1406)matt korwel
2025-06-24Add slashCommand dependency (#1401)Seth Troisi
2025-06-24fix: 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-24Truncate all strings before displaying in a tool messages to avoid stack ↵Jacob Richman
overflows (#1395)
2025-06-24Remove uses of the spread operator that appear to have caused a maximum call ↵Jacob Richman
stack size exceeded error (#1389)
2025-06-24Jacob314/max old space (#1314)Jacob Richman
2025-06-24Do not render mcp responses as markdown (#1388)Sandy Tao
2025-06-24Bug/1369 at command recursive search (#1370)Billy Biggs
2025-06-23Add Zed Editor to Eidtor List (#1372)Scott Densmore
2025-06-24feat: add custom message for 429 errors (#1366)Abhi
2025-06-24Improve Auth error messaging (#1358)Tommaso Sciortino
2025-06-24Add `/chat list` (#1361)Seth Troisi
2025-06-24Refactor 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-23moving `/save`, `/resume` to `/chat <save|resume>` (#1355)Seth Troisi
2025-06-23Polish Theme Dialog (#1356)Jacob Richman
2025-06-23Include all chat messages (#1354)Seth Troisi
2025-06-23Ensure 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-23Updated docs and /stats command to support lack of token caching support for ↵Bryan Morgan
OAuth users (b/426943001) (#1307)
2025-06-23Refine refresh static logic (#1349)Sandy Tao
2025-06-23Remove fallback to render normall rather than using custom MaxSizedBox ↵Jacob Richman
layout logic (#1340)
2025-06-23feat: Open MCP docs if no MCPs are configured (#1325)N. Taylor Mullen
2025-06-23Add error messaging for 429 errors (#1316)Abhi
2025-06-23refactor: 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
2025-06-23Enable clearcut logging by default (#1309)owenofbrien
Clearcut logging can now be disabled via disableDataCollection in user settings
2025-06-22Scotdensmore/first run auth fix (#1322)Scott Densmore
2025-06-23Fix so that pressing ctrl-s a second time toggles off constrain height mode ↵Jacob Richman
(#1306)
2025-06-23Use shorter URL for docs link (#1324)Mark McDonald
2025-06-23{bug} Vertex Auth Support (#1302)matt korwel
Co-authored-by: Tommaso Sciortino <[email protected]>
2025-06-22Plumb extension context filenames through for /memory refresh (#1312)Billy Biggs
2025-06-22update tips (#1315)cperry-goog
2025-06-22Jacob314/auto exit unconstrained height mode (#1293)Jacob Richman
Co-authored-by: Scott Densmore <[email protected]>
2025-06-22Fix seatbelt sandboxing when GEMINI_SANDBOX="" and starting with -s (#1298)N. Taylor Mullen
2025-06-22feat: Only show ctrl-s when idle (#1299)N. Taylor Mullen
2025-06-22feat: Add /docs command and update UI (#1297)N. Taylor Mullen
2025-06-22Clearcut logging - initial implementation (#1274)owenofbrien
Flag-guarded initial implementation of a clearcut logger to collect telemetry data and send it to Concord for dashboards, etc.
2025-06-22feat: Add client-initiated tool call handling (#1292)Abhi
2025-06-22Add setting enableRecursiveFileSearch to control @-file completion (#1290)Billy Biggs
2025-06-22Jacob314/overflow notification and one MaxSizedBox bug fix (#1288)Jacob Richman
2025-06-21feat(cli): update Tips.tsx component (#1284)cperry-goog
2025-06-21Update memory and context summary UI for multiple context filenames (#1282)Billy Biggs
2025-06-21Fix Static duplication and input prompt tearing (#1279)Sandy Tao
2025-06-20bug: fix cancel after a tool has been used (#1270)Abhi
2025-06-20Auth timeout (#1263)matt korwel
2025-06-20Auth blocking (#1261)matt korwel
2025-06-20fallback to gemini_api_key (#1255)matt korwel
2025-06-20feat(auth): handle auth flow errors gracefully (#1256)N. Taylor Mullen