Skip to content

Commit 9f0cbb5

Browse files
committed
## [0.0.59](v0.0.58...v0.0.59) (2026-01-30)
### Features * **plugins:** enhance plugin installation to support GitHub repos and local directories ([a4b448a](a4b448a)) ## [0.0.58](v0.0.57...v0.0.58) (2026-01-30) ### Features * **ui:** add banner utilities and branding assets ([69f8ef4](69f8ef4)) ## [0.0.57](v0.0.56...v0.0.57) (2026-01-30) ### Features * **web:** add session management and enhanced UI with sidebar ([6e82cad](6e82cad)) ## [0.0.56](v0.0.55...v0.0.56) (2026-01-30) ## [0.0.55](v0.0.54...v0.0.55) (2026-01-30) ### Features * **web:** add web interface for CLI interaction ([7cfa7c3](7cfa7c3)), closes [#web-interface](https://github.com/involvex/super-agent-cli/issues/web-interface) ## [0.0.54](v0.0.53...v0.0.54) (2026-01-30) ### Features * **indexing:** add file indexing system for faster search ([4f4d0c5](4f4d0c5)) ## [0.0.53](v0.0.52...v0.0.53) (2026-01-30) ### Features * **plugins:** add plugin system with management commands ([eeb78d0](eeb78d0)) ## [0.0.52](v0.0.51...v0.0.52) (2026-01-30) ## [0.0.51](v0.0.50...v0.0.51) (2026-01-30) ### Features * **mcp:** add MCP server management commands ([08c24fd](08c24fd)) ## [0.0.50](v0.0.49...v0.0.50) (2026-01-30) ### Features * **chat:** add chat session persistence commands ([a443eab](a443eab)) ## [0.0.49](v0.0.48...v0.0.49) (2026-01-30) ### Features * **provider:** enable runtime provider switching ([087a57d](087a57d)) ## [0.0.48](v0.0.47...v0.0.48) (2026-01-30) ### Features * **provider:** add OpenAI Compatible provider and multi-provider support ([41c2e89](41c2e89)) ## [0.0.47](v0.0.46...v0.0.47) (2026-01-30) ## [0.0.46](v0.0.45...v0.0.46) (2026-01-30) ### Features * **release:** add automated npm publishing workflow and build configuration ([bdb54a0](bdb54a0)) ## [0.0.45](v0.0.44...v0.0.45) (2026-01-30) ## [0.0.44](v0.0.43...v0.0.44) (2026-01-30) ### Features * **ui:** add provider selection and configuration viewer components ([6eca4ce](6eca4ce)) ## [0.0.43](v0.0.42...v0.0.43) (2026-01-30) ## [0.0.42](v0.0.41...v0.0.42) (2026-01-30) ### Features * **input:** add shell command execution and escape key handling ([bcb2e64](bcb2e64)) ## [0.0.41](v0.0.40...v0.0.41) (2026-01-30) ### Features * **cli:** add yolo mode toggle and improve keyboard shortcuts ([70d7ad0](70d7ad0)) ## [0.0.40](v0.0.39...v0.0.40) (2026-01-30) ### Features * **cli:** add agent modes, file mentions, and command palette ([91d9e62](91d9e62)) ## [0.0.39](v0.0.38...v0.0.39) (2026-01-30) ### Features * **core:** add native Gemini SDK support and update provider configuration ([c3def79](c3def79)) ## [0.0.38](v0.0.37...v0.0.38) (2026-01-30) ### Features * **core:** add Gemini provider and ProjectMap tool ([23e00e5](23e00e5)) ## [0.0.37](v0.0.36...v0.0.37) (2026-01-30) ### Code Refactoring * **core:** refactor LLM client to provider pattern with Gemini default ([45c5d95](45c5d95)) ### BREAKING CHANGES * **core:** Configuration format changed from single API key/model to provider-based structure. Users need to update their ~/.super-agent/settings.json to use the new format with providers object. ## [0.0.36](v0.0.35...v0.0.36) (2026-01-30) ### Features * **cli:** add about and plugins management commands ([dc966c1](dc966c1)) ## [0.0.35](07ec154...v0.0.35) (2026-01-30) ### Bug Fixes * improve diff generation and multi-line string replacement for large files ([#23](#23)) ([e662dd3](e662dd3)) * migrate to bun ([superagent-ai#78](https://github.com/involvex/super-agent-cli/issues/78)) ([9180c4b](9180c4b)) * re-enable vibekit by resolving runtime crash when using grok cli ([superagent-ai#77](https://github.com/involvex/super-agent-cli/issues/77)) ([bd78e9e](bd78e9e)) ### Features * add configurable base URL support ([#19](#19)) ([07ec154](07ec154)) * add model parameter support for CLI ([#29](#29)) ([6f8f9cf](6f8f9cf)) * add support for auto-edit toggle ([#24](#24)) ([5183e4d](5183e4d)) * add support for mcp ([superagent-ai#44](https://github.com/involvex/super-agent-cli/issues/44)) ([9c1d82b](9c1d82b)) * git commands ([#41](#41)) ([9642bda](9642bda)) * improve model configuration and settings management ([superagent-ai#59](https://github.com/involvex/super-agent-cli/issues/59)) ([5a4b2c8](5a4b2c8)) * save selected model ([#39](#39)) ([c00feda](c00feda)) ### Styles * apply prettier formatting and rename package ([9ef7633](9ef7633)) ### BREAKING CHANGES * package renamed from @vibe-kit/grok-cli to @involvex/super-agent-cli
1 parent ae4e8f8 commit 9f0cbb5

2 files changed

Lines changed: 110 additions & 32 deletions

File tree

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "@plugins"]
2+
path = @plugins
3+
url = https://github.com/involvex/super-agent-cli-plugins

CHANGELOG.md

Lines changed: 107 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,153 +1,228 @@
11
## [0.0.59](https://github.com/involvex/super-agent-cli/compare/v0.0.58...v0.0.59) (2026-01-30)
22

3+
34
### Features
45

5-
- **plugins:** enhance plugin installation to support GitHub repos and local directories ([a4b448a](https://github.com/involvex/super-agent-cli/commit/a4b448a7571d9392683b836648178241acf7a51f))
6+
* **plugins:** enhance plugin installation to support GitHub repos and local directories ([a4b448a](https://github.com/involvex/super-agent-cli/commit/a4b448a7571d9392683b836648178241acf7a51f))
7+
8+
69

710
## [0.0.58](https://github.com/involvex/super-agent-cli/compare/v0.0.57...v0.0.58) (2026-01-30)
811

12+
913
### Features
1014

11-
- **ui:** add banner utilities and branding assets ([69f8ef4](https://github.com/involvex/super-agent-cli/commit/69f8ef4145fe101e71a37b346b19f78f8b5b0f6d))
15+
* **ui:** add banner utilities and branding assets ([69f8ef4](https://github.com/involvex/super-agent-cli/commit/69f8ef4145fe101e71a37b346b19f78f8b5b0f6d))
16+
17+
1218

1319
## [0.0.57](https://github.com/involvex/super-agent-cli/compare/v0.0.56...v0.0.57) (2026-01-30)
1420

21+
1522
### Features
1623

17-
- **web:** add session management and enhanced UI with sidebar ([6e82cad](https://github.com/involvex/super-agent-cli/commit/6e82cadb1beb3f2e250fa69bcef5bf922506dc34))
24+
* **web:** add session management and enhanced UI with sidebar ([6e82cad](https://github.com/involvex/super-agent-cli/commit/6e82cadb1beb3f2e250fa69bcef5bf922506dc34))
25+
26+
1827

1928
## [0.0.56](https://github.com/involvex/super-agent-cli/compare/v0.0.55...v0.0.56) (2026-01-30)
2029

30+
31+
2132
## [0.0.55](https://github.com/involvex/super-agent-cli/compare/v0.0.54...v0.0.55) (2026-01-30)
2233

34+
2335
### Features
2436

25-
- **web:** add web interface for CLI interaction ([7cfa7c3](https://github.com/involvex/super-agent-cli/commit/7cfa7c3adf57a29391aa8ea2d7667d8e5a637013)), closes [#web-interface](https://github.com/involvex/super-agent-cli/issues/web-interface)
37+
* **web:** add web interface for CLI interaction ([7cfa7c3](https://github.com/involvex/super-agent-cli/commit/7cfa7c3adf57a29391aa8ea2d7667d8e5a637013)), closes [#web-interface](https://github.com/involvex/super-agent-cli/issues/web-interface)
38+
39+
2640

2741
## [0.0.54](https://github.com/involvex/super-agent-cli/compare/v0.0.53...v0.0.54) (2026-01-30)
2842

43+
2944
### Features
3045

31-
- **indexing:** add file indexing system for faster search ([4f4d0c5](https://github.com/involvex/super-agent-cli/commit/4f4d0c58abe09a44c4afe6da757e85412e565ace))
46+
* **indexing:** add file indexing system for faster search ([4f4d0c5](https://github.com/involvex/super-agent-cli/commit/4f4d0c58abe09a44c4afe6da757e85412e565ace))
47+
48+
3249

3350
## [0.0.53](https://github.com/involvex/super-agent-cli/compare/v0.0.52...v0.0.53) (2026-01-30)
3451

52+
3553
### Features
3654

37-
- **plugins:** add plugin system with management commands ([eeb78d0](https://github.com/involvex/super-agent-cli/commit/eeb78d0ccd90881ed89df4220e86ef5d87360d1b))
55+
* **plugins:** add plugin system with management commands ([eeb78d0](https://github.com/involvex/super-agent-cli/commit/eeb78d0ccd90881ed89df4220e86ef5d87360d1b))
56+
57+
3858

3959
## [0.0.52](https://github.com/involvex/super-agent-cli/compare/v0.0.51...v0.0.52) (2026-01-30)
4060

61+
62+
4163
## [0.0.51](https://github.com/involvex/super-agent-cli/compare/v0.0.50...v0.0.51) (2026-01-30)
4264

65+
4366
### Features
4467

45-
- **mcp:** add MCP server management commands ([08c24fd](https://github.com/involvex/super-agent-cli/commit/08c24fdef96f69462948e466a198007ead4b1ee0))
68+
* **mcp:** add MCP server management commands ([08c24fd](https://github.com/involvex/super-agent-cli/commit/08c24fdef96f69462948e466a198007ead4b1ee0))
69+
70+
4671

4772
## [0.0.50](https://github.com/involvex/super-agent-cli/compare/v0.0.49...v0.0.50) (2026-01-30)
4873

74+
4975
### Features
5076

51-
- **chat:** add chat session persistence commands ([a443eab](https://github.com/involvex/super-agent-cli/commit/a443eab9102b01f0e4dc59dfb127bfeba3aab167))
77+
* **chat:** add chat session persistence commands ([a443eab](https://github.com/involvex/super-agent-cli/commit/a443eab9102b01f0e4dc59dfb127bfeba3aab167))
78+
79+
5280

5381
## [0.0.49](https://github.com/involvex/super-agent-cli/compare/v0.0.48...v0.0.49) (2026-01-30)
5482

83+
5584
### Features
5685

57-
- **provider:** enable runtime provider switching ([087a57d](https://github.com/involvex/super-agent-cli/commit/087a57d9dda985a7bb7696e12a576fd8f16eb087))
86+
* **provider:** enable runtime provider switching ([087a57d](https://github.com/involvex/super-agent-cli/commit/087a57d9dda985a7bb7696e12a576fd8f16eb087))
87+
88+
5889

5990
## [0.0.48](https://github.com/involvex/super-agent-cli/compare/v0.0.47...v0.0.48) (2026-01-30)
6091

92+
6193
### Features
6294

63-
- **provider:** add OpenAI Compatible provider and multi-provider support ([41c2e89](https://github.com/involvex/super-agent-cli/commit/41c2e896ef2ab724a3ccdb47b923c7a0069d3077))
95+
* **provider:** add OpenAI Compatible provider and multi-provider support ([41c2e89](https://github.com/involvex/super-agent-cli/commit/41c2e896ef2ab724a3ccdb47b923c7a0069d3077))
96+
97+
6498

6599
## [0.0.47](https://github.com/involvex/super-agent-cli/compare/v0.0.46...v0.0.47) (2026-01-30)
66100

101+
102+
67103
## [0.0.46](https://github.com/involvex/super-agent-cli/compare/v0.0.45...v0.0.46) (2026-01-30)
68104

105+
69106
### Features
70107

71-
- **release:** add automated npm publishing workflow and build configuration ([bdb54a0](https://github.com/involvex/super-agent-cli/commit/bdb54a06a012d190457f81e3440f6d0f4ad5d43f))
108+
* **release:** add automated npm publishing workflow and build configuration ([bdb54a0](https://github.com/involvex/super-agent-cli/commit/bdb54a06a012d190457f81e3440f6d0f4ad5d43f))
109+
110+
72111

73112
## [0.0.45](https://github.com/involvex/super-agent-cli/compare/v0.0.44...v0.0.45) (2026-01-30)
74113

114+
115+
75116
## [0.0.44](https://github.com/involvex/super-agent-cli/compare/v0.0.43...v0.0.44) (2026-01-30)
76117

118+
77119
### Features
78120

79-
- **ui:** add provider selection and configuration viewer components ([6eca4ce](https://github.com/involvex/super-agent-cli/commit/6eca4cef5b5438d4900b6ebe95c9f50c36db711e))
121+
* **ui:** add provider selection and configuration viewer components ([6eca4ce](https://github.com/involvex/super-agent-cli/commit/6eca4cef5b5438d4900b6ebe95c9f50c36db711e))
122+
123+
80124

81125
## [0.0.43](https://github.com/involvex/super-agent-cli/compare/v0.0.42...v0.0.43) (2026-01-30)
82126

127+
128+
83129
## [0.0.42](https://github.com/involvex/super-agent-cli/compare/v0.0.41...v0.0.42) (2026-01-30)
84130

131+
85132
### Features
86133

87-
- **input:** add shell command execution and escape key handling ([bcb2e64](https://github.com/involvex/super-agent-cli/commit/bcb2e6450634302d25dabe538689c5f689df2ac3))
134+
* **input:** add shell command execution and escape key handling ([bcb2e64](https://github.com/involvex/super-agent-cli/commit/bcb2e6450634302d25dabe538689c5f689df2ac3))
135+
136+
88137

89138
## [0.0.41](https://github.com/involvex/super-agent-cli/compare/v0.0.40...v0.0.41) (2026-01-30)
90139

140+
91141
### Features
92142

93-
- **cli:** add yolo mode toggle and improve keyboard shortcuts ([70d7ad0](https://github.com/involvex/super-agent-cli/commit/70d7ad027495c120f8bb4eb315bc7beef988bf2c))
143+
* **cli:** add yolo mode toggle and improve keyboard shortcuts ([70d7ad0](https://github.com/involvex/super-agent-cli/commit/70d7ad027495c120f8bb4eb315bc7beef988bf2c))
144+
145+
94146

95147
## [0.0.40](https://github.com/involvex/super-agent-cli/compare/v0.0.39...v0.0.40) (2026-01-30)
96148

149+
97150
### Features
98151

99-
- **cli:** add agent modes, file mentions, and command palette ([91d9e62](https://github.com/involvex/super-agent-cli/commit/91d9e62ecfc3ef9452f10095a8c644345fe82697))
152+
* **cli:** add agent modes, file mentions, and command palette ([91d9e62](https://github.com/involvex/super-agent-cli/commit/91d9e62ecfc3ef9452f10095a8c644345fe82697))
153+
154+
100155

101156
## [0.0.39](https://github.com/involvex/super-agent-cli/compare/v0.0.38...v0.0.39) (2026-01-30)
102157

158+
103159
### Features
104160

105-
- **core:** add native Gemini SDK support and update provider configuration ([c3def79](https://github.com/involvex/super-agent-cli/commit/c3def79821b24159c235d41562f2cca91c651827))
161+
* **core:** add native Gemini SDK support and update provider configuration ([c3def79](https://github.com/involvex/super-agent-cli/commit/c3def79821b24159c235d41562f2cca91c651827))
162+
163+
106164

107165
## [0.0.38](https://github.com/involvex/super-agent-cli/compare/v0.0.37...v0.0.38) (2026-01-30)
108166

167+
109168
### Features
110169

111-
- **core:** add Gemini provider and ProjectMap tool ([23e00e5](https://github.com/involvex/super-agent-cli/commit/23e00e5552dced9b8d856c67455c4eac14662c1f))
170+
* **core:** add Gemini provider and ProjectMap tool ([23e00e5](https://github.com/involvex/super-agent-cli/commit/23e00e5552dced9b8d856c67455c4eac14662c1f))
171+
172+
112173

113174
## [0.0.37](https://github.com/involvex/super-agent-cli/compare/v0.0.36...v0.0.37) (2026-01-30)
114175

176+
115177
### Code Refactoring
116178

117-
- **core:** refactor LLM client to provider pattern with Gemini default ([45c5d95](https://github.com/involvex/super-agent-cli/commit/45c5d95301dd9f6a19d497261a7789fe2c1f6a11))
179+
* **core:** refactor LLM client to provider pattern with Gemini default ([45c5d95](https://github.com/involvex/super-agent-cli/commit/45c5d95301dd9f6a19d497261a7789fe2c1f6a11))
180+
118181

119182
### BREAKING CHANGES
120183

121-
- **core:** Configuration format changed from single API key/model to provider-based structure. Users need to update their ~/.super-agent/settings.json to use the new format with providers object.
184+
* **core:** Configuration format changed from single API key/model to provider-based structure. Users need to update their ~/.super-agent/settings.json to use the new format with providers object.
185+
186+
122187

123188
## [0.0.36](https://github.com/involvex/super-agent-cli/compare/v0.0.35...v0.0.36) (2026-01-30)
124189

190+
125191
### Features
126192

127-
- **cli:** add about and plugins management commands ([dc966c1](https://github.com/involvex/super-agent-cli/commit/dc966c14a4919fd9984219054f168e136b9dbd33))
193+
* **cli:** add about and plugins management commands ([dc966c1](https://github.com/involvex/super-agent-cli/commit/dc966c14a4919fd9984219054f168e136b9dbd33))
194+
195+
128196

129197
## [0.0.35](https://github.com/involvex/super-agent-cli/compare/07ec1540c3e1049c8b5653f73af1a2d7e620aba6...v0.0.35) (2026-01-30)
130198

199+
131200
### Bug Fixes
132201

133-
- improve diff generation and multi-line string replacement for large files ([#23](https://github.com/involvex/super-agent-cli/issues/23)) ([e662dd3](https://github.com/involvex/super-agent-cli/commit/e662dd32f8b04380196b0d06da00b3913af8e616))
134-
- migrate to bun ([#78](https://github.com/involvex/super-agent-cli/issues/78)) ([9180c4b](https://github.com/involvex/super-agent-cli/commit/9180c4b02e11a9cc58ac0372ca53a51f445d1cf8))
135-
- re-enable vibekit by resolving runtime crash when using grok cli ([#77](https://github.com/involvex/super-agent-cli/issues/77)) ([bd78e9e](https://github.com/involvex/super-agent-cli/commit/bd78e9e8456818e45578fbeb9f540064ecc2797b))
202+
* improve diff generation and multi-line string replacement for large files ([#23](https://github.com/involvex/super-agent-cli/issues/23)) ([e662dd3](https://github.com/involvex/super-agent-cli/commit/e662dd32f8b04380196b0d06da00b3913af8e616))
203+
* migrate to bun ([#78](https://github.com/involvex/super-agent-cli/issues/78)) ([9180c4b](https://github.com/involvex/super-agent-cli/commit/9180c4b02e11a9cc58ac0372ca53a51f445d1cf8))
204+
* re-enable vibekit by resolving runtime crash when using grok cli ([#77](https://github.com/involvex/super-agent-cli/issues/77)) ([bd78e9e](https://github.com/involvex/super-agent-cli/commit/bd78e9e8456818e45578fbeb9f540064ecc2797b))
205+
136206

137207
### Features
138208

139-
- add configurable base URL support ([#19](https://github.com/involvex/super-agent-cli/issues/19)) ([07ec154](https://github.com/involvex/super-agent-cli/commit/07ec1540c3e1049c8b5653f73af1a2d7e620aba6))
140-
- add model parameter support for CLI ([#29](https://github.com/involvex/super-agent-cli/issues/29)) ([6f8f9cf](https://github.com/involvex/super-agent-cli/commit/6f8f9cf8394ef9b4608211f4e8493f713882e27b))
141-
- add support for auto-edit toggle ([#24](https://github.com/involvex/super-agent-cli/issues/24)) ([5183e4d](https://github.com/involvex/super-agent-cli/commit/5183e4d3b58ab7b16b32087b54e6639b871cdb97))
142-
- add support for mcp ([#44](https://github.com/involvex/super-agent-cli/issues/44)) ([9c1d82b](https://github.com/involvex/super-agent-cli/commit/9c1d82be3c1022262eb229501123f2776c39189a))
143-
- git commands ([#41](https://github.com/involvex/super-agent-cli/issues/41)) ([9642bda](https://github.com/involvex/super-agent-cli/commit/9642bdaeef1cbccb4adb9429062052f1d5477a43))
144-
- improve model configuration and settings management ([#59](https://github.com/involvex/super-agent-cli/issues/59)) ([5a4b2c8](https://github.com/involvex/super-agent-cli/commit/5a4b2c8e25337c6ec013baf4295dbb520712e501))
145-
- save selected model ([#39](https://github.com/involvex/super-agent-cli/issues/39)) ([c00feda](https://github.com/involvex/super-agent-cli/commit/c00feda72802e7aef02b11ca72a1274ca5c6db7d))
209+
* add configurable base URL support ([#19](https://github.com/involvex/super-agent-cli/issues/19)) ([07ec154](https://github.com/involvex/super-agent-cli/commit/07ec1540c3e1049c8b5653f73af1a2d7e620aba6))
210+
* add model parameter support for CLI ([#29](https://github.com/involvex/super-agent-cli/issues/29)) ([6f8f9cf](https://github.com/involvex/super-agent-cli/commit/6f8f9cf8394ef9b4608211f4e8493f713882e27b))
211+
* add support for auto-edit toggle ([#24](https://github.com/involvex/super-agent-cli/issues/24)) ([5183e4d](https://github.com/involvex/super-agent-cli/commit/5183e4d3b58ab7b16b32087b54e6639b871cdb97))
212+
* add support for mcp ([#44](https://github.com/involvex/super-agent-cli/issues/44)) ([9c1d82b](https://github.com/involvex/super-agent-cli/commit/9c1d82be3c1022262eb229501123f2776c39189a))
213+
* git commands ([#41](https://github.com/involvex/super-agent-cli/issues/41)) ([9642bda](https://github.com/involvex/super-agent-cli/commit/9642bdaeef1cbccb4adb9429062052f1d5477a43))
214+
* improve model configuration and settings management ([#59](https://github.com/involvex/super-agent-cli/issues/59)) ([5a4b2c8](https://github.com/involvex/super-agent-cli/commit/5a4b2c8e25337c6ec013baf4295dbb520712e501))
215+
* save selected model ([#39](https://github.com/involvex/super-agent-cli/issues/39)) ([c00feda](https://github.com/involvex/super-agent-cli/commit/c00feda72802e7aef02b11ca72a1274ca5c6db7d))
216+
146217

147218
### Styles
148219

149-
- apply prettier formatting and rename package ([9ef7633](https://github.com/involvex/super-agent-cli/commit/9ef7633f35568d18bb617a2e266487cb7875f539))
220+
* apply prettier formatting and rename package ([9ef7633](https://github.com/involvex/super-agent-cli/commit/9ef7633f35568d18bb617a2e266487cb7875f539))
221+
150222

151223
### BREAKING CHANGES
152224

153-
- package renamed from @vibe-kit/grok-cli to @involvex/super-agent-cli
225+
* package renamed from @vibe-kit/grok-cli to @involvex/super-agent-cli
226+
227+
228+

0 commit comments

Comments
 (0)