@kikkimo/claude-launcher 2.1.0 → 2.2.0
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.
- package/CHANGELOG.md +21 -0
- package/lib/presets/providers.js +19 -1
- package/lib/ui/prompts.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.2.0] - 2025-11-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Kimi for Coding Provider**: New specialized provider for coding-focused AI assistance:
|
|
12
|
+
- `kimi_for_coding`: Dedicated endpoint optimized for software development workflows
|
|
13
|
+
- Specialized coding model: `kimi-for-coding` with enhanced code generation capabilities
|
|
14
|
+
- Extended timeout configuration (50 minutes) for large code generation and complex development tasks
|
|
15
|
+
- Anthropic-compatible API interface for seamless integration with existing tooling
|
|
16
|
+
- Consistent configuration patterns mirroring moonshot provider settings
|
|
17
|
+
- **Enhanced Kimi Thinking Models**: Expanded support for Kimi's thinking-capable models:
|
|
18
|
+
- `kimi-k2-thinking`: Standard thinking model for complex reasoning tasks
|
|
19
|
+
- `kimi-k2-thinking-turbo`: Optimized thinking model for faster response times
|
|
20
|
+
- Additional model options for users requiring different performance characteristics
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- **Provider Selection Interface**: Updated UI prompts to include new `kimi_for_coding` provider in third-party API selection menu
|
|
24
|
+
- **Provider Configuration**: Extended provider validation logic to properly handle new specialized coding provider
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- **Provider Recognition**: Fixed provider ID validation to include `kimi_for_coding` in the list of supported providers for third-party API configuration
|
|
28
|
+
|
|
8
29
|
## [2.1.0] - 2025-10-27
|
|
9
30
|
|
|
10
31
|
### Added
|
package/lib/presets/providers.js
CHANGED
|
@@ -26,7 +26,9 @@ const providers = {
|
|
|
26
26
|
models: [
|
|
27
27
|
'kimi-k2-0711-preview',
|
|
28
28
|
'kimi-k2-0905-preview',
|
|
29
|
-
'kimi-k2-turbo-preview'
|
|
29
|
+
'kimi-k2-turbo-preview',
|
|
30
|
+
'kimi-k2-thinking',
|
|
31
|
+
'kimi-k2-thinking-turbo'
|
|
30
32
|
],
|
|
31
33
|
authTokenFormat: 'sk-...',
|
|
32
34
|
description: 'Moonshot AI - Provides Anthropic-compatible API',
|
|
@@ -38,6 +40,22 @@ const providers = {
|
|
|
38
40
|
},
|
|
39
41
|
note: 'Requires extended timeout for large responses'
|
|
40
42
|
},
|
|
43
|
+
kimi_for_coding: {
|
|
44
|
+
name: 'Moonshot AI (Kimi for coding)',
|
|
45
|
+
baseUrl: 'https://api.kimi.com/coding',
|
|
46
|
+
models: [
|
|
47
|
+
'kimi-for-coding'
|
|
48
|
+
],
|
|
49
|
+
authTokenFormat: 'sk-...',
|
|
50
|
+
description: 'Moonshot AI - Specialized coding model endpoint',
|
|
51
|
+
requiresToken: true,
|
|
52
|
+
compatibility: 'anthropic-compatible',
|
|
53
|
+
envVars: {
|
|
54
|
+
API_TIMEOUT_MS: '3000000',
|
|
55
|
+
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: '1'
|
|
56
|
+
},
|
|
57
|
+
note: 'Requires extended timeout for large responses'
|
|
58
|
+
},
|
|
41
59
|
deepseek: {
|
|
42
60
|
name: 'DeepSeek (DeepSeek V3/V3.1)',
|
|
43
61
|
baseUrl: 'https://api.deepseek.com/anthropic',
|
package/lib/ui/prompts.js
CHANGED
|
@@ -314,7 +314,7 @@ async function promptForThirdPartyApi() {
|
|
|
314
314
|
// For all known providers, show the recommended URL in the prompt
|
|
315
315
|
let prompt;
|
|
316
316
|
if (selectedProvider.id === 'anthropic' || selectedProvider.id === 'deepseek' ||
|
|
317
|
-
selectedProvider.id === 'moonshot' || selectedProvider.id === 'zhipu' || selectedProvider.id === 'zai') {
|
|
317
|
+
selectedProvider.id === 'moonshot' || selectedProvider.id === 'kimi_for_coding' || selectedProvider.id === 'zhipu' || selectedProvider.id === 'zai') {
|
|
318
318
|
prompt = colors.green + i18n.tSync('ui.general.press_enter_default_url') + `${colors.yellow}${baseUrl}${colors.green}` + colors.reset;
|
|
319
319
|
console.log(colors.gray + ' ' + i18n.tSync('ui.general.edit_url_hint') + colors.reset);
|
|
320
320
|
} else {
|