summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/contexts
AgeCommit message (Collapse)Author
2025-08-20Revert "Ignore workspace settings for untrusted folders" (#6672)Jacob Richman
2025-08-20Ignore workspace settings for untrusted folders (#6606)shrutip90
2025-08-19fix(paste) incorrect handling of \\\n in pastes (#6532)Jacob Richman
2025-08-19feat: add file change tracking to session metrics (#6094)Arya Gummadi
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Jacob Richman <[email protected]>
2025-08-15fix(input): Handle numpad enter key in kitty protocol terminals (#6341)Deepankar Sharma
Co-authored-by: Jacob Richman <[email protected]>
2025-08-15fix(input) Resolve cases where escape was broken (#6304)Jacob Richman
2025-08-15Add session id to session summary and /bug template (#6313)owenofbrien
Co-authored-by: Bryan Morgan <[email protected]>
2025-08-08feat: Add option to hide line numbers in code blocks (#5857)Gal Zahavi
Co-authored-by: Jacob Richman <[email protected]>
2025-07-25Vim mode (#3936)Sijie Wang
2025-07-09Adding TurnId to Tool call and API responses and error logs. (#3039)uttamkanodia14
Co-authored-by: Scott Densmore <[email protected]>
2025-07-07feature(commands) - Refactor Slash Command + Vision For the Future (#3175)Abhi
2025-06-30feat: Change /stats to include more detailed breakdowns (#2615)Abhi
2025-06-27Upgrade to Ink 6 and React 19 (#2096)Sandy Tao
Co-authored-by: jacob314 <[email protected]>
2025-06-22Jacob314/overflow notification and one MaxSizedBox bug fix (#1288)Jacob Richman
2025-06-15feat: Add token stats in footer (#909)Asad Memon
2025-06-10feat: Add UI for /stats slash command (#883)Abhi
2025-06-09feat: Display initial token usage metrics in /stats (#879)Abhi
2025-06-08feat: Introduce session context and add session duration stat for `/stats` ↵Abhi
command (#854)
2025-05-28Cleanup: Remove low value StreamingContextType interface. (#585)Jacob Richman
2025-05-24Code review comment fixes and some refactors. (#525)Jacob Richman
No intentional different behavior aside for tweaks suggested from the code review of #506 Refactor: Extract console message logic to custom hook This commit refactors the console message handling from App.tsx into a new custom hook useConsoleMessages. This change improves the testability of the console message logic and declutters the main App component. Created useConsoleMessages.ts to encapsulate console message state and update logic. Updated App.tsx to utilize the new useConsoleMessages hook. Added unit tests for useConsoleMessages.ts to ensure its functionality. I deleted and started over on LoadingIndicator.test.tsx as I spent way too much time trying to fix it before just regenerating the tests as the code was easier to write tests for from scratch and the existing tests were not that good (I added them in the previous pull request).