Commit Graph

29584 Commits

Author SHA1 Message Date
marius-kilocode 062d11f996 fix(vscode): restore images when undoing prompts 2026-08-24 15:19:37 +02:00
marius-kilocode 3a2375752f Merge remote-tracking branch 'origin/main' into migrate-settings-to-vscode-multiproject-support
# Conflicts:
#	packages/kilo-vscode/webview-ui/agent-manager/AgentManagerApp.tsx
#	packages/kilo-vscode/webview-ui/agent-manager/ProjectBranchDialog.tsx
2026-08-24 15:13:59 +02:00
marius-kilocode 06d20fb1e8 fix: repair shell selection syntax after marker edit 2026-08-24 15:04:57 +02:00
marius-kilocode 6b8652657a feat(vscode): add project-scoped Agent Manager settings tab
Move Agent Manager worktree settings (project, default base branch,
setup script) into the Kilo Settings editor behind a new Agent Manager
tab shown only for panels that opt in. The gear action in the Agent
Manager sidebar now opens that tab pre-scoped to the owning project.

The default base branch picker reuses the existing ProjectBranchDialog
and BranchSelect UI instead of a Settings-specific popover. Settings
requests are generation-guarded so stale responses from a previously
selected project cannot switch the visible repository state.
2026-08-24 14:55:59 +02:00
marius-kilocode b712c2f7c1 chore(sdk): regenerate v2 client for MCP resource and tool endpoints 2026-08-24 14:55:51 +02:00
marius-kilocode 7669119ce6 fix: annotate pwsh probe line for kilocode_change checker 2026-08-24 14:46:33 +02:00
kilo-maintainer[bot] d808e309e9 chore: update kilo-vscode visual regression baselines 2026-08-24 12:46:31 +00:00
marius-kilocode acc1c217bb fix(agent-manager): unify toolbar control heights and spacing 2026-08-24 14:42:16 +02:00
marius-kilocode 98ea338c82 fix: prefer powershell 7 over legacy 5.1 on windows 2026-08-24 14:36:15 +02:00
kilo-maintainer[bot] 90437c0ef7 chore: update kilo-vscode visual regression baselines 2026-08-24 12:34:33 +00:00
marius-kilocode fcdcb45dac merge main into improve-review-comments-ui 2026-08-24 14:30:43 +02:00
marius-kilocode 81d3649232 test(core): expect powershell 7 selection over legacy 5.1 on windows 2026-08-24 14:27:09 +02:00
Marius e1198adeb3 Merge pull request #13362 from Kilo-Org/fix-wait-background-agents
fix(cli): clarify background Task orchestration
2026-08-24 14:24:48 +02:00
marius-kilocode 8d0750f563 fix(test): handle platform PTY cleanup 2026-08-24 14:24:08 +02:00
marius-kilocode 35de2d1ec2 fix(test): stabilize cross-platform PTY checks 2026-08-24 14:14:10 +02:00
marius-kilocode 8e11b29b6d test(vscode): use local review comment fixtures 2026-08-24 13:59:42 +02:00
marius-kilocode 56cf3934c0 fix(ci): annotate all PTY smoke commands 2026-08-24 13:53:38 +02:00
Marius b2fa8d285d Merge pull request #13354 from Kilo-Org/fix/document-open-file-optional-chain
refactor(vscode): simplify openFile null check with optional chaining
2026-08-24 13:53:27 +02:00
marius-kilocode 575a4ad819 chore(ci): simplify PTY smoke annotations 2026-08-24 13:50:43 +02:00
arrrkady c68400fa7f Merge pull request #13361 from Kilo-Org/docs/eol-products
docs(kilo-docs): mark KiloClaw end of life
2026-08-24 13:50:05 +02:00
marius-kilocode 92ca332ffe chore(vscode): consolidate review changeset 2026-08-24 13:47:55 +02:00
marius-kilocode a35585ad9d test(cli): validate PTY across release targets 2026-08-24 13:46:27 +02:00
marius-kilocode 9f7b4e4981 fix(cli): clarify background task orchestration 2026-08-24 13:45:04 +02:00
marius-kilocode b74c279728 refactor(vscode): narrow review comment change 2026-08-24 13:35:02 +02:00
Ryan Loney da4a91b364 fix(opencode): preserve Cerebras completion limit (#13289)
* fix(opencode): preserve Cerebras completion limit

* chore: annotate Kilo-specific changes
2026-08-24 13:34:00 +02:00
marius-kilocode 824b0837d3 fix(vscode): remove unsupported review replies 2026-08-24 13:32:42 +02:00
Rietie 4f5542593f docs(kilo-docs): remove KiloClaw references from other product pages
Drop KiloClaw from the mobile app capabilities and screenshots, the Cloud Agent
triggers comparison, and the ChatGPT and xAI cloud-feature notes. Contributor
architecture pages keep their KiloClaw entries because that code still exists.
2026-08-24 13:19:26 +02:00
marius-kilocode 693624c306 fix(vscode): open source files in native editor 2026-08-24 13:17:59 +02:00
Rietie 2d01fd839a docs(kilo-docs): mark KiloClaw end of life and drop promotional links
Add a shared kiloclaw-eol partial and render it on every KiloClaw page, and
remove the KiloClaw card, hero CTA, quick links, and terminal tab from the docs
homepage plus the pointer link in the architecture Related list. The top-level
nav entry stays so existing users can still reach the docs.
2026-08-24 13:14:09 +02:00
Matt Van Horn c0cc71489a fix: avoid unnecessary project plugin dependencies (#13300)
* fix: avoid unnecessary project plugin dependencies

Fixes #12778

* test: move config plugin-dependency tests onto the Effect 4 API

zipRight, Effect.fork and Fiber.poll are gone in effect 4.0.0-beta.83, so
typecheck failed on this file. Uses andThen, forkChild and a bounded join.

* refactor: move plugin dependency logic into kilo-owned helper

Per review, extract the local plugin dependency install out of the upstream
config.ts and into packages/opencode/src/kilocode/config/plugin-deps.ts so the
upstream file keeps a minimal call and future merges have less to conflict on.

needsLocalPluginDependency owns the file:// specifier test and
installLocalPluginDependency owns the npm install effect, taking the npm
service, dir, version and local flag as parameters. Behavior is unchanged: the
plugins accumulator still collects both the file-loaded specs and the
ConfigPlugin.load results before the check, and the resulting fiber is still
pushed onto deps.

---------

Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
2026-08-24 13:02:52 +02:00
marius-kilocode 8bff56de66 feat(vscode): improve review comment previews 2026-08-24 13:00:39 +02:00
Marius cea5386c83 Merge pull request #13356 from Kilo-Org/luminous-roof
fix(ui): expand answered questions in chat
2026-08-24 12:44:11 +02:00
marius-kilocode 3e2adcf370 fix(ui): expand answered questions in chat 2026-08-24 12:25:32 +02:00
Marius 2a9dcbe895 feat(agent-manager): add PR link copy button (#13353) 2026-08-24 12:08:01 +02:00
kiloconnect[bot] a191569baf refactor(vscode): simplify openFile null check with optional chaining 2026-08-24 10:05:55 +00:00
Marius e2186def65 Merge pull request #13316 from Kilo-Org/fix-spinner-input-margin-regression
fix(vscode): remove working indicator prompt gap
2026-08-24 12:03:30 +02:00
Marius 54f785ee85 Merge pull request #13350 from Kilo-Org/optimize-document-viewer-performance
fix(vscode): limit Agent Manager document viewer to Markdown plans
2026-08-24 12:01:30 +02:00
Marius e8cd46582c Merge pull request #13349 from Kilo-Org/investigate-luna-output-cap
fix(cli): preserve output budget for encrypted reasoning
2026-08-24 11:53:55 +02:00
kilo-maintainer[bot] 7327404ec4 chore: update kilo-vscode visual regression baselines 2026-08-24 09:24:11 +00:00
marius-kilocode b7e5fefdf8 fix(vscode): preserve document viewer fallbacks 2026-08-24 11:24:09 +02:00
marius-kilocode 3615dff274 fix(vscode): keep both dock states flush with the prompt 2026-08-24 11:20:56 +02:00
marius-kilocode 18504df46e fix(vscode): open source files in native editor 2026-08-24 11:14:27 +02:00
marius-kilocode 17611729e2 fix(cli): preserve output budget for encrypted reasoning 2026-08-24 11:07:29 +02:00
Kirill Kalishev ff74e2ea3f Merge pull request #11611 from Kilo-Org/feat/provider-usage-center
feat: add provider usage center
2026-08-21 14:29:41 -04:00
marius-kilocode 11781f5004 fix(vscode): preserve prompt gutter for idle dock 2026-08-21 19:43:26 +02:00
kilo-maintainer[bot] 7ce4b20d58 chore: update kilo-vscode visual regression baselines 2026-08-21 17:28:06 +00:00
kirillk a41cdd4b38 fix: sync bun.lock workspace versions after merge 2026-08-21 13:25:00 -04:00
kirillk c0a86f9a00 Merge remote-tracking branch 'origin/main' into feat/provider-usage-center 2026-08-21 13:08:42 -04:00
LCZcn96 097a922ec9 fix(vscode): align slash command selection with display order (#13188) 2026-08-21 17:50:45 +02:00
marius-kilocode 9694ff6600 fix(vscode): remove working indicator prompt gap 2026-08-21 17:43:14 +02:00