Commit Graph
1398 Commits
Author SHA1 Message Date
akbash-bot ebaf64d3fb test: gate shell hook regression on unix
refs #2769
2026-08-13 10:58:25 +00:00
akbash-bot b617644b45 fix: keep agent hooks silent without usable python
refs #2769
2026-08-13 10:50:55 +00:00
952729ee03 fix: preserve logical lines in scrollback editor (#2735)
refs #2733

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-13 03:46:52 +03:00
Can Celik a4d52ab602 feat: add qwen code detection and restore (#2743)
refs #2730
2026-08-13 03:00:35 +03:00
Erik KrogenandCopilot 8b635c9180 fix(agent): focus Copilot before prompting (#2734)
* fix(agent): focus Copilot before prompting

refs #1698

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* test(agent): cover stale focus-reporting state

refs #1698

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-08-13 02:38:43 +03:00
49e333ae87 fix: strip claude title spinner frames (#2709)
* fix: source title activity glyphs from manifests

refs #2707

* fix: simplify manifest-driven title stripping

refs #2707

* fix: reconcile handoff title policies

refs #2707

* fix: strip claude title spinner frames

refs #2707

* fix: keep claude detection manifest unchanged

---------

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
Co-authored-by: Ogulcan Celik <ogulcancelik@gmail.com>
2026-08-12 22:56:19 +03:00
JJ Liebig 1079fff412 fix: use the running binary in agent hooks (#2722) 2026-08-12 22:13:21 +03:00
Can Celik d46d9a2275 fix: preserve workspace labels for root repositories (#2727)
refs #2594
2026-08-12 20:00:37 +03:00
Ogulcan Celik c82a5b069c chore: update contributor list 2026-08-12 19:45:17 +03:00
JJ LiebigandCan Celik 5600197f00 perf: avoid repeated Git config reads (#2688)
refs #2643

Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-12 04:14:59 +03:00
Ogulcan Celik 3f752a72fd fix: synchronously terminate cancelled status commands 2026-08-12 03:52:41 +03:00
Ogulcan Celik 9ba32c25f3 fix: detect claude 2.1.228 half-circle busy spinner 2026-08-12 02:48:04 +03:00
d004089dee fix: disambiguate shifted punctuation keybinds (#2676)
refs #2674

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-11 23:08:34 +03:00
akbashandakbash-bot 3607453087 fix(render): compact large terminal redraws (#2675)
refs #2670

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
2026-08-11 22:55:49 +03:00
Can CelikandJonathan Liebig 06ca0baa12 fix(windows): reduce idle agent detection CPU (#2651)
* fix(windows): reduce idle agent detection CPU

refs #2642

* fix(windows): gate agent process discovery

refs #2642

---------

Co-authored-by: Jonathan Liebig <jonathan.liebig@gmail.com>
2026-08-11 18:08:51 +03:00
JJ LiebigandCan Celik 6b0e6165af fix: make just build cross-platform (#2647)
Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-11 16:46:54 +03:00
akbashandakbash-bot b8387818f0 fix: derive repo name for embedded bare layouts (#2660)
refs #2657

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
2026-08-11 16:27:49 +03:00
Ogulcan Celik ddffb6e1d7 chore: refresh english documentation 2026-08-11 03:54:03 +03:00
JJ LiebigandCan Celik 7ae4b056a0 fix: wait for agent prompt readiness (#2537)
* fix: wait for agent prompt readiness

refs #2410

* fix: return pane updates after tab bar command

refs #2410

---------

Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-11 03:24:02 +03:00
David Heinemeier HanssonandOgulcan Celik 350f001320 feat: keep the outer terminal window title in sync with the session (#2627)
* feat: keep the outer terminal window title in sync with the session

Herdr emulates the terminals in its panes, so an OSC 0/OSC 2 title
written inside a pane stops at Herdr and never reaches the terminal
Herdr itself runs in. That outer title is what window managers read for
title bars, tab bars, and group bars, so it kept showing whatever the
shell or ssh happened to leave behind.

Add `ui.window_title`, rendered from {hostname}, {workspace}, {tab},
{pane}, and {terminal_title}, and push it to the foreground client
whenever it changes. It renders on the server, so {hostname} names the
machine the panes actually run on rather than the machine a thin remote
client runs on, and it is gated on a pending render so an idle loop
never pays for it.

A title is only remembered as delivered once a foreground client takes
it, so the first client to attach is written to rather than skipped.
`client.window_title.set` still wins over the configured title, and
clearing it now hands the title back to `ui.window_title` instead of
only "herdr".

* fix: deliver the outer window title to a newly attached client

ClientConnected assigns the foreground client directly rather than going
through promote_client_to_foreground, so clearing the sent-title cache
there missed the case that matters most: attaching a second terminal to a
running session. The title was usually unchanged, so the sync returned
early and the new terminal kept whatever its shell or ssh had left.

Key the cache on the client that received the title instead of relying on
every foreground assignment to invalidate it.

* perf: keep hidden pane output off the window title path

Output from a hidden or background pane sets needs_render without setting
needs_full_render, and the retained render plan then skips presentation
for it entirely. Syncing the title on needs_render meant every coalesced
hidden-output tick still formatted, sanitized, and allocated a title that
could not have changed, against the hidden-source early exit AGENTS.md
requires.

Every input to the title is app state, which always requests a full
render, so gate on that instead. The one exception is the focused pane's
own terminal title, which arrives through PTY parsing, so ask for a full
render when that changes and the configured title uses it.

* fix: only cache a window title a client writer received

* fix: carry an api set window title across a live handoff

* fix: make outer window title updates event-driven

---------

Co-authored-by: Ogulcan Celik <ogulcancelik@gmail.com>
2026-08-11 03:04:12 +03:00
Ogulcan Celik 42789c8e1d refactor(website): clean up homepage 2026-08-10 23:34:01 +03:00
PISIT KOOLPLUKPOLandCan Celik 4a8a8f9087 fix(input): ignore modified j/k/up/down in session navigator (#2377)
The Char('j')/Char('k')/Down/Up match arms in handle_navigator_key
had no modifier guard, unlike every sibling arm in the same match
block, so Ctrl+K, Alt+J, etc. also moved the navigator selection.

refs #1981

Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-10 23:02:21 +03:00
Ogulcan Celik 66835dba71 ci: remove automatic issue gate 2026-08-10 21:53:44 +03:00
JJ Liebig 1ac44afcc0 fix(windows): strip elevated terminal title decoration (#2632) 2026-08-10 21:49:41 +03:00
Can Celik 7e4ab7b034 fix(server): prioritize shutdown requests (#2624)
refs #2612
2026-08-10 21:01:45 +03:00
JJ Liebig bbd7c2094a test(windows): serialize media player environment access (#2619) 2026-08-10 15:09:10 +03:00
akbashandOgulcan Celik ccccda54c2 fix: track opencode tui session selection (#2455)
refs #2450

Co-authored-by: Ogulcan Celik <ogulcancelik@gmail.com>
2026-08-10 14:57:44 +03:00
2e8cc9060d fix(ui): anchor the host cursor to modal name inputs (#2569)
* fix(ui): anchor the host cursor to modal name inputs

IMEs draw their composition preview at the host terminal cursor. The rename
and new-worktree dialogs drew a block glyph instead of setting one, so the
frame carried no cursor and the client kept the position the focused pane
last reported. Japanese composition appeared behind the dialog and only
reached the field on Enter.

Set the cursor to the caret column instead, counting wide characters as two
cells.

refs #1755

* fix(ui): keep the clamped caret cell blank

A name that fills the field left the clamped caret sitting on the last
rendered glyph. A terminal inverts the cell under its cursor and an IME
composes there, so the glyph was hidden and composition overlapped it.

Render the text one column short of the field. The field is still cleared
in full, so the clamped caret always lands on a blank cell.

refs #1755

---------

Co-authored-by: kataokatsuki <kataokatsuki@users.noreply.github.com>
Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-10 14:34:51 +03:00
David Heinemeier Hansson 6c6ddcd493 fix: center tab labels for symmetric highlight padding (#2570)
* fix: center tab labels for symmetric highlight padding

* docs: note centered tab labels in the changelog

* fix: center tab labels by display width, not char count
2026-08-10 05:32:06 +03:00
David Heinemeier Hansson f5067ed829 feat: add move tab keybind actions (#2561)
* feat: add move tab keybind actions

Add optional keys.move_tab_previous/move_tab_next actions that reorder
the active tab one position, wrapping at either end. Reuses the
existing tab.move runtime path that mouse drag reordering already
drives.

* fix: exit navigate mode on single-tab move attempts
2026-08-10 01:55:28 +03:00
Can CelikandDavid Heinemeier Hansson e48d83067a feat: add configurable tab bar status (#2586)
* feat: show a zoom indicator in the desktop tab bar

Reserve the right edge of the tab row for a ZOOM pill while the
focused pane is zoomed, matching the accent style of the mode bars.
The per-tab Z suffix stays; the pill makes the zoomed state visible
at a glance like tmux's status-right flag.

* feat: optionally show the hostname in the desktop tab bar

Add ui.tab_bar_hostname to display the machine's hostname at the right
edge of the tab row, like tmux's #h in status-right. The value resolves
where the server renders, so remote sessions show the remote host. Off
by default.

* fix: strip control characters from the tab bar hostname

* fix: hide the hostname when it would squeeze out the tab strip

* feat: add configurable tab bar status

* fix: harden tab bar status updates

* fix: terminate tab bar status process trees

* fix: disable status commands on unsupported platforms

* fix: skip unchanged status command renders

* fix: keep tab bar status opt-in by default

---------

Co-authored-by: David Heinemeier Hansson <david@hey.com>
2026-08-10 01:20:09 +03:00
Ogulcan Celik e2aa86a9e8 test: guard pane-scaled render performance
refs #2550
2026-08-09 20:36:11 +03:00
David Heinemeier Hansson 4e31084495 feat: add direct pane resize keybindings (#2558) 2026-08-09 19:10:52 +03:00
ca1af383a8 fix(client): avoid abort on terminal hangup (#2427)
* fix(client): avoid abort on terminal hangup

refs #2424

* test(client): gate PTY integration on unix

refs #2424

---------

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-09 17:45:40 +03:00
akbash e7c38ab37f perf(ui): avoid full pane mode reads for scrollbars (#2554) 2026-08-09 14:50:11 +03:00
Can Celik d277d2f83b fix(input): preserve alt-prefixed control keys (#2543)
refs #2514
2026-08-09 05:10:35 +03:00
Ogulcan Celik 2baebb50b0 fix(website): improve plugins page readability on dark ground 2026-08-09 04:55:35 +03:00
Can Celik 97f8140f37 fix(ui): reclaim scrollbar gutter in alternate screen (#2538) 2026-08-09 04:17:28 +03:00
Can Celik 1777e9bba3 feat(graphics): add direct pane frame streaming (#2523)
* feat(graphics): add direct pane frame streaming

* feat(graphics): expose pane visibility

* test(graphics): preserve legacy terminal image output

* fix(graphics): harden streaming lifecycle

* fix(input): preserve mouse releases outside panes
2026-08-09 02:04:39 +03:00
David Heinemeier Hansson 36a8d36a72 feat: make outer pane borders configurable (#2535) 2026-08-09 01:37:57 +03:00
JJ Liebig 3a76fea2d8 fix: make windows installer swaps atomic (#2530)
refs #2356
2026-08-08 22:59:32 +03:00
Can Celik 10974c822d feat(input): add per-pane right-click routing (#2504) 2026-08-08 16:26:47 +03:00
Ogulcan Celik 1d6d1fdc6b chore: approve dhh as contributor 2026-08-08 16:04:21 +03:00
akbashandakbash-bot 6f311498ae fix: forward pane terminal bells (#2498)
refs #2453

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
2026-08-08 02:15:56 +03:00
Can Celik 50ddc06f00 feat: support all agent integrations on windows (#2496) 2026-08-07 23:10:28 +03:00
JJ Liebig 7d77e927eb fix(windows): share Git Bash agent candidate scans (#2494)
refs #2459
2026-08-07 22:22:04 +03:00
Can Celik bdb5222eec fix(config): report unknown theme names (#2488)
refs #2452
2026-08-07 20:59:32 +03:00
JJ LiebigandCan Celik 00f04ac65c fix: avoid redundant Windows recent-history snapshots (#2474)
refs #962

Co-authored-by: Can Celik <ogulcancelik@gmail.com>
2026-08-07 19:24:56 +03:00
Can Celik b0723b7906 fix(input): preserve shift in kitty alternate reports (#2479)
refs #2435
2026-08-07 19:07:36 +03:00
akbashandakbash-bot 374d3eddc5 fix(remote): restore blocking bridge streams (#2485)
refs #2478

Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com>
2026-08-07 18:59:04 +03:00