Skip to content

Commit c17b88d

Browse files
authored
add parallel mode docs (#3416)
1 parent 93f2643 commit c17b88d

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

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.

cli/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,26 @@ kilocode --mode architect
4545
kilocode --workspace /path/to/project
4646
```
4747

48+
### Parallel mode
49+
50+
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.
51+
52+
```bash
53+
# Prerequisite: must be within a valid git repository
54+
55+
# In interactive mode, changes will be committed on /exit
56+
# Terminal 1
57+
kilocode --parallel "improve xyz"
58+
# Terminal 2
59+
kilocode --parallel "improve abc"
60+
61+
# Pairs great with auto mode 🚀
62+
# Terminal 1
63+
kilocode --parallel --auto "improve xyz"
64+
# Terminal 2
65+
kilocode --parallel --auto "improve abc"
66+
```
67+
4868
### Autonomous mode (Non-Interactive)
4969

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

0 commit comments

Comments
 (0)