You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[#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.
6
6
7
-
## [v4.112.0]
7
+
## [v4.113.0]
8
8
9
-
-[#3346](https://github.com/Kilo-Org/kilocode/pull/3346)[`c70b93e`](https://github.com/Kilo-Org/kilocode/commit/c70b93e80de2e365c2dadad516006752c6fac54a) Thanks [@mcowger](https://github.com/mcowger)! - Update baseURL for Vertex Anthropic models to fix.
9
+
-[#3382](https://github.com/Kilo-Org/kilocode/pull/3382)[`98c4d89`](https://github.com/Kilo-Org/kilocode/commit/98c4d89f414394de0b5ab579e9216c860b4a1d30) Thanks [@hassoncs](https://github.com/hassoncs)! - Add descriptions to the MCP and modes marketplace headers
10
+
11
+
-[#2442](https://github.com/Kilo-Org/kilocode/pull/2442)[`34b04ae`](https://github.com/Kilo-Org/kilocode/commit/34b04ae0c5763757c41bfbd3132aed3a67d2ac7a) Thanks [@hassoncs](https://github.com/hassoncs)! - Added AI powered commit message generation to Jetbrains IDEs
-[#3346](https://github.com/Kilo-Org/kilocode/pull/3346)[`5d82884`](https://github.com/Kilo-Org/kilocode/commit/5d828842b502b6accd2e0423db99ef8bdc0dbf33) Thanks [@mcowger](https://github.com/mcowger)! - Fixed Anthropic models not working on Google Vertex Global
Copy file name to clipboardExpand all lines: apps/kilocode-docs/docs/cli.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,26 @@ to complete configuration with an interactive workflow on the command line.
61
61
You can also use the `/config` slash command during an interactive session, which is equivalent to running `kilocode config`.
62
62
:::
63
63
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
+
64
84
## Autonomous mode (Non-Interactive)
65
85
66
86
Autonomous mode allows Kilo Code to run in automated environments like CI/CD pipelines without requiring user interaction.
0 commit comments