Commit Graph
2946 Commits
Author SHA1 Message Date
Neil 36c6a9241f refactor(cli): split index.ts into per-verb handler modules (#1089) 2026-04-25 13:32:14 -07:00
Jinjing 5f1161b1ab feat: add basic syntax highlighting for .astro files (#1084)
Maps .astro to Monaco's html language id, matching the existing
treatment of .vue and .svelte. This gives Astro files HTML-level
coloring instead of plain text. Proper SFC-aware highlighting
(frontmatter TS, template expressions) would require a Monarch
grammar — tracked separately.
2026-04-25 13:23:31 -07:00
Jinjing b4d688a580 fix(linear): clarify personal API key requirement and disconnect icon (#1087)
Users were tempted to click "New passkey" on the Linear Security page
instead of "New API key". Bolded key terms, spelled out the exact button
to click, and loosened the dialog header spacing.

Also swapped the disconnect button's chain-Link icon for Unlink, since
the linked-chain icon read as "connect".
2026-04-25 13:17:10 -07:00
github-actions[bot] a04be9766d release: 1.3.19-rc.2 [rc-slot:2026-04-25-03] v1.3.19-rc.2 2026-04-25 10:12:43 +00:00
Jinwoo Hong 3fc0a9680e fix: prevent pinned worktrees from expanding collapsed groups (#1081) 2026-04-25 00:29:34 -07:00
github-actions[bot] 68970c3e71 release: v1.3.19-rc.1 v1.3.19-rc.1 2026-04-25 07:09:47 +00:00
Jinjing 96d6354b0e docs(readme): add Annotate AI Diff feature, SSH support, and Spanish translation (#1080) 2026-04-25 00:01:53 -07:00
Neil 2796e5f21b Improve terminal attribution shims (#1079) 2026-04-24 22:50:30 -07:00
Neil 91f1e72cd5 fix(editor): stop infinitely flashing find-widget button tooltips (#1077) 2026-04-24 22:14:30 -07:00
Jinjing aa10811780 fix: address review findings (#1078)
- fix: address review findings
- wip
- wip
2026-04-24 21:58:21 -07:00
Neil a2928e62be refactor(terminal): remove FORCE_HYPERLINK feature and setting (#1075) 2026-04-24 21:06:21 -07:00
Jinwoo Hong cc47cad95f feat(tasks): add Linear team selector (#1074) 2026-04-24 21:03:30 -07:00
Neil f1a1f18cf8 Attribution (#1049) 2026-04-24 20:55:50 -07:00
github-actions[bot] 7ea0e8d0d1 release: v1.3.18 v1.3.18 2026-04-25 03:55:23 +00:00
Jinwoo Hong bec6a5c508 feat(tasks): persist last-used task source (GitHub/Linear) (#1071) 2026-04-24 20:29:41 -07:00
Neil 32d60308d7 fix(agents): detect Auggie using real auggie binary name (#1072) 2026-04-24 20:25:47 -07:00
Brennan Benson 1f354cb4c7 feat(sidebar): agent-status plumbing behind AGENT_DASHBOARD_ENABLED (dark launch) (#1070) 2026-04-24 18:53:00 -07:00
Brennan Benson 178a64626c fix(term): stop cold-restore from leaking CSI 997 to fresh shell (#1063) 2026-04-24 18:21:37 -07:00
Jinjing 68ceae531d feat(composer): default blank workspace name to a unique marine-creature (#1069)
Use the existing getSuggestedCreatureName helper as the fallback seed in
getWorkspaceSeedName so blank submissions get a distinct, readable name
scoped to the selected repo (respecting nestWorkspaces) instead of
colliding on the "workspace" literal.
2026-04-24 17:39:16 -07:00
Brennan Benson 60a8630f68 feat(ui): replace back/forward workspace navigation icons with arrows (#1066) 2026-04-24 17:22:24 -07:00
github-actions[bot] 005963192c release: v1.3.17 v1.3.17 2026-04-25 00:19:29 +00:00
Neil 51b8d124a7 fix(sidebar): keep worktree spinner working while any split pane is active (#1064) 2026-04-24 17:16:42 -07:00
github-actions[bot] ed49380b6d release: v1.3.17-rc.5 v1.3.17-rc.5 2026-04-24 23:56:25 +00:00
Jinjing 5766defd87 feat(ssh): surface SSH status in worktree UI and streamline add-repo flow (#1067)
- Show SSH icon (Globe/WifiOff) beside worktree titles in jump palette
  and WorktreeCard so remote state is visible at a glance.
- Replace inline add-repo flow in NewWorkspaceComposerCard with the
  existing add-repo modal for a single entry point.
- When no SSH targets are configured, let users jump straight to SSH
  settings from the add-repo dialog, and disable remote path until a
  target is selected.
2026-04-24 16:14:06 -07:00
Jinwoo Hong 9e21423a6e fix(ssh): support Cmd+P file search for non-git folders without ripgrep (#1065) 2026-04-24 16:09:57 -07:00
Neil 1be13d58f3 fix(daemon): defer startup flush past shell raw-mode switch (#1060)
* fix(daemon): defer startup-command flush past shell raw-mode switch

When launching an agent (e.g. `claude`) through the quick-launch menu,
the command name appeared twice in the terminal — once from kernel
echo, once from readline's prompt redraw. The daemon session was
flushing its pre-ready stdin queue the moment the OSC 777 shell-ready
marker arrived, but that marker fires from precmd_functions /
PROMPT_COMMAND — before the shell draws its prompt and before
zle/readline flips the PTY into raw mode. Writing while ECHO was still
on produced the visible duplicate.

Mirror the gating already used by the non-daemon path
(local-pty-shell-ready.ts::writeStartupCommandWhenShellReady): wait
for the next data chunk after the marker (the prompt draw) plus a
short 30ms delay, with a 50ms wall-clock fallback for the case where
the prompt arrives in the same chunk as the marker.

This regression became visible after #1025 made the shell-ready
wrappers persist reliably — previously the marker was often missed
and the 15s fallback path fired long after the shell was already in
raw mode, masking the race.

* refactor(daemon): extract PostReadyFlushGate out of Session

Factor the post-ready flush gating out of Session into its own class in
post-ready-flush-gate.ts. Session's only responsibility is now to
arm() the gate on shell-ready, notifyData() on subsequent PTY data,
and clear() on teardown. Removes the max-lines oxlint-disable added in
the previous commit and puts the timing behavior behind focused unit
tests.

No behavior change — kept as a separate refactor commit from the
behavior fix for reviewability.

* fix(daemon): keep queueing writes while post-ready flush gate is pending

Codex review caught an ordering regression: once transitionToReady()
sets _shellState to 'ready', any Session.write() that arrives during
the 30–50ms gate window was being written directly to the subprocess,
bypassing the still-unflushed preReadyStdinQueue. That let late input
race ahead of the buffered startup command.

Expose PostReadyFlushGate.isPending and continue queuing while the gate
is armed so queued writes drain in their original order before any
fresh input reaches the subprocess.
2026-04-24 15:26:50 -07:00
Jinjing 622b85c73e refactor(ui): polish sidebar typography and compact task page chrome (#1062)
Tighten sidebar fonts/icons (Tasks label, WORKSPACES section, search) and
collapse the task page close button into the source-filter row so the top
chrome forms one compact band.
2026-04-24 15:22:21 -07:00
Brennan Benson 6675138d80 feat(agent-hooks): shared types, renderer store, local hook server + Claude/Codex/Gemini/OpenCode wiring (gated) (#1019) 2026-04-24 15:13:58 -07:00
github-actions[bot] 0a45c5433b release: 1.3.17-rc.4 [rc-slot:2026-04-24-15] v1.3.17-rc.4 2026-04-24 22:11:56 +00:00
Jinwoo Hong fdb7ed6678 fix(linear): stop keychain prompt from appearing during app launch (#1058) 2026-04-24 15:01:44 -07:00
Neil e6abe45bc7 Revert "fix(terminal): terminal mic access" (#1057) 2026-04-24 14:44:21 -07:00
Neil f0c96bd2bf fix(updater): keep prerelease users on the RC channel (#1053)
Detect when the running build is itself a prerelease (e.g. 1.3.17-rc.1)
and auto-enable the RC feed in setupAutoUpdater. Without this, the
default generic /releases/latest/download/ feed only advertises stable
releases, so "Check for Updates" from a prerelease build could never
find the next RC (e.g. 1.3.17-rc.2) unless the user knew to Shift-click.
2026-04-24 14:36:22 -07:00
github-actions[bot] 749ba42cb2 release: v1.3.17-rc.3 v1.3.17-rc.3 2026-04-24 21:15:50 +00:00
Kelvin Amoaba 0a9187909d fix(term): stop daemon emulator from replying to xterm queries (#1024) 2026-04-24 14:05:42 -07:00
Jinwoo Hong 5315e87a81 feat: add Claude account switcher (#1050) 2026-04-24 14:05:26 -07:00
Brennan Benson 861f21fc81 feat(terminals): per-tab activity indicators (#944) 2026-04-24 14:05:09 -07:00
Jinwoo Hong 68e658e082 fix(ssh): use SSH target label for home directory remote repos (#1031) 2026-04-24 13:58:48 -07:00
github-actions[bot] bcce74e110 release: v1.3.17-rc.2 v1.3.17-rc.2 2026-04-24 20:56:26 +00:00
Neil 2a71ee6fd0 Add community PRs directly to project (#1052) 2026-04-24 13:50:10 -07:00
Jinjing d106b33ddd fix(issues): enable new-issue button across multi-repo selection (#1051)
- Removes single-repo-only constraint on new-issue button
- Adds repo selector to new-issue dialog when multiple repos selected
- Defaults to first selected repo when dialog opens
- Handles edge case where user changes repo selection while dialog open
2026-04-24 13:41:31 -07:00
Neil 2b950a66ac Add community PR project tracking workflow (#1030) 2026-04-24 13:33:18 -07:00
Jinwoo Hong 717f319a89 feat(ssh): detect remote-host CLI agents in quick-launch menu (#1027) 2026-04-24 13:21:34 -07:00
Jinwoo Hong a73b4a6c1f Fix daemon shell-ready wrapper persistence (#1025) 2026-04-24 13:01:27 -07:00
Jingyue Wuandgithub-actions[bot] 9ca6314692 fix(terminal): terminal mic access (#1018)
* release: 1.3.8-rc.3 [rc-slot:2026-04-21-15]

* release: 1.3.8-rc.4 [rc-slot:2026-04-22-15]

* release: 1.3.8-rc.5 [rc-slot:2026-04-23-15]

* fix(mac): enable microphone permission popup for embedded terminal [Fixes 1009]

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-04-24 12:36:05 -07:00
Brennan Benson 517ce93d38 Fix stuck modifier hint cleanup (#1021) 2026-04-24 12:11:48 -07:00
Jinwoo Hong faed904aae feat(issues): make issues page writable with inline editing (#1017) 2026-04-24 10:41:21 -07:00
github-actions[bot] 1772087db5 release: 1.3.17-rc.1 [rc-slot:2026-04-24-03] v1.3.17-rc.1 2026-04-24 10:27:25 +00:00
Brennan Benson 2a2ddd8bdb feat(tab-bar): add colored top border to active tab (#1020) 2026-04-23 22:10:28 -07:00
Brennan Benson b19db2301d feat(agent-status): shared types + renderer store slice foundation (#1016) 2026-04-23 21:35:59 -07:00
Neil 2ae9392b72 Rename add repo copy to add project (#1014) 2026-04-23 19:02:36 -07:00