kiloconnect[bot]
c48b31c3ec
fix(cli): use encoding-aware read in apply_patch update case
...
Bom.readFile uses a hard-coded UTF-8 TextDecoder, so the oldContent
captured for the diff, additions/deletions counts, and permission-prompt
metadata was mojibake for any non-UTF-8 file. The actual bytes written
were correct because deriveNewContentsFromChunks already does
encoding-aware reads, but the user-visible diff did not reflect the real
file contents. Switch to EncodedIO.read to match.
2026-05-08 15:35:27 +00:00
Mark IJbema
1ea9ad2af0
resolve merge conflicts
2026-05-06 21:32:26 +02:00
kiloconnect[bot]
4528aa5cf0
refactor(cli): flatten Encoding/EncodedIO namespaces to module exports
...
Replace `export namespace Encoding`/`EncodedIO` wrappers with top-level
exports and switch consumers to `import * as Encoding`/`EncodedIO`.
The module itself acts as the namespace, avoiding the TS-namespace
wrapper that tree-shakers and some module resolvers handle awkwardly.
2026-05-05 14:12:51 +00:00
Kit Langton
668d77bb4e
refactor(tool): yield InstanceState context ( #25199 )
2026-04-30 21:01:06 -04:00
Mark IJbema
3f7037549e
resolve merge conflicts
2026-04-30 16:25:46 +02:00
Dax
f25f1485d5
refactor: remove module barrels ( #24554 )
2026-04-27 14:33:33 -04:00
Imanol Maiztegui
fd8818e48c
resolve merge conflicts
2026-04-27 15:57:16 +02:00
Dax
62ef2a2207
refactor: rename shared package to core ( #24309 )
2026-04-25 10:59:17 -04:00
Imanol Maiztegui
5e519256d2
resolve merge conflicts
2026-04-24 16:58:05 +02:00
opencode-agent[bot]
3f8c659056
chore: generate
2026-04-23 20:10:56 +00:00
Kit Langton
3910a6e527
refactor(tool): migrate tool framework + all 18 built-in tools to Effect Schema ( #23244 )
2026-04-23 16:09:34 -04:00
kiloconnect[bot]
c4df6b80cb
chore(cli): refine kilocode_change markers on encoding-preservation code
...
Narrow overly-broad blocks, combine adjacent single-line markers, and
expand inline comments to note what the replaced upstream code did.
2026-04-23 14:28:12 +00:00
Luke Parker
e383df4b17
feat: support pull diagnostics in the LSP client (C#, Kotlin, etc) ( #23771 )
2026-04-23 00:25:40 -04:00
opencode-agent[bot]
894e638914
chore: generate
2026-04-23 00:25:37 -04:00
Luke Parker
8113a4360e
fix: preserve BOM in text tool round-trips ( #23797 )
2026-04-23 00:25:36 -04:00
kiloconnect[bot]
e84ea3afc6
refactor(cli): self-review post-merge cleanup in apply_patch
...
- Drop the dead 'encoding = pre.encoding' initial value that was only
read if deriveNewContentsFromChunks threw, and that code path
returns before encoding is ever used.
- Inline pre.text into the read line so we don't bind a 'pre' local
just to destructure it once.
2026-04-22 16:05:46 +00:00
kiloconnect[bot]
5a4aa91bfb
Merge remote-tracking branch 'origin/main' into feat/encoding-preservation
2026-04-22 15:54:11 +00:00
kiloconnect[bot]
cce5e459bc
refactor(cli): self-review — tighten markers, fix detection edge cases
...
- Encoding.detect: lowercase-compare UTF-32 rejection so jschardet's
uppercase 'UTF-32'/'UTF-32BE'/'UTF-32LE' labels no longer slip through
(iconv-lite happens to have utf-32 codecs that would then be accepted).
- Encoding.read: drop redundant Buffer.from wrap around readFile's
already-Buffer return value.
- EncodedIO: switch to Effect.tryPromise so I/O failures surface as
typed errors that .pipe(Effect.catch(...)) can recover from; the
apply_patch delete branch relies on this to translate read errors
into 'apply_patch verification failed'.
- Shrink kilocode_change blocks in edit.ts, write.ts, apply_patch.ts,
patch/index.ts, and read.ts to per-line inline markers where each
block was only wrapping 1-3 changed lines.
- Collapse the 'if (exists) { let contentOld; let encoding; ... }'
blocks in edit.ts and write.ts into a single ternary + destructure
that keeps all three lines self-contained and each independently
annotated.
- Remove the unused 'latin1' sample and fix the 'providEncoded' typo
in the encoding integration test file.
- Strengthen the apply_patch Shift_JIS test to assert exact bytes
instead of the weak 'does not contain these two UTF-8 bytes' check.
- Drop the stray .kilo/ and .kilocode/ lockfiles that were re-added
by an upstream 'wip' commit.
2026-04-21 16:18:47 +00:00
Imanol Maiztegui
d5357f3961
resolve merge conflicts
2026-04-21 18:03:34 +02:00
kiloconnect[bot]
6f55a3061d
refactor(cli): restore stream.destroy and keep original comments
...
- Wire Readable.from through a named `stream` variable so the `lines`
helper can destroy it in the finally block, matching the previous
createReadStream pattern.
- Restore the 'Create parent directories', 'Handle file move', 'Regular
update', 'Read original file content', and 'For delete, we need to read
the current content' comments that were dropped when switching to
Encoding.write / Encoding.read. The explicit fs.mkdir calls are no
longer needed because Encoding.write mkdirs recursively, but the intent
comments still apply.
2026-04-21 14:04:35 +00:00
kiloconnect[bot]
a2926207f9
refactor(cli): simplify encoding detection and isolate helpers
...
Drop manual BOM parsing, UTF-32, and UTF-16-without-BOM detection: rely on
TextDecoder + jschardet + iconv-lite which already handle BOM round-tripping
for UTF-16 LE/BE. Move the encoding helpers and Effect wrappers into
packages/opencode/src/kilocode/ so shared tool files only carry targeted
kilocode_change markers.
2026-04-21 12:25:53 +00:00
Kit Langton
5011465c81
feat: unwrap tool namespaces to flat exports + barrel ( #22762 )
2026-04-16 03:56:54 +00:00
Kit Langton
8aa0f9fe95
feat: enable type-aware no-base-to-string rule, fix 56 violations ( #22750 )
2026-04-16 03:50:47 +00:00
Johnny Amancio
501ebbf0eb
fix: Fix typecheck issues
2026-04-16 01:39:31 +02:00
Johnny Amancio
915f12c7e2
resolve merge conflicts
2026-04-15 22:51:15 +02:00
Dax
be9432a893
shared package ( #22626 )
2026-04-15 14:26:20 +00:00
Marian Alexandru Alecu
b0a658ed11
Merge pull request #8671 from Kilo-Org/fix/skill-read-config-protection
...
fix(cli): stop config protection from blocking skill reads
2026-04-15 10:38:04 +03:00
Imanol Maiztegui
9f4f0ba899
resolve merge conflicts
2026-04-14 15:58:28 +02:00
Alex Alecu
54fe077158
Merge remote-tracking branch 'origin/main' into fix/skill-read-config-protection
...
# Conflicts:
# packages/opencode/src/agent/agent.ts
# packages/opencode/src/tool/apply_patch.ts
# packages/opencode/test/agent/agent.test.ts
2026-04-14 16:25:32 +03:00
Johnny Eric Amancio
7ea50aac14
OpenCode v1.3.3 ( #8790 )
...
* tweak: use theme tokens for debug bar surface
* chore: update nix node_modules hashes
* feat(tui): add heap snapshot functionality for TUI and server (#19028 )
* ci
* change model for changelog
* release: v1.3.2
* fix(opencode): skip typechecking generated models snapshot (#19018 )
* Revert "fix(app): more startup efficiency (#18985 )"
This reverts commit 98b3340cee .
* Revert "fix(app): startup efficiency (#18854 )"
This reverts commit 546748a461 .
* effectify Worktree service (#18679 )
* fix: increase operations-per-run to 1000 and pin stale action to v10.2.0
The stale-issues workflow was hitting the default 30 operations limit,
preventing it from processing all 2900+ issues/PRs. Increased to 1000
to handle the full backlog. Also pinned to exact v10.2.0 for reproducibility.
* Add close-issues script and GitHub Action
- Create script/github/close-issues.ts to close stale issues after 60 days
- Add GitHub Action workflow to run daily at 2 AM
- Remove old stale-issues workflow to avoid conflicts
* Fix close-issues workflow permissions
- Add contents: read permission for checkout
- Use github.token instead of secrets.GITHUB_TOKEN
* Process issues sequentially to avoid rate limits
* Change issue close reason from not_planned to completed
* fix(opencode): avoid snapshotting files over 2MB (#19043 )
* fix: provide merge context to beta conflict resolver (#19055 )
* tweak: only spawn lsp servers for files in current instance (or cwd if instance is global) (#19058 )
* fix: beta resolver typecheck + build smoke check (#19060 )
* fix: unblock beta conflict recovery (#19068 )
* electron: add createDirectory to open directory picker (#19071 )
* electron: remove file extension from electron-store wrapper (#19082 )
* app: pre-warm project globalSync state when navigate project via keybind (#19088 )
* fix(app): move message navigation off cmd+arrow (#18728 )
* Reapply "fix(app): startup efficiency (#18854 )"
This reverts commit a379eb3867 .
* Reapply "fix(app): more startup efficiency (#18985 )"
This reverts commit cbe1337f24 .
* fix(app): hash inline script for csp
* Revert "fix(app): startup efficiency"
* Reapply "fix(app): startup efficiency"
This reverts commit 898456a25c .
* fix(app): opencode web server url
* chore(app): markdown playground in storyboard
* chore(app): markdown playground in storyboard
* feat(core): initial implementation of syncing (#17814 )
* chore: generate
* chore: bump modelcontextprotocol/sdk to 1.27.1 (#19064 )
* chore: storybook tweaks
* feat: restore git-backed review modes with effectful git service (#18900 )
* chore: generate
* chore: update nix node_modules hashes
* chore: cleanup
* chore: remove dead code for todoread tool (#19128 )
* chore: storybook tweaks
* fix(opencode): classify ZlibError from Bun fetch as retryable instead of unknown (#19104 )
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
* fix(task): respect agent permission config for todowrite tool (#19125 )
* fix(app): agent normalization (#19169 )
* fix: Windows e2e stability (CrossSpawnSpawner, snapshot isolation, session race guards) (#19163 )
* fix+refactor(mcp): lifecycle tests, cancelPending fix, Effect migration (#19042 )
* effectify Bus service: migrate to Effect PubSub + InstanceState (#18579 )
* file: use Effect.cached for scan deduplication (#19164 )
* ignore: update disavowed list (#19184 )
* skill: use Effect.cached for load deduplication (#19165 )
* chore: generate
* fix: bump gitlab-ai-provider to 5.3.3 for DWS tool approval support (#19185 )
* test: restore 5 workers on Windows e2e (#19188 )
* fix(opencode): image paste on Windows Terminal 1.25+ with kitty keyboard (#17674 )
* chore: update nix node_modules hashes
* wip: zen
* wip: zen
* go: do not respect disabled zen models
* fix: ensure enterprise url is set properly during auth flow (#19212 )
* revert: roll back git-backed review modes (#19295 )
* chore: generate
* tui: bypass local SSE event streaming in worker (#19183 )
* feat: embed WebUI in binary with proxy flags (#19299 )
Co-authored-by: BlankParticle <blankparticle@gmail.com >
* release: v1.3.3
* refactor: kilo compat for v1.3.3
* fix: Typecheck issues
* fix(build): normalize backslashes in web UI bundle import paths
Replace backslashes with forward slashes in embedded web UI file import
paths to ensure correct module resolution on Windows.
* fix: Add mcp reconnect error handling
* chore(script): use forward slashes in web UI bundle export keys
Ensure embedded file map keys use POSIX-style paths so lookups are
consistent across platforms.
* chore: regenerate source links
---------
Co-authored-by: Jay V <air@live.ca >
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Co-authored-by: Dax <mail@thdxr.com >
Co-authored-by: Dax Raad <d@ironbay.co >
Co-authored-by: opencode <opencode@sst.dev >
Co-authored-by: Kit Langton <kit.langton@gmail.com >
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Brendan Allan <brendonovich@outlook.com >
Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com >
Co-authored-by: James Long <longster@gmail.com >
Co-authored-by: André Cruz <acruz@cloudflare.com >
Co-authored-by: Ariane Emory <97994360+ariane-emory@users.noreply.github.com >
Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com >
Co-authored-by: Frank <frank@anoma.ly >
Co-authored-by: BlankParticle <blankparticle@gmail.com >
Co-authored-by: Imanol Maiztegui <imanol.mzd@gmail.com >
2026-04-12 01:00:50 +02:00
Kit Langton
c5fb6281f0
refactor(tool): Tool.Def.execute returns Effect, rename defineEffect → define ( #21961 )
2026-04-10 22:36:02 -04:00
Kit Langton
a17ac02061
refactor: extract LSP diagnostic report formatter ( #21964 )
2026-04-10 22:00:56 -04:00
opencode-agent[bot]
f2c492a8e6
chore: generate
2026-04-10 23:43:20 +00:00
Kit Langton
0556774097
refactor(tool): convert apply_patch to Tool.defineEffect ( #21938 )
2026-04-10 19:42:14 -04:00
Alex Alecu
5428997806
fix(cli): block bash deletion of global config files, validate config after edits
...
Bash commands like 'rm ~/.config/kilo/command/foo.md' could bypass
config protection. Re-add external_directory check for bash-originated
requests while still allowing file tool reads.
Also add inline config validation: after editing a config file, parse
it and report syntax or schema errors in the tool output, same as LSP
diagnostics.
2026-04-09 17:23:21 +03:00
Dax
b7fab49b64
refactor(snapshot): store unified patches in file diffs ( #21244 )
...
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
2026-04-07 19:48:23 -04:00
Kit Langton
97c15a087d
effectify Bus service: migrate to Effect PubSub + InstanceState ( #18579 )
2026-03-25 20:19:24 -04:00
Kit Langton
38e0dc9ccd
Move service state into InstanceState, flatten service facades ( #18483 )
2026-03-21 04:51:35 +00:00
Kit Langton
214a6c6cf1
fix: switch consumers to service imports to break bundle cycles ( #18438 )
2026-03-20 20:55:46 +00:00
Kevin van Dijk
2b05e4f40b
Resolve merge conflicts
2026-02-25 18:34:18 +01:00
Marius
8551d95447
perf: filter tool diagnostics to only edited files, reducing session payload 50-77% ( #6241 )
...
* perf: filter tool diagnostics to only edited files
Tools (edit, write, apply_patch) stored LSP diagnostics for ALL project
files in their metadata. In large projects this adds 100-500KB of
unrelated diagnostics per tool call, bloating session payloads by
50-77%.
The UI only renders diagnostics for the edited file(s), so the rest is
dead weight. Extract a filterDiagnostics utility that keeps only the
relevant files' diagnostics and use it in all three tools.
* add kilocode_change marker to diagnostics filter test
2026-02-25 14:32:42 +01:00
Erik Demaine
0042a07052
fix: Windows path support and canonicalization ( #13671 )
...
Co-authored-by: LukeParkerDev <10430890+Hona@users.noreply.github.com >
2026-02-23 10:10:27 +10:00
Catriel Müller
1b5ef0737f
Merge OpenCode v1.1.42 ( #67 )
...
* chore: details
* fix(tui): add visual feedback for diff wrap and conceal toggles (#10655 )
* fix: await SessionRevert.cleanup for shell (#10669 )
* fix: Make diff wrapping toggle always available in command_list and correct a type error (resolves #10682 ) (#10683 )
* feat(app): default servers on web
* fix(app): handle non-tool call permissions
* fix(app): line selection waits on ready
* wip(app): model settings
* feat(app): model settings
* chore: generate
* wip(app): sidebar hover full
* wip(app): full-height sidebar
* wip(app): full-height sidebar
* feat(app): better sidebar hover when collapsed
* fix(app): query selector with non-latin chars
* chore: stale-while-revalidate headers for changelog
* chore: generate
* feat(opencode): add agent description (#10680 )
* feat: dynamically resolve AGENTS.md files from subdirectories as agent explores them (#10678 )
* chore: gen changelog page off changelog json
* upgrade opentui to v0.1.75
* chore: update nix node_modules hashes
* fix: move changelog footer outside content div to fix padding (#10712 )
* fix(app): Order themes alphabetically (#10698 )
* fix(app): restore external link opening in system browser (#10697 )
* fix(ui): use focus-visible instead of focus to prevent sticky hover effect on click (#10651 )
* fix: add 44px top padding to sticky version header on changelog (#10715 )
* feat(app): file tree
* wip(app): file tree mode
* wip(app): file tree mode
* chore: cleanup
* chore: cleanup
* chore(app): createStore over signals
* fix(enterprise): add message navigation to share page desktop view (#10071 )
Co-authored-by: Claude <noreply@anthropic.com >
* chore: fix changelog page
* Revert "fix(app): restore external link opening in system browser (#10697 )"
This reverts commit 984518b1c0 .
* ignore: tweak ai deps
* feat: use anthropic compat messages api for anthropic models through copilot
* chore: debug changelog
* fix: ensure openai 404 errors are retried (#10590 )
* chore: generate
* test(app): e2e test for sidebar nav
* chore: refactor changelog
* fix(app): session load cap
* chore(app): missing i18n strings
* chore: cleanup
* fix(app): session sync issue
* chore: generate
* fix(ui): update button styles and disconnect button size
* fix(app): set provider row height to 56px
* fix(app): add hover text for env-connected providers
* fix(app): use default cursor for env provider text
* feat(ui): add providers icon and use in settings
* feat(ui): add models icon and use in settings
* fix(app): style view all button with interactive color and margin
* feat(ui): add optional transition animations to dialog
* fix(ui): prevent double-close and fix dialog replacement
* feat(app): add transition to select provider dialog
* feat(app): add transition to command palette
* fix(ui): reduce dialog transition in time to 150ms
* feat(app): add provider descriptions to settings
* feat(app): add Vercel AI Gateway provider description
* fix(ui): scope filetree pill tabs styling
* fix(app): adjust filetree panel padding
* fix(app): tighten filetree row spacing
* fix(app): use chevron icons for filetree folders
* fix(app): use medium font for filetree items
* fix(app): refine filetree row spacing and indent
* fix(app): reduce filetree folder indent
* fix(app): dim non-deep filetree guide lines
* fix(app): fade filetree guide lines on hover
* fix(app): move file tree toggle to right
* fix(app): disable tooltips in filetree tabs
* test(app): fix e2e test
* ci: add stale pr job
* ci: add dry-run option to stale PR closer workflow
Allows testing stale PR closure without actually closing PRs
* tweak: retry logic to catch certain provider problems
* fix(app): disconnect zen provider
* fix(app): zen disconnect not working
* chore: generate
* chore: cleanup
* fix: search clear icon
* wip: new release modal
- highlight key updates or new features
- needs some transition love
- all copy including text and video placeholder
* chore: cleanup
* wip: highlights
* wip: highlights
* wip: highlights
* tweak: when using messages api for copilot, attach anthropic beta headers
* chore: don't flip github draft release automatically
* fix(app): file tree performance
* fix(app): reactive file tree
* chore: generate
* chore: cleanup
* fix(app): enable file watcher
* chore: cleanup
* chore: cleanup
* test(app): file tree spec
* feat(release): add highlights template to draft releases (#10745 )
* docs: add Italian README (#10732 )
* chore: generate
* fix(app): add connect provier in model selector (#10706 )
* fix(desktop): disable magnification gestures on macOS (#10605 )
* feat: add /learn command to extract session learnings to scoped AGENTS.md files (#10717 )
* fix: use Instance.directory instead of process.cwd() in read tool
* fix(core): expose Instance.directory to custom tools
* fix(app): only show files in select dialog when clicking + tab
* desktop: deduplicate tauri configs
* ignore: update download stats 2026-01-27
* fix(app): auto-scroll button sometimes sticks
* chore(app): missing tooltips
* feat(app): forward and back buttons
* chore: cleanup
* feat(core): add worktree to plugin tool context
* fix(app): agent fallback colors
* fix(app): non-fatal error handling
* docs(core): plugin tool context updates
* fix(ui): set filetree tablist height to 48px with centered content
* fix(app): center filetree empty state with 32px top margin
* fix(app): update review empty states to 14px and align select file empty state
* fix(app): only show left border on plus button when sticky
* fix(app): use smaller close icon on tabs to match comment cards
* fix(ui): add max-width 280px to tabs with text truncation
* fix(app): don't show session skeleton after workspace reset
* perf(app): don't keep parts in memory
* perf(app): cleanup connect provider timers
* perf(app): shared terminal ghostty-web instance
* fix(app): select model anchor
* Revert "fix(app): select model anchor"
This reverts commit 36babf5fc390fd9a892ad3742690740296d94a23.
* fix(app): open markdown links in external browser
* fix(app): navigate to tabs when opening file
* chore(app): cleanup tailwind vs pure css
* fix(app): tooltips causing getComputedStyle errors in model select
* fix(app): swallow file search errors
* feat(opencode): Handle Venice cache creation tokens (#10735 )
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
* chore: generate
* chore(docs): Better explanation on how to allow tools in external directories (#10862 )
* tweak: adjust retry check to be more defensive
* ci: make tests passing a requirement pre-release
* zen: kimi k2.5 and minimax m2.1
* feat(app): update settings in general settings
* chore(app): translations
* test(app): new e2e smoke tests
* feat(app): show loaded agents.md files
* fix(app): session diffs not always loading
* feat(app): improved layout
* chore: generate
* tweak: add recommended topP/temp for kimi k2.5
* Set temperature for kimi k2.5
* Revert "ci: make tests passing a requirement pre-release"
This reverts commit 8c00818108 .
* Revert "Set temperature for kimi k2.5"
This reverts commit bb63d16fa8 .
* feat(app): color filetree change dots by diff kind
* feat(app): add filetree tooltips with diff labels
* fix(app): shorten nav tooltips
* fix(app): adjust titlebar left spacing
* fix(app): delay nav tooltips
* fix(app): align filetree change styling
* fix(app): set filetree padding to 6px
* fix(app): highlight selected change
Track clicked file in the Changes tree and apply selection styling to the matching review diff.
* chore(app): show 5 highlights
* fix(app): auto-scroll
* fix(app): don't connect to localhost through vpn
* perf(app): better memory management
* chore: cleanup
* feat(desktop): i18n for tauri side
* feat(desktop): tauri locales
* fix(app): not auto-navigating to last project
* chore: update nix node_modules hashes
* fix(tui): handle 4-5 codes too in c to copy logic
* fix(app): spinner color
* fix(app): file tree not always loading
* test(app): fix outdated e2e test
* test(app): fix outdated e2e test
* fix(app): file tree not always loading
* fix(app): terminal corruption
* feat(app): add 'connect provider' button to the manage models dialog (#10887 )
* fix(app): auto-scroll
* feat: support headless authentication for chatgpt/codex (#10890 )
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
* fix(app): reintroduce review tab
* release: v1.1.37
* feat(app): use opentui markdown component behind experimental flag (#10900 )
* chore: generate
* docs: add Daytona OpenCode plugin to ecosystem (#10917 )
* chore: generate
* fix(cli): restore brand integrity of CLI wordmark (#10912 )
* zen: kimi k2.5
* fix(opencode): ensure unsub(PartUpdated) is always called in TaskTool (#9992 )
* chore: generate
* ignore: adjust flag
* bump plugin version
* ci
* fix: ensure parallel tool calls dont double load AGENTS.md
* release: v1.1.38
* fix: ensure copilot plugin properly sets headers for new messages api
* chore: generate
* release: v1.1.39
* bump: plugins
* ignore: update download stats 2026-01-28
* chore(app): global config changes
* feat(app): custom provider
* chore: cleanup
* wip(app): global config
* chore: cleanup
* chore: cleanup
* chore: generate
* feat(i18n): add th locale support (#10809 )
* chore: generate
* fix(desktop): enable ctrl+n and ctrl+p for popover navigation (#10777 )
* fix: add SubtaskPart with metadata reference (#10990 )
Co-authored-by: yangtianzhe <yangtianzhe@corp.netease.com >
* chore: generate
* fix(app): close review pane
* fix(markdown): Add streaming prop to markdown element (#11025 )
* release: v1.1.40
* fix(script): remove highlights template from release notes (#11052 )
* chore: generate
* fix(ui): allow KaTeX inline math to be followed by punctuation (#11033 )
* fix(app): alignment and padding in dialogs (#10866 )
* fix(app): fill missing zh keys to avoid English fallback (#10841 )
* chore: generate
* fix(opencode): normalize zh punctuation for Chinese UI (#10842 )
* fix(ui): improve zh duration display formatting (#10844 )
* fix(opencode): add `AbortSignal` support to `Ripgrep.files()` and `GlobTool` (#10833 )
* fix(typescript errors): remove duplicate keys causing typescript failures (#11071 )
* fix(app): file tabs - auto scroll on open & scroll via mouse wheel (#11070 )
* tweak: add ctx.abort to grep tool
* fix(app): types
* docs: update experimental environment variables in CLI docs (#11030 )
* fix(app): make settings more responsive for mobile and small web/desktop (#10775 )
* chore: generate
* fix(opencode): allow media-src data: URL for small audio files (#11082 )
* fix(provider): include providerID in SDK cache key (#11020 )
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
* fix: maxOutputTokens was accidentally hardcoded to undefined (#10995 )
* fix: ensure variants for copilot models work w/ maxTokens being set
* release: v1.1.41
* test: fix test
* chore: generate
* feat(cli): include cache tokens in stats (#10582 )
* ci: adjust team
* guard destroyed input field in timeout
* feat: Sequential numbering for forked session titles (Issue #10105 ) (#10321 )
* more timeout race guards
* fix: ensure that kimi doesnt have fake variants available
* fix: frontmatter was adding newlines in some cases causing invalid model ids (#11095 )
Co-authored-by: aptdnfapt <aptdnfapt@users.noreply.github.com >
* fix: undo change that used anthropic messages endpoint for anthropic models on copilot due to ratelimiting issues, go back to completions endpoint instead
* release: v1.1.42
* fix: fix types
* fix: fix kilocode/sdk type
* chore: update nix node_modules hashes
---------
Co-authored-by: adamelmore <2363879+adamdottv@users.noreply.github.com >
Co-authored-by: Idris Gadi <85882535+IdrisGit@users.noreply.github.com >
Co-authored-by: Noam Bressler <noamzbr@gmail.com >
Co-authored-by: Ariane Emory <97994360+ariane-emory@users.noreply.github.com >
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Steffen Deusch <steffen@deusch.me >
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com >
Co-authored-by: Sebastian Herrlinger <hasta84@gmail.com >
Co-authored-by: Ryan Vogel <ryan@mandarin3d.com >
Co-authored-by: Sam Huckaby <samhuckaby@gmail.com >
Co-authored-by: Alex Yaroshuk <34632190+alexyaroshuk@users.noreply.github.com >
Co-authored-by: Rahul A Mistry <149420892+ProdigyRahul@users.noreply.github.com >
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com >
Co-authored-by: zerone0x <hi@trine.dev >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Aiden Cline <aidenpcline@gmail.com >
Co-authored-by: Tim <hello@timsmart.co >
Co-authored-by: David Hill <iamdavidhill@gmail.com >
Co-authored-by: Fabio Martino <fabiomartino@users.noreply.github.com >
Co-authored-by: Chris Yang <18487241+ysm-dev@users.noreply.github.com >
Co-authored-by: Brendan Allan <git@brendonovich.dev >
Co-authored-by: dpuyosa <dpuyosa@users.noreply.github.com >
Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com >
Co-authored-by: Frank <frank@anoma.ly >
Co-authored-by: Rohan Godha <git@rohangodha.com >
Co-authored-by: opencode <opencode@sst.dev >
Co-authored-by: Tommy D. Rossi <beats.by.morse@gmail.com >
Co-authored-by: James Murdza <james@jamesmurdza.com >
Co-authored-by: Tito <github@mynameistito.com >
Co-authored-by: Goni Zahavy <goni1993@gmail.com >
Co-authored-by: Dax Raad <d@ironbay.co >
Co-authored-by: Nattawee Phantawong <crozzio@gmail.com >
Co-authored-by: Sairaj <sairaj2119@gmail.com >
Co-authored-by: RenegadeE <37529469+YangTianz@users.noreply.github.com >
Co-authored-by: yangtianzhe <yangtianzhe@corp.netease.com >
Co-authored-by: Max Kong <kongzheyuan@outlook.com >
Co-authored-by: Julian Coy <julian@juliancoy.com >
Co-authored-by: Babou <42550761+bbabou@users.noreply.github.com >
Co-authored-by: Devin Griffin <31415269+DNGriffin@users.noreply.github.com >
Co-authored-by: tan <zerotanapok@gmail.com >
Co-authored-by: Saba Tchikhinashvili <38084512+saba-ch@users.noreply.github.com >
Co-authored-by: ideallove <20013535+ideallove@users.noreply.github.com >
Co-authored-by: Benjamin Oldenburg <benjamin.oldenburg@ordis.co.th >
Co-authored-by: aptdnfapt <aptdnfapt@users.noreply.github.com >
Co-authored-by: marius-kilocode <marius@kilocode.ai >
2026-02-02 12:47:09 +01:00
adamelmore
021d9d105e
fix(app): reactive file tree
2026-01-26 16:46:09 -06:00
Britt
f4cf3f4976
fix(web): construct apply_patch metadata before requesting permission ( #10422 )
2026-01-24 12:00:21 -06:00
iltenahmet
3eaf6f3baf
fix(ui): show file path in apply_patch request permission screen ( #10079 )
2026-01-22 13:43:11 -06:00
GitHub Action
2049af4d6f
chore: generate
2026-01-21 04:56:39 +00:00
Aiden Cline
74bd52e8a7
fix: ensure apply patch tool emits edited events
2026-01-20 22:55:50 -06:00
GitHub Action
616329ae97
chore: generate
2026-01-20 06:33:16 +00:00
Aiden Cline
9706aaf552
rm filetime assertions from patch tool
2026-01-20 00:32:29 -06:00