@qwen-code/qwen-code 0.15.8-nightly.20260508.0491252b2 → 0.15.8-preview.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/bundled/qc-helper/docs/configuration/model-providers.md +2 -2
- package/bundled/qc-helper/docs/configuration/settings.md +11 -10
- package/cli.js +19191 -17342
- package/locales/en.js +19 -0
- package/locales/zh-TW.js +19 -0
- package/locales/zh.js +19 -0
- package/package.json +2 -2
|
@@ -10,9 +10,9 @@ Use `modelProviders` to declare curated model lists per auth type that the `/mod
|
|
|
10
10
|
>
|
|
11
11
|
> Only the `/model` command exposes non-default auth types. Anthropic, Gemini, etc., must be defined via `modelProviders`. The `/auth` command lists Qwen OAuth, Alibaba Cloud Coding Plan, and API Key as the built-in authentication options.
|
|
12
12
|
|
|
13
|
-
> [!
|
|
13
|
+
> [!note]
|
|
14
14
|
>
|
|
15
|
-
> **
|
|
15
|
+
> **Model uniqueness:** Models within the same `authType` are uniquely identified by the combination of `id` + `baseUrl`. This means you can define the same model ID (e.g., `"gpt-4o"`) multiple times under a single `authType` as long as each entry has a different `baseUrl` — for example, one pointing to OpenAI directly and another to a proxy endpoint. If two entries share both the same `id` and the same `baseUrl` (or both omit `baseUrl`), the first occurrence wins and subsequent duplicates are skipped with a warning.
|
|
16
16
|
|
|
17
17
|
## Configuration Examples by Auth Type
|
|
18
18
|
|
|
@@ -83,16 +83,17 @@ Settings are organized into categories. Most settings should be placed within th
|
|
|
83
83
|
|
|
84
84
|
#### general
|
|
85
85
|
|
|
86
|
-
| Setting | Type | Description
|
|
87
|
-
| ------------------------------------------ | ------- |
|
|
88
|
-
| `general.preferredEditor` | string | The preferred editor to open files in.
|
|
89
|
-
| `general.vimMode` | boolean | Enable Vim keybindings.
|
|
90
|
-
| `general.enableAutoUpdate` | boolean | Enable automatic update checks and installations on startup.
|
|
91
|
-
| `general.showSessionRecap` | boolean | Auto-show a one-line "where you left off" recap when returning to the terminal after being away. Off by default. Use `/recap` to trigger manually regardless of this setting.
|
|
92
|
-
| `general.sessionRecapAwayThresholdMinutes` | number | Minutes the terminal must be blurred before an auto-recap fires on focus-in. Only used when `showSessionRecap` is enabled.
|
|
93
|
-
| `general.gitCoAuthor`
|
|
94
|
-
| `general.
|
|
95
|
-
| `general.
|
|
86
|
+
| Setting | Type | Description | Default |
|
|
87
|
+
| ------------------------------------------ | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
88
|
+
| `general.preferredEditor` | string | The preferred editor to open files in. | `undefined` |
|
|
89
|
+
| `general.vimMode` | boolean | Enable Vim keybindings. | `false` |
|
|
90
|
+
| `general.enableAutoUpdate` | boolean | Enable automatic update checks and installations on startup. | `true` |
|
|
91
|
+
| `general.showSessionRecap` | boolean | Auto-show a one-line "where you left off" recap when returning to the terminal after being away. Off by default. Use `/recap` to trigger manually regardless of this setting. | `false` |
|
|
92
|
+
| `general.sessionRecapAwayThresholdMinutes` | number | Minutes the terminal must be blurred before an auto-recap fires on focus-in. Only used when `showSessionRecap` is enabled. | `5` |
|
|
93
|
+
| `general.gitCoAuthor.commit` | boolean | Add a Co-authored-by trailer to git commit messages AND attach a per-file AI-attribution git note (`refs/notes/ai-attribution`) for commits made through Qwen Code. Disabling skips both. | `true` |
|
|
94
|
+
| `general.gitCoAuthor.pr` | boolean | Append a Qwen Code attribution line to pull request descriptions when running `gh pr create`. | `true` |
|
|
95
|
+
| `general.checkpointing.enabled` | boolean | Enable session checkpointing for recovery. | `false` |
|
|
96
|
+
| `general.defaultFileEncoding` | string | Default encoding for new files. Use `"utf-8"` (default) for UTF-8 without BOM, or `"utf-8-bom"` for UTF-8 with BOM. Only change this if your project specifically requires BOM. | `"utf-8"` |
|
|
96
97
|
|
|
97
98
|
#### output
|
|
98
99
|
|