Skip to content

Commit 6d73abb

Browse files
authored
Merge branch 'main' into chore/update-mcp-sdk-1.13.3
2 parents 0da1bc7 + 0237b51 commit 6d73abb

File tree

77 files changed

+2818
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2818
-679
lines changed

.changeset/wet-poems-tease.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# kilo-code
22

3+
## [v4.114.0]
4+
5+
- [#3435](https://github.com/Kilo-Org/kilocode/pull/3435) [`bd4f19d`](https://github.com/Kilo-Org/kilocode/commit/bd4f19da040462b6477087d76cffe1006ef8d444) Thanks [@markijbema](https://github.com/markijbema)! - Cmd-L now directly inserts instead of showing as ghost text
6+
7+
### Patch Changes
8+
9+
- [#3435](https://github.com/Kilo-Org/kilocode/pull/3435) [`7f018d8`](https://github.com/Kilo-Org/kilocode/commit/7f018d8428a994c6ada6ecbda95a75336150946b) Thanks [@markijbema](https://github.com/markijbema)! - Minor improvements to autocomplete internal state handling
10+
11+
- [#3379](https://github.com/Kilo-Org/kilocode/pull/3379) [`9c7b99c`](https://github.com/Kilo-Org/kilocode/commit/9c7b99c716d92deabc49ec07f5771c03b3507b2c) Thanks [@TsFreddie](https://github.com/TsFreddie)! - Update pricing for DeepSeek V3.2
12+
13+
- [#3342](https://github.com/Kilo-Org/kilocode/pull/3342) [`8827792`](https://github.com/Kilo-Org/kilocode/commit/88277927f69e1baae6f61f0e76f3a43862abd31e) Thanks [@mcowger](https://github.com/mcowger)! - Improved messaging when VS Code LM is unavailable
14+
15+
- [#3437](https://github.com/Kilo-Org/kilocode/pull/3437) [`829f052`](https://github.com/Kilo-Org/kilocode/commit/829f052d199ef80136713922ce70230048dde6e0) Thanks [@chrarnoldus](https://github.com/chrarnoldus)! - Add zai-glm-4.6 model to Cerebras and set gpt-oss-120b as default (thanks Roo)
16+
17+
- [#3411](https://github.com/Kilo-Org/kilocode/pull/3411) [`2dc2a32`](https://github.com/Kilo-Org/kilocode/commit/2dc2a32d9db54cfe3908263eb5f594c99058dde5) Thanks [@kevinvandijk](https://github.com/kevinvandijk)! - Fix @ mentions when editing messages
18+
319
## [v4.113.1]
420

521
- [#3408](https://github.com/Kilo-Org/kilocode/pull/3408) [`5aee3ad`](https://github.com/Kilo-Org/kilocode/commit/5aee3ad6ee200eefd5dd12933ba650989ccc0857) Thanks [@brianc](https://github.com/brianc)! - Fix auto-complete indicator. It now hides properly if the autocomplete request errors in the background.

apps/kilocode-docs/docs/cli.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,26 @@ to complete configuration with an interactive workflow on the command line.
6161
You can also use the `/config` slash command during an interactive session, which is equivalent to running `kilocode config`.
6262
:::
6363

64+
## Parallel mode
65+
66+
Parallel mode allows multiple Kilo Code instances to work in parallel on the same directory, without conflicts. You can spawn as many Kilo Code instances as you need! Once finished, changes will be available on a separate git branch.
67+
68+
```bash
69+
# Prerequisite: must be within a valid git repository
70+
71+
# In interactive mode, changes will be committed on /exit
72+
# Terminal 1
73+
kilocode --parallel "improve xyz"
74+
# Terminal 2
75+
kilocode --parallel "improve abc"
76+
77+
# Pairs great with auto mode 🚀
78+
# Terminal 1
79+
kilocode --parallel --auto "improve xyz"
80+
# Terminal 2
81+
kilocode --parallel --auto "improve abc"
82+
```
83+
6484
## Autonomous mode (Non-Interactive)
6585

6686
Autonomous mode allows Kilo Code to run in automated environments like CI/CD pipelines without requiring user interaction.

apps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced-usage/custom-rules.md

Lines changed: 40 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
- 使用 Markdown 标题(`#`, `##` 等)定义规则类别
1414
- 使用列表(`-`, `*`)枚举特定项目或约束
15-
- 使用代码块(``` ```)在需要时包含代码示例
15+
- 使用代码块(` `)在需要时包含代码示例
1616

1717
## 规则类型
1818

@@ -42,6 +42,29 @@ project/
4242
└── ...
4343
```
4444

45+
### 全局规则
46+
47+
全局规则存储在您的主目录中,适用于所有项目:
48+
49+
```
50+
~/.kilocode/
51+
├── rules/
52+
│ ├── coding_standards.md
53+
│ ├── security_guidelines.md
54+
│ └── documentation_style.md
55+
```
56+
57+
## 通过 UI 管理规则
58+
59+
Kilo Code 提供了一个内置界面,用于管理您的自定义规则,而无需手动编辑 `.kilocode/rules/` 目录中的文件。要访问 UI,请单击 Kilo Code 窗口**右下角**的 <Codicon name="law" /> 图标。
60+
61+
您可以访问规则管理 UI 来:
62+
63+
- 查看所有活动规则(项目和全局)
64+
- 在不删除规则的情况下切换规则的开启/关闭状态
65+
- 直接在界面中创建和编辑规则
66+
- 按类别和优先级组织规则
67+
4568
## 规则加载顺序
4669

4770
### 通用规则(所有模式)
@@ -89,12 +112,14 @@ project/
89112
手动创建规则:
90113

91114
**对于项目规则:**
115+
92116
1. 如果不存在,请创建 `.kilocode/rules/` 目录
93117
2. 在此目录中创建一个具有描述性名称的新 Markdown 文件
94118
3. 使用 Markdown 格式编写你的规则
95119
4. 保存文件
96120

97121
**对于全局规则:**
122+
98123
1. 如果 `~/.kilocode/rules/` 目录尚不存在,则创建它
99124
2. 在此目录中创建一个新的 Markdown 文件,并带有描述性名称
100125
3. 使用 Markdown 格式编写您的规则
@@ -108,6 +133,7 @@ project/
108133

109134
```markdown
110135
# 表格
136+
111137
打印表格时,始终在每列标题中添加感叹号
112138
```
113139

@@ -117,7 +143,9 @@ project/
117143

118144
```markdown
119145
# 受限文件
146+
120147
列表中包含敏感数据的文件,禁止读取
148+
121149
- supersecrets.txt
122150
- credentials.json
123151
- .env
@@ -141,14 +169,14 @@ project/
141169

142170
## 自定义规则示例
143171

144-
* "严格遵守代码风格指南 [你的项目特定代码风格指南]"
145-
* "始终使用空格缩进,宽度为 4 个空格"
146-
* "使用 camelCase 命名变量"
147-
* "为所有新函数编写单元测试"
148-
* "在提供代码之前解释你的推理"
149-
* "专注于代码的可读性和可维护性"
150-
* "优先使用社区中最常见的库"
151-
* "当为网站添加新功能时,确保它们是响应式且可访问的"
172+
- "严格遵守代码风格指南 [你的项目特定代码风格指南]"
173+
- "始终使用空格缩进,宽度为 4 个空格"
174+
- "使用 camelCase 命名变量"
175+
- "为所有新函数编写单元测试"
176+
- "在提供代码之前解释你的推理"
177+
- "专注于代码的可读性和可维护性"
178+
- "优先使用社区中最常见的库"
179+
- "当为网站添加新功能时,确保它们是响应式且可访问的"
152180

153181
## 最佳实践
154182

@@ -176,8 +204,8 @@ project/
176204

177205
1. 检查你的规则是否使用清晰的 Markdown 结构正确格式化
178206
2. 确保你的规则位于以下支持的位置之一:
179-
- 推荐的 `.kilocode/rules/` 目录
180-
- 根级规则文件(`.kilocoderules`, `.roorules`, 或 `.clinerules`
207+
- 推荐的 `.kilocode/rules/` 目录
208+
- 根级规则文件(`.kilocoderules`, `.roorules`, 或 `.clinerules`
181209
3. 验证规则是否具体且明确
182210
4. 重启 VS Code 以确保规则正确加载
183211

@@ -186,4 +214,4 @@ project/
186214
- [自定义模式](/features/custom-modes)
187215
- [自定义指令](/advanced-usage/custom-instructions)
188216
- [设置管理](/features/settings-management)
189-
- [自动批准设置](/features/auto-approving-actions)
217+
- [自动批准设置](/features/auto-approving-actions)

0 commit comments

Comments
 (0)