Johnny Amancio
794189b5d9
feat(cli): add project memory integration
2026-06-18 20:56:52 +02:00
Catriel Müller
fcb8802aa5
Merge pull request #11178 from Kilo-Org/perf/durable-snapshot-initialization
...
perf(cli): accelerate durable snapshot initialization
2026-06-12 16:08:51 -03:00
Marius
37a761839a
Merge pull request #11184 from Kilo-Org/snow-recorder
...
feat: support subagent reasoning overrides
2026-06-12 20:57:57 +02:00
marius-kilocode
0f2fe8db9c
perf(cli): optimize all root snapshot initialization
2026-06-12 20:38:23 +02:00
Marius
96a16102b2
fix(cli): validate external download inputs ( #11179 )
2026-06-12 20:37:56 +02:00
marius-kilocode
0b34c14db8
perf(cli): avoid quadratic snapshot path matching
2026-06-12 20:36:05 +02:00
marius-kilocode
adf03a9824
feat: support subagent reasoning overrides
2026-06-12 20:35:02 +02:00
marius-kilocode
9870615130
test(cli): cover snapshot fallback and interruption edges
2026-06-12 20:13:53 +02:00
marius-kilocode
1380be41ef
fix(cli): harden snapshot materialization cleanup
2026-06-12 20:13:53 +02:00
marius-kilocode
c4f91031c8
test(cli): stabilize snapshot materialization checks
2026-06-12 20:13:52 +02:00
marius-kilocode
f63e77153c
perf(cli): accelerate durable snapshot initialization
2026-06-12 20:13:52 +02:00
kilo-maintainer[bot]
c6d5325d65
release: v7.3.45
2026-06-12 17:50:21 +00:00
Marius
579caef24b
Merge pull request #11152 from Kilo-Org/resisted-conchoraptor
...
fix: abort Agent Manager prompts during startup
2026-06-12 19:33:52 +02:00
marius-kilocode
fc68b934a8
fix: isolate runner startup ordering
2026-06-12 19:00:54 +02:00
Catriel Müller
e2b56eb925
refactor: fix test
2026-06-12 13:12:24 -03:00
Catriel Müller
680f50581a
refactor: fix test
2026-06-12 12:23:11 -03:00
Catriel Müller
d8671cc393
refactor: improve flaky test
2026-06-12 11:56:47 -03:00
Catriel Müller
be0d5ef3bb
Merge branch 'main' into cli-console-restart-on-port-mismatch
2026-06-12 11:33:46 -03:00
Catriel Müller
5413c807de
refactor: refactor solution to include daemon command
2026-06-12 11:32:16 -03:00
kilo-maintainer[bot]
4711209072
release: v7.3.44
2026-06-12 13:51:52 +00:00
Catriel Müller
0edfcf3e3c
Merge pull request #11147 from Kilo-Org/catrielmuller/kilo-console-ui-improvements
...
feat: improve Kilo Console worktree review
2026-06-12 10:34:37 -03:00
Catriel Müller
4b5e7e6229
refactor: fix merge
2026-06-12 10:17:51 -03:00
Catriel Müller
ef017c528e
Merge branch 'main' into cli-console-restart-on-port-mismatch
2026-06-12 10:10:59 -03:00
Catriel Müller
91eb3ed444
Merge pull request #11148 from senguangd/fix/powershell-encoding
...
fix(shell): use EncodedCommand for PowerShell to fix Windows encoding issues
2026-06-12 10:07:58 -03:00
Catriel Müller
2f7657fd83
Merge pull request #11143 from IamCoder18/feat/cli-port-discovery-warning
...
feat(cli): warn when --port is outside discovery range
2026-06-12 09:42:13 -03:00
Catriel Müller
c220a75525
refactor: isolate the changes inside of the kilo folders
2026-06-12 09:40:39 -03:00
Marius
78d83c0651
fix(cli): inherit reasoning in task subagents ( #11160 )
2026-06-12 10:45:36 +00:00
Catriel Müller
65e6d0c8ed
refactor: address comments
2026-06-12 06:57:45 -03:00
marius-kilocode
b23d3dfd75
fix: abort prompts during startup
2026-06-12 09:57:49 +02:00
Senguang Ding
6e0639b8c0
fix(shell): use EncodedCommand for PowerShell to fix Windows encoding issues
...
On Windows, PowerShell commands with non-ASCII characters (e.g., Chinese, Japanese, Cyrillic) produce garbled output (mojibake) because the console encoding defaults to the system OEM code page rather than UTF-8.
Switch from `-Command` to `-EncodedCommand` with a Base64-encoded UTF-16LE payload that explicitly sets `[Console]::InputEncoding`, `[Console]::OutputEncoding`, and `$OutputEncoding` to UTF-8 before executing the original command. This ensures both input and output are properly encoded as UTF-8 regardless of the system locale.
Fixes #4138
Fixes #2422
Fixes #2939
2026-06-12 12:56:10 +08:00
Catriel Müller
9a187d5aad
feat: improve Kilo Console project review
2026-06-12 01:08:09 -03:00
Aarav Sharma
63294a4b2a
fix(cli): restart daemon when console requested host/port don't match
...
When `kilo console --port 4321` reuses an already-running daemon on a
different port (e.g. 4097), the new options were silently ignored. Now
`kilo console` checks if the running daemon matches the requested
host/port, and restarts if they differ.
The restart only occurs when explicit `--port` or `--hostname` options
are provided via CLI, not when using default values.
2026-06-11 19:51:19 -06:00
Aarav Sharma
4ba2bac7a2
feat(cli): warn when --port is outside discovery range
...
Print a yellow non-fatal warning when kilo console or kilo daemon
start/restart is invoked with an explicit --port outside 4097-4116.
Auto-discovery only scans that window, so an out-of-range port can
silently break later manual or auto-connect attempts.
Implementation stays entirely in Kilo-owned files to avoid touching
upstream shared code:
- Added packages/opencode/src/kilocode/cli/port-warning.ts helper
exporting warnPort(port), which skips port 0 (auto-pick) and emits
a yellow console.warn when the explicit port is outside
Daemon.PortRange.
- Hooks the helper from console.ts and daemon.ts (start/restart)
The command still succeeds; the warning is informational only.
2026-06-11 19:14:39 -06:00
Catriel Müller
988cb02fe8
fix: fix kilo cli init
2026-06-11 16:33:07 -03:00
Catriel Müller
71cc624f59
fix: fix test
2026-06-11 14:59:37 -03:00
Catriel Müller
4e0c7248a9
fix: fix facades
2026-06-11 14:37:18 -03:00
Catriel Müller
a4952b0836
fix: fix tests
2026-06-11 14:19:49 -03:00
Catriel Müller
d5112edf90
fix: code indexing on kilo core
2026-06-11 12:29:01 -03:00
Catriel Müller
35e3cd1803
fix(cli): log indexing poll failures
2026-06-11 12:23:56 -03:00
Marius
cdef15c6ae
Merge pull request #11075 from Kilo-Org/canyon-stage
...
perf: speed up large session forks
2026-06-11 15:55:07 +02:00
Marius
d8457d28ad
Merge pull request #11117 from Kilo-Org/fix/recover-vercel-provider-upgrades
...
fix(cli): recover Cerebras, xAI, and OpenAI-compatible SDK upgrades
2026-06-11 15:01:01 +02:00
marius-kilocode
b75af0de88
fix(cli): recover Vercel AI SDK provider upgrades
2026-06-11 14:44:04 +02:00
Marius
d245b7c20c
Merge pull request #11102 from Kilo-Org/fix-cli-notification-duplication
...
fix(cli): consolidate TUI notifications
2026-06-11 14:42:41 +02:00
marius-kilocode
351741f912
docs(kilo-docs): document CLI attention sounds
2026-06-11 14:04:00 +02:00
marius-kilocode
c758008181
fix(cli): restore local console command
2026-06-11 12:24:15 +02:00
Marius
294c532f6a
fix(cli): prevent subagents asking questions ( #11101 )
2026-06-11 11:59:40 +02:00
marius-kilocode
8a727084ae
fix(cli): consolidate TUI notifications
2026-06-11 11:52:00 +02:00
kilo-code-bot[bot]
5bc8df843a
fix(cli): cap cloud-managed shell command timeouts ( #10478 )
...
* fix(cli): cap cloud-managed shell command timeouts
* refactor(cli): isolate hosted shell timeout policy
* chore(cli): annotate hosted timeout message
* test(cli): provide runtime flags to timeout coverage
---------
Co-authored-by: Evgeny Shurakov <eshurakov@users.noreply.github.com >
2026-06-11 10:40:17 +02:00
Christiaan Arnoldus
f31d370ea1
Merge pull request #11085 from Kilo-Org/indicate-empty-model-list
...
Indicate when the model list is empty
2026-06-11 10:02:25 +02:00
Joshua Lambert
f798faf720
Merge branch 'main' into fix/question-reply-locks
2026-06-10 18:15:40 -04:00