@tecet/ollm 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +529 -529
  2. package/dist/cli.js +291 -244
  3. package/dist/cli.js.map +3 -3
  4. package/dist/config/LLM_profiles.json +4 -4
  5. package/dist/config/settingsService.d.ts +5 -0
  6. package/dist/config/settingsService.d.ts.map +1 -1
  7. package/dist/config/settingsService.js +20 -0
  8. package/dist/config/settingsService.js.map +1 -1
  9. package/dist/config/toolsConfig.d.ts +6 -3
  10. package/dist/config/toolsConfig.d.ts.map +1 -1
  11. package/dist/config/toolsConfig.js +52 -3
  12. package/dist/config/toolsConfig.js.map +1 -1
  13. package/dist/features/chat/hooks/useChatNetwork.d.ts.map +1 -1
  14. package/dist/features/chat/hooks/useChatNetwork.js +15 -4
  15. package/dist/features/chat/hooks/useChatNetwork.js.map +1 -1
  16. package/dist/features/context/ContextManagerContext.d.ts.map +1 -1
  17. package/dist/features/context/ContextManagerContext.js +14 -73
  18. package/dist/features/context/ContextManagerContext.js.map +1 -1
  19. package/dist/features/context/hooks/useToolSupport.d.ts.map +1 -1
  20. package/dist/features/context/hooks/useToolSupport.js +13 -5
  21. package/dist/features/context/hooks/useToolSupport.js.map +1 -1
  22. package/dist/features/context/utils/systemPromptBuilder.d.ts.map +1 -1
  23. package/dist/features/context/utils/systemPromptBuilder.js +6 -34
  24. package/dist/features/context/utils/systemPromptBuilder.js.map +1 -1
  25. package/dist/nonInteractive.d.ts.map +1 -1
  26. package/dist/nonInteractive.js +1 -2
  27. package/dist/nonInteractive.js.map +1 -1
  28. package/dist/templates/assistant/tier3.txt +2 -0
  29. package/dist/templates/system/CoreMandates.txt +3 -0
  30. package/dist/templates/system/ToolDescriptions.txt +11 -3
  31. package/dist/templates/system/skills/SkillsAssistant.txt +1 -2
  32. package/dist/ui/App.js +15 -15
  33. package/dist/ui/components/launch/VersionBanner.js +1 -1
  34. package/dist/ui/components/layout/KeybindsLegend.d.ts.map +1 -1
  35. package/dist/ui/components/layout/KeybindsLegend.js +1 -1
  36. package/dist/ui/components/layout/KeybindsLegend.js.map +1 -1
  37. package/dist/ui/components/tabs/BugReportTab.js +1 -1
  38. package/dist/ui/components/tools/CategorySection.d.ts.map +1 -1
  39. package/dist/ui/components/tools/CategorySection.js +1 -0
  40. package/dist/ui/components/tools/CategorySection.js.map +1 -1
  41. package/dist/ui/contexts/__tests__/mcpTestUtils.d.ts +14 -14
  42. package/docs/DevelopmentRoadmap/OLLM-CLI_Releases.md +419 -419
  43. package/docs/DevelopmentRoadmap/RoadmapVisual.md +372 -372
  44. package/docs/LLM Models/LLM_ModelsList.md +1071 -1071
  45. package/docs/MCP/MCP_Architecture.md +1086 -1086
  46. package/package.json +82 -82
@@ -1,419 +1,419 @@
1
- # OLLM CLI Release Notes
2
-
3
- **Version History and Changelog**
4
-
5
- This document tracks all OLLM CLI releases with detailed notes on features, changes, fixes, and breaking changes.
6
-
7
- ---
8
-
9
- ## v0.1.0 - Foundation Release
10
-
11
- **Released:** January 30, 2026
12
- **Status:** ✅ Released
13
-
14
- ### Overview
15
-
16
- The foundation release of OLLM CLI establishes the core architecture and essential features for a local-first, provider-agnostic LLM interface.
17
-
18
- ### ✨ Features Added
19
-
20
- #### 🎨 Interactive Terminal UI
21
-
22
- - React + Ink powered interface with streaming responses
23
- - Syntax highlighting for code blocks with language detection
24
- - Status bar showing model, context usage, and VRAM metrics
25
- - Tool execution preview with diff visualization
26
- - Real-time updates and responsive layout
27
-
28
- #### 🧠 Smart Context Management
29
-
30
- - Adaptive context sizing based on available VRAM
31
- - Automatic compression when approaching context limits
32
- - Snapshot and rollover support for long conversations
33
- - Real-time monitoring of token usage and memory consumption
34
- - Memory safety guards to prevent OOM errors
35
-
36
- #### 🛠️ Powerful Tool System
37
-
38
- - Built-in tools: File operations, shell execution, web fetch, search, memory
39
- - Policy-based confirmation: ASK, AUTO, and YOLO approval modes
40
- - Diff preview for file edits before applying changes
41
- - Output truncation and streaming for long-running operations
42
- - Tool registry with schema validation
43
-
44
- #### 🔌 Extensibility (Pre-Alpha)
45
-
46
- - Hook system for event-driven automation and safety gates
47
- - Extension system with manifest-based configuration
48
- - MCP integration (Model Context Protocol) for external tools
49
- - Provider-agnostic architecture supporting multiple LLM backends
50
-
51
- #### 💾 Session Management
52
-
53
- - Record and resume conversations with full context
54
- - Automatic compression to manage context limits
55
- - Loop detection to prevent runaway tool calls
56
- - Session history with searchable archives
57
-
58
- #### 🌐 Offline First
59
-
60
- - Works without internet when models are installed locally
61
- - No telemetry - all data stays on your machine
62
- - Local model management - pull, list, and remove models
63
-
64
- ### 📦 Technical Details
65
-
66
- - **Architecture:** Provider-agnostic with adapter pattern
67
- - **UI Framework:** React + Ink for terminal rendering
68
- - **Testing:** Comprehensive test suite with property-based testing
69
- - **Platform:** Node.js 20+, TypeScript with strict mode
70
-
71
- ---
72
-
73
- ## v0.2.0 - File Explorer & Enhanced MCP
74
-
75
- **Status:** 📋 Planned
76
- **Target:** Q2 2026
77
-
78
- ### Planned Features
79
-
80
- #### 📁 File Explorer
81
-
82
- - Tree-based file browser with keyboard navigation
83
- - File operations (create, delete, rename, move)
84
- - Multi-file selection and batch operations
85
- - Search and filter capabilities
86
- - Git status integration
87
- - File preview pane
88
-
89
- #### 🔌 Enhanced MCP
90
-
91
- - MCP Marketplace integration
92
- - Server health monitoring
93
- - OAuth configuration support
94
- - Tool auto-approval management
95
- - Server logs viewer
96
- - Performance optimizations
97
-
98
- ### Configuration Example
99
-
100
- ```yaml
101
- fileExplorer:
102
- enabled: true
103
- showHidden: false
104
- gitIntegration: true
105
- previewPane: true
106
-
107
- mcp:
108
- marketplace:
109
- enabled: true
110
- autoUpdate: false
111
- healthCheck:
112
- interval: 60
113
- ```
114
-
115
- ---
116
-
117
- ## v0.3.0 - Advanced File Explorer & MCP Polish
118
-
119
- **Status:** 📋 Planned
120
- **Target:** Q2 2026
121
-
122
- ### Planned Features
123
-
124
- #### 🔍 Advanced File Explorer
125
-
126
- - Multi-file selection with checkboxes
127
- - Drag-and-drop file operations
128
- - Advanced search with regex support
129
- - File type filtering
130
- - Custom file actions
131
- - Workspace management
132
-
133
- #### ⚡ MCP Polish
134
-
135
- - Performance optimizations
136
- - Enhanced error handling
137
- - Improved server lifecycle management
138
- - Better tool schema validation
139
- - Connection pooling
140
- - Caching layer
141
-
142
- ---
143
-
144
- ## v0.4.0 - Code Editor
145
-
146
- **Status:** 📋 Planned
147
- **Target:** Q3 2026
148
-
149
- ### Planned Features
150
-
151
- #### ✏️ Terminal Code Editor
152
-
153
- - Built-in terminal-based code editor
154
- - Syntax highlighting for multiple languages
155
- - Line numbers and cursor positioning
156
- - Search and replace functionality
157
- - Multiple file tabs
158
- - Integration with LLM for code suggestions
159
- - Format on save
160
- - Undo/redo support
161
-
162
- ### Configuration Example
163
-
164
- ```yaml
165
- editor:
166
- enabled: true
167
- theme: monokai
168
- tabSize: 2
169
- formatOnSave: true
170
- tabs:
171
- maxOpen: 10
172
- ```
173
-
174
- ---
175
-
176
- ## v0.5.0 - Release Kraken
177
-
178
- **Status:** 📋 Planned
179
- **Target:** Q3 2026
180
-
181
- ### Planned Features
182
-
183
- #### 🦑 External LLM Provider Access
184
-
185
- Access powerful cloud models when local models need assistance.
186
-
187
- **CLI-Based Providers:**
188
-
189
- - Gemini CLI integration
190
- - Claude Code integration
191
- - Codex CLI integration
192
- - Subprocess execution bridge
193
-
194
- **API-Based Providers:**
195
-
196
- - OpenAI API integration
197
- - Anthropic API integration
198
- - Google AI API integration
199
- - Streaming response handling
200
-
201
- **Management:**
202
-
203
- - Provider discovery and health checks
204
- - Intelligent provider selection
205
- - Context transfer between providers
206
- - Cost tracking and budget enforcement
207
- - Auto-escalation on local model failure
208
- - Confirmation dialogs for external requests
209
-
210
- ### Configuration Example
211
-
212
- ```yaml
213
- kraken:
214
- enabled: true
215
- confirmBeforeRelease: true
216
- autoEscalation:
217
- enabled: false
218
- triggers:
219
- - contextOverflow
220
- - localModelError
221
- sessionBudget: 10.00 # USD
222
- providers:
223
- geminiCli:
224
- enabled: true
225
- executable: gemini
226
- defaultModel: gemini-2.0-flash-exp
227
- claudeCode:
228
- enabled: true
229
- executable: claude-code
230
- openai:
231
- enabled: true
232
- apiKey: ${OPENAI_API_KEY}
233
- model: gpt-4
234
- maxTokens: 8192
235
- ```
236
-
237
- ---
238
-
239
- ## v0.6.0 - RAG Integration
240
-
241
- **Status:** 📋 Planned
242
- **Target:** Q3 2026
243
-
244
- ### Planned Features
245
-
246
- #### 🔍 Semantic Search & Codebase Understanding
247
-
248
- Find relevant code with semantic search.
249
-
250
- **Key Features:**
251
-
252
- - Codebase indexing with embeddings
253
- - Semantic code search
254
- - Context-aware file discovery
255
- - Symbol and definition search
256
- - Documentation search
257
- - Vector database integration (LanceDB)
258
- - Incremental indexing
259
- - Search result ranking
260
-
261
- ### Configuration Example
262
-
263
- ```yaml
264
- codebaseIndex:
265
- enabled: true
266
- autoIndex: true
267
- extensions: ['.ts', '.js', '.py', '.java', '.go']
268
- excludePatterns: ['node_modules', 'dist', '.git']
269
- maxFileSize: 1048576 # 1MB
270
- vectorDatabase: 'lancedb'
271
- ```
272
-
273
- ---
274
-
275
- ## v0.7.0 - GitHub Integration
276
-
277
- **Status:** 📋 Planned
278
- **Target:** Q3 2026
279
-
280
- ### Planned Features
281
-
282
- #### 🐙 GitHub Workflow Integration
283
-
284
- **Key Features:**
285
-
286
- - GitHub API integration
287
- - Issue and PR management
288
- - Code review workflows
289
- - Commit and push operations
290
- - Branch management
291
- - GitHub Actions integration
292
-
293
- ### Configuration Example
294
-
295
- ```yaml
296
- github:
297
- enabled: true
298
- token: ${GITHUB_TOKEN}
299
- defaultRepo: owner/repo
300
- autoLink: true # Auto-link issues/PRs in chat
301
- features:
302
- issues: true
303
- pullRequests: true
304
- codeReview: true
305
- ```
306
-
307
- ---
308
-
309
- ## v0.8.0 - Cross-Platform Support
310
-
311
- **Status:** 📋 Planned
312
- **Target:** Q4 2026
313
-
314
- ### Planned Features
315
-
316
- #### 🖥️ Enhanced Windows, macOS, Linux Compatibility
317
-
318
- **Key Features:**
319
-
320
- - Platform detection and defaults
321
- - Cross-platform GPU monitoring (NVIDIA, AMD, Apple Silicon)
322
- - Terminal capability detection
323
- - Path normalization
324
- - Platform-specific optimizations
325
-
326
- ### Configuration Example
327
-
328
- ```yaml
329
- platform:
330
- autoDetect: true
331
- gpu:
332
- monitoring: true
333
- vendor: auto # nvidia, amd, apple, or auto
334
- terminal:
335
- colorSupport: auto
336
- unicodeSupport: auto
337
- ```
338
-
339
- ---
340
-
341
- ## v0.9.0 - vLLM & Open Source Providers
342
-
343
- **Status:** 📋 Planned
344
- **Target:** Q4 2026
345
-
346
- ### Planned Features
347
-
348
- #### 🔌 High-Performance Inference Engines
349
-
350
- **Key Features:**
351
-
352
- - vLLM provider integration
353
- - OpenAI-compatible API support
354
- - High-throughput inference
355
- - Batching and caching
356
- - Multi-GPU support
357
- - Custom model loading
358
-
359
- ### Configuration Example
360
-
361
- ```yaml
362
- providers:
363
- vllm:
364
- enabled: true
365
- host: http://localhost:8000
366
- apiKey: ${VLLM_API_KEY}
367
- timeout: 30
368
- openaiCompatible:
369
- enabled: true
370
- host: http://localhost:1234
371
- apiKey: ${OPENAI_COMPATIBLE_API_KEY}
372
- ```
373
-
374
- ---
375
-
376
- ## v1.0.0 - Beta Release
377
-
378
- **Status:** 🔮 Future
379
- **Target:** Q4 2026
380
-
381
- ### Planned Features
382
-
383
- - Production-ready stability
384
- - Performance optimizations
385
- - Enterprise features
386
- - Advanced security features
387
- - Comprehensive documentation
388
- - Migration tools
389
-
390
- ---
391
-
392
- ## Version Comparison
393
-
394
- | Version | Release Date | Status | Key Features |
395
- | ------- | ------------ | ----------- | ------------------------------------------ |
396
- | v0.1.0 | Jan 2026 | ✅ Released | Foundation, TUI, Tools, Context Management |
397
- | v0.2.0 | Q2 2026 | 📋 Planned | File Explorer, Enhanced MCP |
398
- | v0.3.0 | Q2 2026 | 📋 Planned | Advanced Explorer, MCP Polish |
399
- | v0.4.0 | Q3 2026 | 📋 Planned | Code Editor |
400
- | v0.5.0 | Q3 2026 | 📋 Planned | Release Kraken (External Providers) |
401
- | v0.6.0 | Q3 2026 | 📋 Planned | RAG Integration |
402
- | v0.7.0 | Q3 2026 | 📋 Planned | GitHub Integration |
403
- | v0.8.0 | Q4 2026 | 📋 Planned | Cross-Platform Support |
404
- | v0.9.0 | Q4 2026 | 📋 Planned | vLLM & Open Source Providers |
405
- | v1.0.0 | Q4 2026 | 🔮 Future | Beta Release |
406
-
407
- ---
408
-
409
- ## Related Documentation
410
-
411
- - [Roadmap](Roadmap.md) - Detailed development roadmap
412
- - [Roadmap Visual](RoadmapVisual.md) - Visual timeline and diagrams
413
- - [Planned Features](PlanedFeatures.md) - Feature reference guide
414
- - [README](README.md) - Roadmap overview
415
-
416
- ---
417
-
418
- **Last Updated:** January 28, 2026
419
- **Current Version:** v0.1.0
1
+ # OLLM CLI Release Notes
2
+
3
+ **Version History and Changelog**
4
+
5
+ This document tracks all OLLM CLI releases with detailed notes on features, changes, fixes, and breaking changes.
6
+
7
+ ---
8
+
9
+ ## v0.1.0 - Foundation Release
10
+
11
+ **Released:** January 30, 2026
12
+ **Status:** ✅ Released
13
+
14
+ ### Overview
15
+
16
+ The foundation release of OLLM CLI establishes the core architecture and essential features for a local-first, provider-agnostic LLM interface.
17
+
18
+ ### ✨ Features Added
19
+
20
+ #### 🎨 Interactive Terminal UI
21
+
22
+ - React + Ink powered interface with streaming responses
23
+ - Syntax highlighting for code blocks with language detection
24
+ - Status bar showing model, context usage, and VRAM metrics
25
+ - Tool execution preview with diff visualization
26
+ - Real-time updates and responsive layout
27
+
28
+ #### 🧠 Smart Context Management
29
+
30
+ - Adaptive context sizing based on available VRAM
31
+ - Automatic compression when approaching context limits
32
+ - Snapshot and rollover support for long conversations
33
+ - Real-time monitoring of token usage and memory consumption
34
+ - Memory safety guards to prevent OOM errors
35
+
36
+ #### 🛠️ Powerful Tool System
37
+
38
+ - Built-in tools: File operations, shell execution, web fetch, search, memory
39
+ - Policy-based confirmation: ASK, AUTO, and YOLO approval modes
40
+ - Diff preview for file edits before applying changes
41
+ - Output truncation and streaming for long-running operations
42
+ - Tool registry with schema validation
43
+
44
+ #### 🔌 Extensibility (Pre-Alpha)
45
+
46
+ - Hook system for event-driven automation and safety gates
47
+ - Extension system with manifest-based configuration
48
+ - MCP integration (Model Context Protocol) for external tools
49
+ - Provider-agnostic architecture supporting multiple LLM backends
50
+
51
+ #### 💾 Session Management
52
+
53
+ - Record and resume conversations with full context
54
+ - Automatic compression to manage context limits
55
+ - Loop detection to prevent runaway tool calls
56
+ - Session history with searchable archives
57
+
58
+ #### 🌐 Offline First
59
+
60
+ - Works without internet when models are installed locally
61
+ - No telemetry - all data stays on your machine
62
+ - Local model management - pull, list, and remove models
63
+
64
+ ### 📦 Technical Details
65
+
66
+ - **Architecture:** Provider-agnostic with adapter pattern
67
+ - **UI Framework:** React + Ink for terminal rendering
68
+ - **Testing:** Comprehensive test suite with property-based testing
69
+ - **Platform:** Node.js 20+, TypeScript with strict mode
70
+
71
+ ---
72
+
73
+ ## v0.2.0 - File Explorer & Enhanced MCP
74
+
75
+ **Status:** 📋 Planned
76
+ **Target:** Q2 2026
77
+
78
+ ### Planned Features
79
+
80
+ #### 📁 File Explorer
81
+
82
+ - Tree-based file browser with keyboard navigation
83
+ - File operations (create, delete, rename, move)
84
+ - Multi-file selection and batch operations
85
+ - Search and filter capabilities
86
+ - Git status integration
87
+ - File preview pane
88
+
89
+ #### 🔌 Enhanced MCP
90
+
91
+ - MCP Marketplace integration
92
+ - Server health monitoring
93
+ - OAuth configuration support
94
+ - Tool auto-approval management
95
+ - Server logs viewer
96
+ - Performance optimizations
97
+
98
+ ### Configuration Example
99
+
100
+ ```yaml
101
+ fileExplorer:
102
+ enabled: true
103
+ showHidden: false
104
+ gitIntegration: true
105
+ previewPane: true
106
+
107
+ mcp:
108
+ marketplace:
109
+ enabled: true
110
+ autoUpdate: false
111
+ healthCheck:
112
+ interval: 60
113
+ ```
114
+
115
+ ---
116
+
117
+ ## v0.3.0 - Advanced File Explorer & MCP Polish
118
+
119
+ **Status:** 📋 Planned
120
+ **Target:** Q2 2026
121
+
122
+ ### Planned Features
123
+
124
+ #### 🔍 Advanced File Explorer
125
+
126
+ - Multi-file selection with checkboxes
127
+ - Drag-and-drop file operations
128
+ - Advanced search with regex support
129
+ - File type filtering
130
+ - Custom file actions
131
+ - Workspace management
132
+
133
+ #### ⚡ MCP Polish
134
+
135
+ - Performance optimizations
136
+ - Enhanced error handling
137
+ - Improved server lifecycle management
138
+ - Better tool schema validation
139
+ - Connection pooling
140
+ - Caching layer
141
+
142
+ ---
143
+
144
+ ## v0.4.0 - Code Editor
145
+
146
+ **Status:** 📋 Planned
147
+ **Target:** Q3 2026
148
+
149
+ ### Planned Features
150
+
151
+ #### ✏️ Terminal Code Editor
152
+
153
+ - Built-in terminal-based code editor
154
+ - Syntax highlighting for multiple languages
155
+ - Line numbers and cursor positioning
156
+ - Search and replace functionality
157
+ - Multiple file tabs
158
+ - Integration with LLM for code suggestions
159
+ - Format on save
160
+ - Undo/redo support
161
+
162
+ ### Configuration Example
163
+
164
+ ```yaml
165
+ editor:
166
+ enabled: true
167
+ theme: monokai
168
+ tabSize: 2
169
+ formatOnSave: true
170
+ tabs:
171
+ maxOpen: 10
172
+ ```
173
+
174
+ ---
175
+
176
+ ## v0.5.0 - Release Kraken
177
+
178
+ **Status:** 📋 Planned
179
+ **Target:** Q3 2026
180
+
181
+ ### Planned Features
182
+
183
+ #### 🦑 External LLM Provider Access
184
+
185
+ Access powerful cloud models when local models need assistance.
186
+
187
+ **CLI-Based Providers:**
188
+
189
+ - Gemini CLI integration
190
+ - Claude Code integration
191
+ - Codex CLI integration
192
+ - Subprocess execution bridge
193
+
194
+ **API-Based Providers:**
195
+
196
+ - OpenAI API integration
197
+ - Anthropic API integration
198
+ - Google AI API integration
199
+ - Streaming response handling
200
+
201
+ **Management:**
202
+
203
+ - Provider discovery and health checks
204
+ - Intelligent provider selection
205
+ - Context transfer between providers
206
+ - Cost tracking and budget enforcement
207
+ - Auto-escalation on local model failure
208
+ - Confirmation dialogs for external requests
209
+
210
+ ### Configuration Example
211
+
212
+ ```yaml
213
+ kraken:
214
+ enabled: true
215
+ confirmBeforeRelease: true
216
+ autoEscalation:
217
+ enabled: false
218
+ triggers:
219
+ - contextOverflow
220
+ - localModelError
221
+ sessionBudget: 10.00 # USD
222
+ providers:
223
+ geminiCli:
224
+ enabled: true
225
+ executable: gemini
226
+ defaultModel: gemini-2.0-flash-exp
227
+ claudeCode:
228
+ enabled: true
229
+ executable: claude-code
230
+ openai:
231
+ enabled: true
232
+ apiKey: ${OPENAI_API_KEY}
233
+ model: gpt-4
234
+ maxTokens: 8192
235
+ ```
236
+
237
+ ---
238
+
239
+ ## v0.6.0 - RAG Integration
240
+
241
+ **Status:** 📋 Planned
242
+ **Target:** Q3 2026
243
+
244
+ ### Planned Features
245
+
246
+ #### 🔍 Semantic Search & Codebase Understanding
247
+
248
+ Find relevant code with semantic search.
249
+
250
+ **Key Features:**
251
+
252
+ - Codebase indexing with embeddings
253
+ - Semantic code search
254
+ - Context-aware file discovery
255
+ - Symbol and definition search
256
+ - Documentation search
257
+ - Vector database integration (LanceDB)
258
+ - Incremental indexing
259
+ - Search result ranking
260
+
261
+ ### Configuration Example
262
+
263
+ ```yaml
264
+ codebaseIndex:
265
+ enabled: true
266
+ autoIndex: true
267
+ extensions: ['.ts', '.js', '.py', '.java', '.go']
268
+ excludePatterns: ['node_modules', 'dist', '.git']
269
+ maxFileSize: 1048576 # 1MB
270
+ vectorDatabase: 'lancedb'
271
+ ```
272
+
273
+ ---
274
+
275
+ ## v0.7.0 - GitHub Integration
276
+
277
+ **Status:** 📋 Planned
278
+ **Target:** Q3 2026
279
+
280
+ ### Planned Features
281
+
282
+ #### 🐙 GitHub Workflow Integration
283
+
284
+ **Key Features:**
285
+
286
+ - GitHub API integration
287
+ - Issue and PR management
288
+ - Code review workflows
289
+ - Commit and push operations
290
+ - Branch management
291
+ - GitHub Actions integration
292
+
293
+ ### Configuration Example
294
+
295
+ ```yaml
296
+ github:
297
+ enabled: true
298
+ token: ${GITHUB_TOKEN}
299
+ defaultRepo: owner/repo
300
+ autoLink: true # Auto-link issues/PRs in chat
301
+ features:
302
+ issues: true
303
+ pullRequests: true
304
+ codeReview: true
305
+ ```
306
+
307
+ ---
308
+
309
+ ## v0.8.0 - Cross-Platform Support
310
+
311
+ **Status:** 📋 Planned
312
+ **Target:** Q4 2026
313
+
314
+ ### Planned Features
315
+
316
+ #### 🖥️ Enhanced Windows, macOS, Linux Compatibility
317
+
318
+ **Key Features:**
319
+
320
+ - Platform detection and defaults
321
+ - Cross-platform GPU monitoring (NVIDIA, AMD, Apple Silicon)
322
+ - Terminal capability detection
323
+ - Path normalization
324
+ - Platform-specific optimizations
325
+
326
+ ### Configuration Example
327
+
328
+ ```yaml
329
+ platform:
330
+ autoDetect: true
331
+ gpu:
332
+ monitoring: true
333
+ vendor: auto # nvidia, amd, apple, or auto
334
+ terminal:
335
+ colorSupport: auto
336
+ unicodeSupport: auto
337
+ ```
338
+
339
+ ---
340
+
341
+ ## v0.9.0 - vLLM & Open Source Providers
342
+
343
+ **Status:** 📋 Planned
344
+ **Target:** Q4 2026
345
+
346
+ ### Planned Features
347
+
348
+ #### 🔌 High-Performance Inference Engines
349
+
350
+ **Key Features:**
351
+
352
+ - vLLM provider integration
353
+ - OpenAI-compatible API support
354
+ - High-throughput inference
355
+ - Batching and caching
356
+ - Multi-GPU support
357
+ - Custom model loading
358
+
359
+ ### Configuration Example
360
+
361
+ ```yaml
362
+ providers:
363
+ vllm:
364
+ enabled: true
365
+ host: http://localhost:8000
366
+ apiKey: ${VLLM_API_KEY}
367
+ timeout: 30
368
+ openaiCompatible:
369
+ enabled: true
370
+ host: http://localhost:1234
371
+ apiKey: ${OPENAI_COMPATIBLE_API_KEY}
372
+ ```
373
+
374
+ ---
375
+
376
+ ## v1.0.0 - Beta Release
377
+
378
+ **Status:** 🔮 Future
379
+ **Target:** Q4 2026
380
+
381
+ ### Planned Features
382
+
383
+ - Production-ready stability
384
+ - Performance optimizations
385
+ - Enterprise features
386
+ - Advanced security features
387
+ - Comprehensive documentation
388
+ - Migration tools
389
+
390
+ ---
391
+
392
+ ## Version Comparison
393
+
394
+ | Version | Release Date | Status | Key Features |
395
+ | ------- | ------------ | ----------- | ------------------------------------------ |
396
+ | v0.1.0 | Jan 2026 | ✅ Released | Foundation, TUI, Tools, Context Management |
397
+ | v0.2.0 | Q2 2026 | 📋 Planned | File Explorer, Enhanced MCP |
398
+ | v0.3.0 | Q2 2026 | 📋 Planned | Advanced Explorer, MCP Polish |
399
+ | v0.4.0 | Q3 2026 | 📋 Planned | Code Editor |
400
+ | v0.5.0 | Q3 2026 | 📋 Planned | Release Kraken (External Providers) |
401
+ | v0.6.0 | Q3 2026 | 📋 Planned | RAG Integration |
402
+ | v0.7.0 | Q3 2026 | 📋 Planned | GitHub Integration |
403
+ | v0.8.0 | Q4 2026 | 📋 Planned | Cross-Platform Support |
404
+ | v0.9.0 | Q4 2026 | 📋 Planned | vLLM & Open Source Providers |
405
+ | v1.0.0 | Q4 2026 | 🔮 Future | Beta Release |
406
+
407
+ ---
408
+
409
+ ## Related Documentation
410
+
411
+ - [Roadmap](Roadmap.md) - Detailed development roadmap
412
+ - [Roadmap Visual](RoadmapVisual.md) - Visual timeline and diagrams
413
+ - [Planned Features](PlanedFeatures.md) - Feature reference guide
414
+ - [README](README.md) - Roadmap overview
415
+
416
+ ---
417
+
418
+ **Last Updated:** January 28, 2026
419
+ **Current Version:** v0.1.0