agentty 0.8.4 → 0.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,10 +2,131 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and
6
+ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased]
8
+ ## [v0.8.9] - 2026-04-27
9
+
10
+ ### Changed
11
+
12
+ - Prefer one-shot Gemini app-server permission approvals while preserving
13
+ policy-specific approval handling.
14
+ - Remove standalone strict lint CI steps now covered by repository-defined `prek` hooks.
15
+ - Disable `uv` caching in the shared Rust/`prek` setup to avoid stale cache
16
+ interactions.
17
+ - Bump workspace crate metadata and lockfile package versions to `0.8.9`.
18
+
19
+ ### Contributors
20
+
21
+ - @minev-dev
22
+
23
+ ## [v0.8.8] - 2026-04-26
24
+
25
+ ### Changed
26
+
27
+ - Install `rustfmt` in the shared Rust/`prek` setup action for both default and LLVM
28
+ tools nightly toolchains.
29
+ - Bump workspace crate metadata and lockfile package versions to `0.8.8`.
30
+
31
+ ### Contributors
32
+
33
+ - @minev-dev
34
+
35
+ ## [v0.8.7] - 2026-04-26
36
+
37
+ ### Changed
38
+
39
+ - Bump workspace crate metadata and lockfile package versions to `0.8.7`.
40
+ - Preserve the generated release workflow permissions needed by the crates.io publish
41
+ job.
42
+
43
+ ### Contributors
44
+
45
+ - @minev-dev
46
+
47
+ ## [v0.8.6] - 2026-04-26
48
+
49
+ ### Changed
50
+
51
+ - Rename the pre-start session status from `New` to `Draft` across runtime state,
52
+ persistence, UI labels, and user documentation.
53
+ - Rename theme settings from `Current` and `Hacker` to `Agentty Default` and
54
+ `Agentty Green`.
55
+ - Publish workspace crates through the release workflow and wait for crates.io
56
+ publication before release announcement.
57
+ - Run strict lint checks in postsubmit, install clippy in the shared Rust/`prek` setup,
58
+ and align CI hook usage with release checks.
59
+ - Clarify testty public API tripwire tests and session isolation documentation.
60
+
61
+ ### Contributors
62
+
63
+ - @minev-dev
64
+
65
+ ## [v0.8.5] - 2026-04-27
66
+
67
+ ### Added
68
+
69
+ - Add a regular/draft session creation selector, plus feature-test coverage for
70
+ draft-session cancellation and terminal-session continuation.
71
+ - Allow running sessions to be canceled from the sessions list, and allow unstarted
72
+ draft sessions to be canceled before their worktree is created.
73
+ - Queue follow-up chat messages while a turn is running, render queued messages inline,
74
+ and retract them one at a time with `Ctrl+C` before canceling the active turn.
75
+ - Add GitHub and GitLab review-comment previews in diff mode, background review-request
76
+ refresh, and persisted focused-review output across restarts.
77
+ - Add `gpt-5.4-mini` as a selectable Codex model and show model-specific focused-review
78
+ loading text.
79
+ - Add the `Dark Horizon` theme and refine theme tokens, status colors, and footer
80
+ branch/path styling.
81
+ - Add session worktree isolation checks, main-checkout dirtiness detection, and scoped
82
+ app-server provider approval handling.
83
+ - Add transient workflow notices and committing progress rows for auto-commit, rebase,
84
+ and merge flows.
85
+ - Add the `bump-version` workflow skill and shared release-check setup for
86
+ `prek`-managed CI validation.
87
+ - testty: add the curated `testty::prelude` surface, public API tripwire coverage,
88
+ `SnapshotConfig::with_update_mode`, and Result-returning `match_*` assertion APIs.
89
+
90
+ ### Changed
91
+
92
+ - Question input now uses `Ctrl+C` to end the turn without answering and `q` to return
93
+ to the sessions list from non-text focus, while `Esc` no longer discards in-progress
94
+ question text.
95
+ - Session worktrees and publishes now start from upstream-tracked refs so unpublished
96
+ local base-branch commits stay out of session pull requests and merge requests.
97
+ - Auto-commit handling now treats empty amend results as no-change notices and keeps
98
+ commit/rebase workflow notices outside the final transcript body.
99
+ - `/apply` now requires actionable focused-review suggestions before it can send an
100
+ apply prompt.
101
+ - Open-worktree actions stay hidden while sessions are active, queued, rebasing, or
102
+ merging.
103
+ - Documentation and release automation now use `mdformat` wrapping, a shared Rust/`prek`
104
+ CI setup action, and release guidance in `AGENTS.md` plus `bump-version`.
105
+ - testty: prepare the crate for independent crates.io publication, document the upgrade
106
+ path from earlier `0.x` releases, and make the public snapshot error/config surfaces
107
+ non-exhaustive.
108
+
109
+ ### Removed
110
+
111
+ - testty: remove the public `artifact`, `calibration`, and `overlay` modules, and remove
112
+ `testty::snapshot::is_update_mode()` in favor of per-config update-mode methods.
113
+ - Remove the old `release` skill in favor of the repository release guidance and
114
+ `bump-version` workflow.
115
+
116
+ ### Fixed
117
+
118
+ - Wrap agent prompt diffs before rendering so long diff lines do not overflow the
119
+ session output view.
120
+ - Render queued chat messages without a UI delay.
121
+ - Preserve focused-review cache and visibility across restarts, diff mode, and
122
+ clarification flows.
123
+ - Refresh session tests and end-to-end assertions for cancellation, `/apply` guidance,
124
+ question input, and the new feature demos.
125
+
126
+ ### Contributors
127
+
128
+ - @andagaev
129
+ - @minev-dev
9
130
 
10
131
  ## [v0.8.4] - 2026-04-25
11
132
 
@@ -65,8 +186,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
65
186
 
66
187
  ### Fixed
67
188
 
68
- - Show review fallback status when no review text is available and refresh staged-draft sessions immediately.
69
- - Preserve focused review visibility after completion across prompt, question, and done sessions.
189
+ - Show review fallback status when no review text is available and refresh staged-draft
190
+ sessions immediately.
191
+ - Preserve focused review visibility after completion across prompt, question, and done
192
+ sessions.
70
193
  - Preserve user-cancelled turns as canceled sessions.
71
194
  - Track turn prompt source to preserve agent payload text.
72
195
  - Restrict protocol questions to genuine clarifications.
@@ -80,7 +203,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
80
203
 
81
204
  ### Added
82
205
 
83
- - Preview review-request comments inside the diff page. Press `d` from a review-ready session to open the diff page, then press `c` inside the page to toggle the right panel between the git diff and the cached comments. The comments panel lists inline threads and pull-request-level "General discussion" comments for GitHub-linked sessions; GitLab support is tracked as a follow-up.
206
+ - Preview review-request comments inside the diff page. Press `d` from a review-ready
207
+ session to open the diff page, then press `c` inside the page to toggle the right
208
+ panel between the git diff and the cached comments. The comments panel lists inline
209
+ threads and pull-request-level "General discussion" comments for GitHub-linked
210
+ sessions; GitLab support is tracked as a follow-up.
84
211
  - Add theme setting and theme-aware palette rendering.
85
212
  - Add `gpt-5.5` Codex model support.
86
213
  - Render session summary above active prompt during in-progress turns.
@@ -107,20 +234,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107
234
 
108
235
  ### Added
109
236
 
110
- - Add terminal session continuation that seeds a new session from completed or canceled work.
111
- - Add `/apply` so focused-review suggestions can be sent back to the agent as a new prompt.
112
- - Add background review-request polling plus refreshed session-view guidance and demo coverage.
237
+ - Add terminal session continuation that seeds a new session from completed or canceled
238
+ work.
239
+ - Add `/apply` so focused-review suggestions can be sent back to the agent as a new
240
+ prompt.
241
+ - Add background review-request polling plus refreshed session-view guidance and demo
242
+ coverage.
113
243
 
114
244
  ### Changed
115
245
 
116
- - Refactor app orchestration, database repositories, and UI layout/state into narrower modules with typed `SessionId` handling.
117
- - Improve forge workflow handling, including remote working-directory GitHub CLI execution and stacked review-request planning.
118
- - Refresh release-policy, workflow, keybinding, and architecture documentation for the new session and review flows.
246
+ - Refactor app orchestration, database repositories, and UI layout/state into narrower
247
+ modules with typed `SessionId` handling.
248
+ - Improve forge workflow handling, including remote working-directory GitHub CLI
249
+ execution and stacked review-request planning.
250
+ - Refresh release-policy, workflow, keybinding, and architecture documentation for the
251
+ new session and review flows.
119
252
 
120
253
  ### Fixed
121
254
 
122
- - Add SQLite busy-timeout handling and align WAL persistence settings for more reliable session storage.
123
- - Debounce stale `@`-mention loading, clear pending session tasks correctly, and preserve focused-review output through clarification flows.
255
+ - Add SQLite busy-timeout handling and align WAL persistence settings for more reliable
256
+ session storage.
257
+ - Debounce stale `@`-mention loading, clear pending session tasks correctly, and
258
+ preserve focused-review output through clarification flows.
124
259
 
125
260
  ### Contributors
126
261
 
@@ -199,8 +334,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
199
334
 
200
335
  ### Changed
201
336
 
202
- - Delay draft-session worktree creation until the staged bundle starts so the branch is based on the latest local base branch.
203
- - Split branch publishing onto `p` and forge review-request publishing onto `Shift+P`, with the same optional custom branch-name flow.
337
+ - Delay draft-session worktree creation until the staged bundle starts so the branch is
338
+ based on the latest local base branch.
339
+ - Split branch publishing onto `p` and forge review-request publishing onto `Shift+P`,
340
+ with the same optional custom branch-name flow.
204
341
 
205
342
  ### Fixed
206
343
 
@@ -285,7 +422,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
285
422
  - Constrain draft prompt routing to new sessions.
286
423
  - Normalize @lookups for agent delivery while preserving raw prompt text.
287
424
  - Refactor prompt composer into shared domain module.
288
- - Preserve focused review when exiting diff mode and suppress rebase during `AgentReview`.
425
+ - Preserve focused review when exiting diff mode and suppress rebase during
426
+ `AgentReview`.
289
427
  - Refine docs table wrapping, runtime-flow guidance, and session workflow diagrams.
290
428
  - Adopt promotion-based roadmap ownership process.
291
429
 
@@ -335,16 +473,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
335
473
 
336
474
  - Add draft session workflow state and staged draft metadata handling.
337
475
  - Add session diff stats plus base and remote git status tracking in the UI.
338
- - Add broader unit and E2E coverage, including modular `testty`-backed session, navigation, confirmation, and showcase flows.
476
+ - Add broader unit and E2E coverage, including modular `testty`-backed session,
477
+ navigation, confirmation, and showcase flows.
339
478
  - Add a features page with per-feature GIF demos to the docs site.
340
479
 
341
480
  ### Changed
342
481
 
343
482
  - Persist and reuse app-server instruction bootstrap state across restored sessions.
344
- - Scope model selection and auto-commit defaults to locally runnable backends and project setting names.
345
- - Propagate typed error enums through app, session, app-server transport, and CLI boundaries.
346
- - Restrict follow-up tasks to code changes and default new follow-up prompts to the first available task.
347
- - Restructure E2E coverage into multi-module tests and refresh roadmap planning guidance.
483
+ - Scope model selection and auto-commit defaults to locally runnable backends and
484
+ project setting names.
485
+ - Propagate typed error enums through app, session, app-server transport, and CLI
486
+ boundaries.
487
+ - Restrict follow-up tasks to code changes and default new follow-up prompts to the
488
+ first available task.
489
+ - Restructure E2E coverage into multi-module tests and refresh roadmap planning
490
+ guidance.
348
491
 
349
492
  ### Contributors
350
493
 
@@ -380,13 +523,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
380
523
  ### Added
381
524
 
382
525
  - Add a docs-site blog section.
383
- - Add roadmap metadata requirements for step headings, IDs, assignees, and claim commits.
526
+ - Add roadmap metadata requirements for step headings, IDs, assignees, and claim
527
+ commits.
384
528
 
385
529
  ### Changed
386
530
 
387
- - Rename the Rust-native TUI E2E crate from `ag-tui-test` to `testty` and prepare it for crates.io publishing.
388
- - Remove the manual review-request sync flow and keep `end_turn_no_answer` aligned with `Review`.
389
- - Refocus implementation-roadmap guidance on active follow-up work and simpler step operations.
531
+ - Rename the Rust-native TUI E2E crate from `ag-tui-test` to `testty` and prepare it for
532
+ crates.io publishing.
533
+ - Remove the manual review-request sync flow and keep `end_turn_no_answer` aligned with
534
+ `Review`.
535
+ - Refocus implementation-roadmap guidance on active follow-up work and simpler step
536
+ operations.
390
537
  - Remove `#[ignore]` gates from E2E tests.
391
538
  - Clarify session commit prompt guidance to consult repository commit conventions.
392
539
 
@@ -499,7 +646,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
499
646
  ### Changed
500
647
 
501
648
  - Publish session branches with `git push --force-with-lease`.
502
- - Update agent test expectations for generic agent wording and the current commit message model.
649
+ - Update agent test expectations for generic agent wording and the current commit
650
+ message model.
503
651
 
504
652
  ### Contributors
505
653
 
@@ -685,11 +833,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
685
833
 
686
834
  - **Agent:** Add predefined answer options for agent questions.
687
835
  - **Agent:** Add mandatory per-turn change summaries to agent protocol.
688
- - **Infra:** Implement forge CLI review-request adapters (GitHub/GitLab PR/MR workflows).
836
+ - **Infra:** Implement forge CLI review-request adapters (GitHub/GitLab PR/MR
837
+ workflows).
689
838
  - **UI:** Add session view review request workflows (create, open, refresh).
690
839
  - **UI:** Show project scope in list tabs.
691
840
  - **Settings:** Scope settings per project.
692
- - **Review:** Auto-start focused review generation on session Review transition and cache results.
841
+ - **Review:** Auto-start focused review generation on session Review transition and
842
+ cache results.
693
843
 
694
844
  ### Changed
695
845
 
@@ -712,7 +862,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
712
862
  - **Docs:** Add GitHub issue form templates and directory indexing.
713
863
  - **Infra:** Add default pull request template for the repository.
714
864
  - **UI:** Add Agentty info panel to the project list.
715
- - **UI:** Chat panel gets polished chrome and unified overlay styling with dimmed backdrop.
865
+ - **UI:** Chat panel gets polished chrome and unified overlay styling with dimmed
866
+ backdrop.
716
867
 
717
868
  ### Changed
718
869
 
@@ -747,8 +898,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
747
898
 
748
899
  ### Added
749
900
 
750
- - **UI:** Support `Alt+Enter` and `Shift+Enter` newline entry across settings and prompt.
751
- - **Session:** Generate session titles from user intent when the first start turn begins.
901
+ - **UI:** Support `Alt+Enter` and `Shift+Enter` newline entry across settings and
902
+ prompt.
903
+ - **Session:** Generate session titles from user intent when the first start turn
904
+ begins.
752
905
 
753
906
  ### Changed
754
907
 
@@ -760,7 +913,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
760
913
  - **UI:** Stop `@mention` highlighting before trailing punctuation.
761
914
  - **Session Output:** Improve verbatim markdown wrapping and Unicode width handling.
762
915
  - **Session Output:** Preserve multiline user prompts across persistence and rendering.
763
- - **Review:** Tighten review suggestion severity criteria and require concise actionable suggestions.
916
+ - **Review:** Tighten review suggestion severity criteria and require concise actionable
917
+ suggestions.
764
918
  - **Architecture:** Refactor module roots into router-only modules.
765
919
  - **Claude:** Enforce strict MCP config for Claude backend.
766
920
  - **Docs:** Reframe UI beautification plan around implementation status.
@@ -779,16 +933,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
779
933
 
780
934
  - **UI:** Support multiline open command editing in the settings tab.
781
935
  - **UI:** Render session status header directly above the output panel.
782
- - **Session:** Add open command selector when multiple launch commands are configured for a worktree.
936
+ - **Session:** Add open command selector when multiple launch commands are configured
937
+ for a worktree.
783
938
  - **Docs:** Add `CLAUDE` and `GEMINI` symlinks for module-level `AGENTS.md` files.
784
939
 
785
940
  ### Changed
786
941
 
787
- - **Architecture:** Rename `app` and `ui` module roots to singular names (`app.rs`, `ui.rs`, `domain.rs`, `infra.rs`, `runtime.rs`).
942
+ - **Architecture:** Rename `app` and `ui` module roots to singular names (`app.rs`,
943
+ `ui.rs`, `domain.rs`, `infra.rs`, `runtime.rs`).
788
944
  - **Architecture:** Parse merge commit messages from structured protocol output.
789
- - **Architecture:** Harden `AGENTS.md` index validation and normalize directory index links.
790
- - **Docs:** Prevent content and table-of-contents text overflow on the documentation site.
791
- - **Docs:** Expand runtime flow documentation and add doc comments across migration, runtime, UI, and database helpers.
945
+ - **Architecture:** Harden `AGENTS.md` index validation and normalize directory index
946
+ links.
947
+ - **Docs:** Prevent content and table-of-contents text overflow on the documentation
948
+ site.
949
+ - **Docs:** Expand runtime flow documentation and add doc comments across migration,
950
+ runtime, UI, and database helpers.
792
951
 
793
952
  ### Contributors
794
953
 
@@ -800,18 +959,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
800
959
 
801
960
  - **UI:** Show active session count in the project list.
802
961
  - **Review:** Run focused review assist in isolated start mode.
803
- - **Docs:** Split architecture documentation into a dedicated section and document structured response protocol.
962
+ - **Docs:** Split architecture documentation into a dedicated section and document
963
+ structured response protocol.
804
964
 
805
965
  ### Changed
806
966
 
807
967
  - **Protocol:** Harden structured protocol handling across providers.
808
- - **Architecture:** Standardize module-oriented imports across the `app` and `ui` layers.
809
- - **Architecture:** Align architecture docs with runtime mode, channel schema, and test boundaries.
810
- - **Quality:** Require explicit user approval to retain legacy behavior during development.
968
+ - **Architecture:** Standardize module-oriented imports across the `app` and `ui`
969
+ layers.
970
+ - **Architecture:** Align architecture docs with runtime mode, channel schema, and test
971
+ boundaries.
972
+ - **Quality:** Require explicit user approval to retain legacy behavior during
973
+ development.
811
974
 
812
975
  ### Fixed
813
976
 
814
- - **UI:** Fix active session count calculation to exclude `Question` status and ensure projects reload on session refresh.
977
+ - **UI:** Fix active session count calculation to exclude `Question` status and ensure
978
+ projects reload on session refresh.
815
979
 
816
980
  ### Contributors
817
981
 
@@ -822,19 +986,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
822
986
 
823
987
  ### Added
824
988
 
825
- - **UI:** Handle agent clarification questions in a dedicated question mode with persistent history.
989
+ - **UI:** Handle agent clarification questions in a dedicated question mode with
990
+ persistent history.
826
991
  - **UI:** Highlight `@mention` tokens in chat input.
827
992
  - **UI:** Improve chat input wrapping and viewport scrolling.
828
993
  - **UI:** Align session output wrapping with panel borders.
829
- - **Architecture:** Switch agent output to schema-validated JSON messages and normalize assist protocol output.
830
- - **Architecture:** Inject `FsClient` and `Clock` dependencies into session workflows for better testability.
994
+ - **Architecture:** Switch agent output to schema-validated JSON messages and normalize
995
+ assist protocol output.
996
+ - **Architecture:** Inject `FsClient` and `Clock` dependencies into session workflows
997
+ for better testability.
831
998
  - **Architecture:** Route session stats and filesystem workflows through the app layer.
832
999
  - **Docs:** Add diff-first verification guidance and refine site responsiveness.
833
1000
 
834
1001
  ### Changed
835
1002
 
836
- - **Session:** Move first-turn title generation to the start-turn worker and use plain text.
837
- - **Session:** Filter Codex thought/reasoning text from persisted assistant output and handle it separately during streaming.
1003
+ - **Session:** Move first-turn title generation to the start-turn worker and use plain
1004
+ text.
1005
+ - **Session:** Filter Codex thought/reasoning text from persisted assistant output and
1006
+ handle it separately during streaming.
838
1007
  - **Session:** Remove plan messages from the agent response protocol.
839
1008
  - **Session:** Prefer active sessions for initial selection in the UI.
840
1009
  - **Protocol:** Prefer agent message content over trailing reasoning payloads.
@@ -846,7 +1015,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
846
1015
 
847
1016
  ### Fixed
848
1017
 
849
- - **Session:** Ensure merge cleanup (worktree/branch removal) completes before marking session as `Done`.
1018
+ - **Session:** Ensure merge cleanup (worktree/branch removal) completes before marking
1019
+ session as `Done`.
850
1020
  - **Sync:** Optimize session output synchronization for append-heavy updates.
851
1021
  - **Review:** Parse structured agent responses in focused review assist correctly.
852
1022
 
@@ -859,16 +1029,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
859
1029
 
860
1030
  ### Added
861
1031
 
862
- - **UI:** Add `Ctrl+u` prompt-line deletion and intent-aware confirmations for merge, delete, and quit actions.
863
- - **Settings:** Persist Codex reasoning levels and propagate reasoning identifiers through runtime integrations.
1032
+ - **UI:** Add `Ctrl+u` prompt-line deletion and intent-aware confirmations for merge,
1033
+ delete, and quit actions.
1034
+ - **Settings:** Persist Codex reasoning levels and propagate reasoning identifiers
1035
+ through runtime integrations.
864
1036
  - **Environment:** Allow `AGENTTY_ROOT` to override the default agentty data root.
865
1037
 
866
1038
  ### Changed
867
1039
 
868
- - **UI:** Remove the session list project column and highlight the active project name in the `Sessions` tab.
869
- - **Session:** Preserve live session state during reload and unify child PID propagation across assist/rebase/merge flows.
870
- - **Docs:** Split usage docs into dedicated workflow and keybindings pages and refine rebase conflict guidance.
871
- - **Quality:** Require full validation checks during execution and standardize the full test command to single-threaded runs.
1040
+ - **UI:** Remove the session list project column and highlight the active project name
1041
+ in the `Sessions` tab.
1042
+ - **Session:** Preserve live session state during reload and unify child PID propagation
1043
+ across assist/rebase/merge flows.
1044
+ - **Docs:** Split usage docs into dedicated workflow and keybindings pages and refine
1045
+ rebase conflict guidance.
1046
+ - **Quality:** Require full validation checks during execution and standardize the full
1047
+ test command to single-threaded runs.
872
1048
 
873
1049
  ### Fixed
874
1050
 
@@ -890,8 +1066,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
890
1066
  - **Docs:** Add design and architecture documentation page.
891
1067
  - **Docs:** Add GitHub metadata badges and right-side anchor links.
892
1068
  - **Docs:** Add tooling setup instructions for `uv` and `pre-commit`.
893
- - **Session:** Generate session titles once in background and refine generation instructions.
894
- - **Session:** Persist and resume provider-native conversation identifiers across restarts.
1069
+ - **Session:** Generate session titles once in background and refine generation
1070
+ instructions.
1071
+ - **Session:** Persist and resume provider-native conversation identifiers across
1072
+ restarts.
895
1073
  - **Architecture:** Add structured agent response protocol with metadata delimiter.
896
1074
  - **Architecture:** Unify session turn execution through agent channels.
897
1075
 
@@ -900,7 +1078,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
900
1078
  - **Codex:** Load usage limits lazily and remove usage panel/polling.
901
1079
  - **Codex:** Update model defaults and remove `gpt-5.2-codex`.
902
1080
  - **UI:** Refine info overlay and session list padding.
903
- - **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
1081
+ - **Architecture:** Extract process boundaries (tmux, editor, sync) and inject
1082
+ dependencies (clock, sleeper, git) for better testability.
904
1083
  - **Architecture:** Propagate assistant phase metadata in app-server streams.
905
1084
  - **Sync:** Render sync success details as markdown sections.
906
1085
 
@@ -920,13 +1099,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
920
1099
 
921
1100
  - **UI:** Add Cmd+Backspace current-line deletion in prompt.
922
1101
  - **Settings:** Add default review model and separate default smart/fast model settings.
923
- - **Review:** Enforce read-only constraints for focused review assist and refine prompt structure.
1102
+ - **Review:** Enforce read-only constraints for focused review assist and refine prompt
1103
+ structure.
924
1104
 
925
1105
  ### Changed
926
1106
 
927
1107
  - **UI:** Show diff line-change totals in diff panel title.
928
1108
  - **UI:** Center loading sync text in info overlay and show only OK action.
929
- - **Sync:** Improve sync completion details and info overlay presentation; show newly pulled commit titles.
1109
+ - **Sync:** Improve sync completion details and info overlay presentation; show newly
1110
+ pulled commit titles.
930
1111
  - **Settings:** Rename DevServer setting to OpenCommand.
931
1112
  - **Session:** Session manager replays review history after restart.
932
1113
  - **Tokens:** Read turn usage from thread token usage updates.
@@ -959,8 +1140,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
959
1140
  ### Changed
960
1141
 
961
1142
  - **UI:** Keep info overlay action row visible for multiline messages.
962
- - **UI:** Handle shifted J/K scrolling in diff mode and block actions for canceled sessions.
963
- - **Sync:** Improve sync popup guidance for push authentication failures and render sync success metrics on separate lines.
1143
+ - **UI:** Handle shifted J/K scrolling in diff mode and block actions for canceled
1144
+ sessions.
1145
+ - **Sync:** Improve sync popup guidance for push authentication failures and render sync
1146
+ success metrics on separate lines.
964
1147
  - **Git:** Set non-interactive git prompt defaults for repo commands.
965
1148
  - **Architecture:** Backend command construction uses one build API.
966
1149
 
@@ -999,25 +1182,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
999
1182
 
1000
1183
  ### Added
1001
1184
 
1002
- - **UI:** Add `Shift+Arrow` and `Alt/Shift+Backspace` word-wise cursor movement in prompt mode.
1003
- - **Models:** Stream Gemini assistant chunks to the UI during turns and handle ACP permission requests.
1185
+ - **UI:** Add `Shift+Arrow` and `Alt/Shift+Backspace` word-wise cursor movement in
1186
+ prompt mode.
1187
+ - **Models:** Stream Gemini assistant chunks to the UI during turns and handle ACP
1188
+ permission requests.
1004
1189
  - **Skills:** Add code review skill.
1005
1190
  - **Tests:** Add regression tests and improve coverage with mocked clients.
1006
1191
 
1007
1192
  ### Changed
1008
1193
 
1009
- - **UI:** Project switcher supports `j`/`k` navigation, unfiltered list navigation, and visible selection.
1010
- - **UI:** Report sync outcome details in completion popup and keep confirmation choices visible.
1194
+ - **UI:** Project switcher supports `j`/`k` navigation, unfiltered list navigation, and
1195
+ visible selection.
1196
+ - **UI:** Report sync outcome details in completion popup and keep confirmation choices
1197
+ visible.
1011
1198
  - **UX:** List mode opens canceled sessions on `Enter`.
1012
- - **Models:** Codex resume uses `--last` only without replay history and enforces high reasoning effort.
1199
+ - **Models:** Codex resume uses `--last` only without replay history and enforces high
1200
+ reasoning effort.
1013
1201
  - **Models:** Rename Gemini Pro preview variant to Gemini 3.1.
1014
- - **Session Output:** Keep clean auto-commit silent, report no-op states, and ignore synthetic Codex completion messages.
1015
- - **Architecture:** Centralize git command execution and isolate Codex usage-limit loading.
1016
- - **Docs:** Update documentation to highlight Agentty self-hosting and align docs page widths.
1202
+ - **Session Output:** Keep clean auto-commit silent, report no-op states, and ignore
1203
+ synthetic Codex completion messages.
1204
+ - **Architecture:** Centralize git command execution and isolate Codex usage-limit
1205
+ loading.
1206
+ - **Docs:** Update documentation to highlight Agentty self-hosting and align docs page
1207
+ widths.
1017
1208
 
1018
1209
  ### Fixed
1019
1210
 
1020
- - **Models:** Handle Gemini `session/new` error responses explicitly and ignore empty assistant chunks.
1211
+ - **Models:** Handle Gemini `session/new` error responses explicitly and ignore empty
1212
+ assistant chunks.
1021
1213
  - **UI:** Stabilize site header across routes.
1022
1214
 
1023
1215
  ### Removed
@@ -1041,8 +1233,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1041
1233
 
1042
1234
  - **App:** Resolve main repository roots via git and exclude session worktrees.
1043
1235
  - **UI:** Switch to `Sessions` after project selection and compact footer help actions.
1044
- - **Runtime:** Route app-server turns by provider, include root `AGENTS.md` instructions, and pass session folder/model in Codex payloads.
1045
- - **Docs:** Reorganize site sections, standardize skill headers, and migrate the docs site to compiled Sass styling.
1236
+ - **Runtime:** Route app-server turns by provider, include root `AGENTS.md`
1237
+ instructions, and pass session folder/model in Codex payloads.
1238
+ - **Docs:** Reorganize site sections, standardize skill headers, and migrate the docs
1239
+ site to compiled Sass styling.
1046
1240
  - **Models:** Add support for the `gpt-5.3-codex-spark` model.
1047
1241
 
1048
1242
  ### Fixed
@@ -1119,15 +1313,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1119
1313
 
1120
1314
  ### Added
1121
1315
 
1122
- - **Session Output:** Add toggle to switch between summary and full output for completed sessions.
1316
+ - **Session Output:** Add toggle to switch between summary and full output for completed
1317
+ sessions.
1123
1318
  - **Release:** Require explicit confirmation for version bump type in release skill.
1124
1319
  - **Runtime:** Track active turn ID to prevent race conditions during turn completion.
1125
1320
 
1126
1321
  ### Changed
1127
1322
 
1128
- - **Architecture:** Refactor UI routing and overlays into dedicated modules and centralize frame drawing.
1129
- - **Session:** Defer session cleanup and load at-mention entries asynchronously for faster startup.
1130
- - **Git:** Retry git commands on index lock contention and simplify session view handling.
1323
+ - **Architecture:** Refactor UI routing and overlays into dedicated modules and
1324
+ centralize frame drawing.
1325
+ - **Session:** Defer session cleanup and load at-mention entries asynchronously for
1326
+ faster startup.
1327
+ - **Git:** Retry git commands on index lock contention and simplify session view
1328
+ handling.
1131
1329
  - **Settings:** Only persist default model when the "last-used" option is enabled.
1132
1330
  - **Rebase:** Improve recovery from stale metadata during rebase assist.
1133
1331
  - **Permissions:** Consolidate permission handling into a single "Auto Edit" mode.
@@ -1154,14 +1352,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1154
1352
  - **Stats:** Persist session-creation activity and render by local day.
1155
1353
  - **Stats:** Persist and display all-time model usage and longest session duration.
1156
1354
  - **Help:** Help system uses state-aware action projection.
1157
- - **Dev Server:** Add editable Dev Server setting and run when opening session tmux window.
1355
+ - **Dev Server:** Add editable Dev Server setting and run when opening session tmux
1356
+ window.
1158
1357
  - **UX:** Add `h`/`l` shortcuts for confirmation selection.
1159
1358
 
1160
1359
  ### Changed
1161
1360
 
1162
1361
  - **Architecture:** Refactor agent infrastructure into provider modules.
1163
1362
  - **Architecture:** Split git infrastructure and UI utilities into focused modules.
1164
- - **Architecture:** Inject `GitClient` into app workflows and isolate multi-command git tests.
1363
+ - **Architecture:** Inject `GitClient` into app workflows and isolate multi-command git
1364
+ tests.
1165
1365
  - **Refactor:** Move file indexing into infra module and parse using `pulldown-cmark`.
1166
1366
  - **Refactor:** Rename state, file, and mode modules for clarity.
1167
1367
  - **Refactor:** Move module roots from `mod.rs` to sibling files.
@@ -1170,13 +1370,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1170
1370
  - **Plan:** Improve plan follow-ups and Codex stats limit rendering.
1171
1371
  - **UX:** Use shared confirmation mode for quit and session deletion.
1172
1372
  - **UX:** Confirmation prompts default to "No" selection.
1173
- - **UX:** Hide open-worktree shortcut for done sessions and restrict view actions while running.
1373
+ - **UX:** Hide open-worktree shortcut for done sessions and restrict view actions while
1374
+ running.
1174
1375
  - **Commit:** Preserve a single evolving session commit.
1175
1376
  - **Search:** Prioritize basename matches in file list fuzzy scoring.
1176
1377
 
1177
1378
  ### Fixed
1178
1379
 
1179
- - **Codex:** Fix app-server error status recovery and wait for responses before parsing limits.
1380
+ - **Codex:** Fix app-server error status recovery and wait for responses before parsing
1381
+ limits.
1180
1382
  - **Stability:** Fix launch and lint regressions after rebase.
1181
1383
  - **UI:** Deduplicate list background rendering and reset grouped session table offset.
1182
1384
 
@@ -1197,7 +1399,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1197
1399
  - **Stats:** Add activity heatmap to the Stats tab.
1198
1400
  - **Stats:** Track per-model session usage and render usage summaries.
1199
1401
  - **Settings:** Add settings tab and persist default model.
1200
- - **Diff View:** Split diff view into file list and content panels with file explorer navigation.
1402
+ - **Diff View:** Split diff view into file list and content panels with file explorer
1403
+ navigation.
1201
1404
  - **Diff View:** Render changed files as a tree in the file explorer.
1202
1405
  - **Diff View:** Filter diff view content by selected file explorer item.
1203
1406
  - **Site:** Add agentty.xyz documentation site with GitHub Pages deployment workflow.
@@ -1206,25 +1409,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1206
1409
 
1207
1410
  - **Architecture:** Refactor codebase into domain, infrastructure, and UI state modules.
1208
1411
  - **Architecture:** Move tab state into a dedicated tab manager.
1209
- - **Session List:** Group sessions by merge queue and separate archived sessions with placeholders.
1412
+ - **Session List:** Group sessions by merge queue and separate archived sessions with
1413
+ placeholders.
1210
1414
  - **Session List:** Align session navigation with grouped list order.
1211
1415
  - **Session Output:** Render session output and user prompt blocks as markdown.
1212
- - **Session Output:** Preserve multiline user prompt block spacing and verbatim rendering.
1213
- - **Merge Queue:** Queue session merges in FIFO order and handle queued sessions across app and UI.
1416
+ - **Session Output:** Preserve multiline user prompt block spacing and verbatim
1417
+ rendering.
1418
+ - **Merge Queue:** Queue session merges in FIFO order and handle queued sessions across
1419
+ app and UI.
1214
1420
  - **Merge Queue:** Advance merge queue progression and retry on git index lock failures.
1215
1421
  - **Merge:** Treat already-applied squash merges as successful.
1216
1422
  - **Rebase:** Harden rebase assist loop against partially resolved conflicts.
1217
1423
  - **Output:** Task service batches streamed output before flushing.
1218
1424
  - **Output:** Separate streamed response messages for Codex output spacing.
1219
1425
  - **Models:** Load default session model from persisted setting.
1220
- - **Models:** Use npm semver for version checks and restore version display in status bar.
1426
+ - **Models:** Use npm semver for version checks and restore version display in status
1427
+ bar.
1221
1428
  - **Prompt:** Handle multiline paste and control-key newlines in prompt input.
1222
- - **Site:** Redesign landing page with dark terminal theme, Tailwind CSS v4, and theme selector.
1429
+ - **Site:** Redesign landing page with dark terminal theme, Tailwind CSS v4, and theme
1430
+ selector.
1223
1431
  - **Deps:** Bump dependency versions.
1224
1432
 
1225
1433
  ### Fixed
1226
1434
 
1227
- - **Build:** Fix refactor regressions and restore build stability after module restructure.
1435
+ - **Build:** Fix refactor regressions and restore build stability after module
1436
+ restructure.
1228
1437
 
1229
1438
  ### Contributors
1230
1439
 
@@ -1245,12 +1454,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1245
1454
 
1246
1455
  ### Changed
1247
1456
 
1248
- - **Session Metadata:** Move session status to output panel title and metadata to chat input border.
1457
+ - **Session Metadata:** Move session status to output panel title and metadata to chat
1458
+ input border.
1249
1459
  - **Session Titles:** Persist session title and summary from squash commit message.
1250
1460
  - **Session Titles:** Use full prompt as session title for new sessions.
1251
1461
  - **Session Replay:** Replay session transcript once after model switch.
1252
1462
  - **Git Actions:** Remove session commit count and always show git actions.
1253
- - **Diff View:** Use merge-base for session diff to accurately exclude base branch updates.
1463
+ - **Diff View:** Use merge-base for session diff to accurately exclude base branch
1464
+ updates.
1254
1465
  - **Rebase:** Refactor rebase logic into a reusable workflow.
1255
1466
  - **Database:** Make session token stats non-nullable with zero defaults.
1256
1467
  - **NPM:** Update package name to `agentty` in docs and badges.
@@ -1269,16 +1480,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1269
1480
 
1270
1481
  ### Added
1271
1482
 
1272
- - **Session UX:** Added a delete confirmation mode with selectable actions for session deletion.
1273
- - **Output Streaming:** Added a live single-line progress indicator in chat and spacing before the first streamed response chunk.
1274
- - **Agent Runtime:** Added Codex output streaming during non-interactive runs and follow-up actions for plan mode replies.
1483
+ - **Session UX:** Added a delete confirmation mode with selectable actions for session
1484
+ deletion.
1485
+ - **Output Streaming:** Added a live single-line progress indicator in chat and spacing
1486
+ before the first streamed response chunk.
1487
+ - **Agent Runtime:** Added Codex output streaming during non-interactive runs and
1488
+ follow-up actions for plan mode replies.
1275
1489
 
1276
1490
  ### Changed
1277
1491
 
1278
- - **Git Runtime:** Completed async `git` module transition to `spawn_blocking` and updated call sites.
1279
- - **Session Model:** Refactored sessions to derive `AgentKind` from `AgentModel`, removed the session `agent` column, and migrated legacy PR statuses to `Review`.
1280
- - **Merge/Rebase:** Improved merge and rebase robustness by auto-committing pending changes before merge/rebase and broadening auto-commit assistance handling.
1281
- - **UI:** Improved session list layout with minimum-width columns and title truncation, and added spacing around user input in session chat output.
1492
+ - **Git Runtime:** Completed async `git` module transition to `spawn_blocking` and
1493
+ updated call sites.
1494
+ - **Session Model:** Refactored sessions to derive `AgentKind` from `AgentModel`,
1495
+ removed the session `agent` column, and migrated legacy PR statuses to `Review`.
1496
+ - **Merge/Rebase:** Improved merge and rebase robustness by auto-committing pending
1497
+ changes before merge/rebase and broadening auto-commit assistance handling.
1498
+ - **UI:** Improved session list layout with minimum-width columns and title truncation,
1499
+ and added spacing around user input in session chat output.
1282
1500
  - **Automation:** Split pre-commit workflow into separate autofix and validation phases.
1283
1501
  - **Config:** Removed `npm-scope` from `dist-workspace.toml`.
1284
1502
 
@@ -1296,7 +1514,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1296
1514
 
1297
1515
  ### Added
1298
1516
 
1299
- - **Permissions:** Add per-session permission mode toggle and `Plan` permission mode with denial-gated response parsing.
1517
+ - **Permissions:** Add per-session permission mode toggle and `Plan` permission mode
1518
+ with denial-gated response parsing.
1300
1519
  - **Session Control:** Add `Ctrl+c` to stop running agent sessions.
1301
1520
  - **Prompt History:** Implement prompt history navigation with up/down arrows.
1302
1521
  - **Stats Page:** Add project and model columns to the stats page.
@@ -1307,16 +1526,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1307
1526
 
1308
1527
  ### Changed
1309
1528
 
1310
- - **Architecture:** Refactor app into manager composition with event-driven session state updates and reducer-based routing for git status, PR control, and session mutations.
1311
- - **Architecture:** Split session module and centralize lookups; separate session snapshots from runtime handles.
1312
- - **Session Defaults:** New sessions inherit the latest session's agent, model, and permission mode.
1529
+ - **Architecture:** Refactor app into manager composition with event-driven session
1530
+ state updates and reducer-based routing for git status, PR control, and session
1531
+ mutations.
1532
+ - **Architecture:** Split session module and centralize lookups; separate session
1533
+ snapshots from runtime handles.
1534
+ - **Session Defaults:** New sessions inherit the latest session's agent, model, and
1535
+ permission mode.
1313
1536
  - **File Listing:** Include non-ignored dotfiles in file listing.
1314
- - **Merge Flow:** Run session merges asynchronously, harden merge messaging, and increase merge commit message timeout.
1315
- - **Rebase Flow:** Improve assisted rebase continuation flow and auto-commit pending changes before rebasing.
1537
+ - **Merge Flow:** Run session merges asynchronously, harden merge messaging, and
1538
+ increase merge commit message timeout.
1539
+ - **Rebase Flow:** Improve assisted rebase continuation flow and auto-commit pending
1540
+ changes before rebasing.
1316
1541
  - **Auto-Commit:** Improve auto-commit recovery with agent assistance.
1317
1542
  - **Session Summary:** Backfill and use session summary for finished sessions.
1318
- - **UI:** Move open worktree keybinding to chat view and update session size color palette.
1319
- - **Docs:** Document app module architecture and public API docs; add cargo install instructions to README.
1543
+ - **UI:** Move open worktree keybinding to chat view and update session size color
1544
+ palette.
1545
+ - **Docs:** Document app module architecture and public API docs; add cargo install
1546
+ instructions to README.
1320
1547
 
1321
1548
  ### Removed
1322
1549
 
@@ -1331,16 +1558,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1331
1558
 
1332
1559
  ### Added
1333
1560
 
1334
- - **Review Workflow:** Added an explicit `Merging` session status and a review-session rebase action.
1335
- - **Session UX:** Added read-only controls for done sessions and a `/clear` slash command.
1336
- - **Help UI:** Added a `?` keybinding with an updated overlay and descriptive slash-command menu.
1561
+ - **Review Workflow:** Added an explicit `Merging` session status and a review-session
1562
+ rebase action.
1563
+ - **Session UX:** Added read-only controls for done sessions and a `/clear` slash
1564
+ command.
1565
+ - **Help UI:** Added a `?` keybinding with an updated overlay and descriptive
1566
+ slash-command menu.
1337
1567
 
1338
1568
  ### Changed
1339
1569
 
1340
- - **Session List:** Split session metadata into `Project`, `Model`, and `Status` columns with dynamic width sizing.
1341
- - **Runtime:** Run session commands through per-session workers and restore interrupted sessions into `Review`.
1570
+ - **Session List:** Split session metadata into `Project`, `Model`, and `Status` columns
1571
+ with dynamic width sizing.
1572
+ - **Runtime:** Run session commands through per-session workers and restore interrupted
1573
+ sessions into `Review`.
1342
1574
  - **Stats:** Accumulate token usage over time and preserve stats after `/clear`.
1343
- - **Merge Flow:** Enforce merge commit message formatting and normalize co-author trailer handling.
1575
+ - **Merge Flow:** Enforce merge commit message formatting and normalize co-author
1576
+ trailer handling.
1344
1577
  - **UI Cleanup:** Removed agent labels from session list rows and session chat titles.
1345
1578
 
1346
1579
  ### Contributors
@@ -1353,15 +1586,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1353
1586
 
1354
1587
  ### Added
1355
1588
 
1356
- - **Diff View:** Added diff content wrapping to render long changed lines without truncation.
1357
- - **Diff View:** Added structured parsing with line-number gutters (`old│new`) for unified diffs.
1589
+ - **Diff View:** Added diff content wrapping to render long changed lines without
1590
+ truncation.
1591
+ - **Diff View:** Added structured parsing with line-number gutters (`old│new`) for
1592
+ unified diffs.
1358
1593
  - **Docs:** Added a demo GIF to the README and documented GIF generation with VHS.
1359
1594
 
1360
1595
  ### Changed
1361
1596
 
1362
- - **Diff View:** Compare against each session's base branch so review shows all accumulated changes.
1363
- - **Workflow:** Simplified commit flow by auto-committing after agent iterations and removing manual commit mode.
1364
- - **Release Docs:** Added contributor-list requirements and examples to the release workflow documentation.
1597
+ - **Diff View:** Compare against each session's base branch so review shows all
1598
+ accumulated changes.
1599
+ - **Workflow:** Simplified commit flow by auto-committing after agent iterations and
1600
+ removing manual commit mode.
1601
+ - **Release Docs:** Added contributor-list requirements and examples to the release
1602
+ workflow documentation.
1365
1603
 
1366
1604
  ### Contributors
1367
1605
 
@@ -1372,13 +1610,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1372
1610
  ### Added
1373
1611
 
1374
1612
  - **Onboarding:** Added a full-screen onboarding page shown when no sessions exist.
1375
- - **Tests:** Added onboarding behavior coverage for app state, list mode `Enter` handling, and UI rendering conditions.
1613
+ - **Tests:** Added onboarding behavior coverage for app state, list mode `Enter`
1614
+ handling, and UI rendering conditions.
1376
1615
 
1377
1616
  ### Changed
1378
1617
 
1379
- - **UX:** Pressing `Enter` from the onboarding view now creates a new session and opens prompt mode directly.
1380
- - **Error Handling:** Session creation errors in list mode are now surfaced instead of being silently ignored.
1381
- - **UI:** Kept the footer visible during onboarding and simplified session list rendering to consistently use the table layout.
1618
+ - **UX:** Pressing `Enter` from the onboarding view now creates a new session and opens
1619
+ prompt mode directly.
1620
+ - **Error Handling:** Session creation errors in list mode are now surfaced instead of
1621
+ being silently ignored.
1622
+ - **UI:** Kept the footer visible during onboarding and simplified session list
1623
+ rendering to consistently use the table layout.
1382
1624
 
1383
1625
  ### Contributors
1384
1626
 
@@ -1388,15 +1630,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1388
1630
 
1389
1631
  ### Added
1390
1632
 
1391
- - **UI:** Show session worktree path and branch in the footer bar for better context awareness.
1633
+ - **UI:** Show session worktree path and branch in the footer bar for better context
1634
+ awareness.
1392
1635
  - **UI:** Display commit count in the session chat title.
1393
1636
  - **Stats:** Add session token usage statistics to the Stats page.
1394
1637
 
1395
1638
  ### Changed
1396
1639
 
1397
- - **Persistence:** Moved application data directory from `/var/tmp/.agentty` to `~/.agentty` for better persistence and standard compliance.
1640
+ - **Persistence:** Moved application data directory from `/var/tmp/.agentty` to
1641
+ `~/.agentty` for better persistence and standard compliance.
1398
1642
  - **UX:** Renamed "Roadmap" tab to "Stats" to better reflect its content.
1399
- - **UX:** Use shortened 8-character UUIDs for session folders and git branches to reduce clutter.
1643
+ - **UX:** Use shortened 8-character UUIDs for session folders and git branches to reduce
1644
+ clutter.
1400
1645
  - **Internal:** Standardized session ID variable naming across the codebase.
1401
1646
 
1402
1647
  ### Contributors
@@ -1408,20 +1653,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1408
1653
 
1409
1654
  ### Added
1410
1655
 
1411
- - **Session Status:** Added a `Committing` status to make commit progress explicit in the session lifecycle.
1656
+ - **Session Status:** Added a `Committing` status to make commit progress explicit in
1657
+ the session lifecycle.
1412
1658
 
1413
1659
  ### Changed
1414
1660
 
1415
- - **Persistence:** Persist session prompt/output history in SQLite and load it on startup so chat history survives app reloads.
1416
- - **Session Output:** Parse agent JSON output and display only the response message in session output.
1417
- - **GitHub Integration:** Parse GitHub PR responses using typed serde structs and move GitHub CLI logic into a dedicated `gh` module.
1418
- - **PR Workflow:** Treat closed pull requests as canceled sessions and show a loader while PR creation is in flight.
1419
- - **Commit Flow:** Improve asynchronous session commit handling and remove placeholder commit output in view mode.
1661
+ - **Persistence:** Persist session prompt/output history in SQLite and load it on
1662
+ startup so chat history survives app reloads.
1663
+ - **Session Output:** Parse agent JSON output and display only the response message in
1664
+ session output.
1665
+ - **GitHub Integration:** Parse GitHub PR responses using typed serde structs and move
1666
+ GitHub CLI logic into a dedicated `gh` module.
1667
+ - **PR Workflow:** Treat closed pull requests as canceled sessions and show a loader
1668
+ while PR creation is in flight.
1669
+ - **Commit Flow:** Improve asynchronous session commit handling and remove placeholder
1670
+ commit output in view mode.
1420
1671
  - **Documentation:** Extract git commit guidance into the shared skills documentation.
1421
1672
 
1422
1673
  ### Fixed
1423
1674
 
1424
- - **Tests:** Stabilized merge cleanup testing to avoid environment-dependent blocking during release verification.
1675
+ - **Tests:** Stabilized merge cleanup testing to avoid environment-dependent blocking
1676
+ during release verification.
1425
1677
 
1426
1678
  ### Contributors
1427
1679
 
@@ -1439,11 +1691,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1439
1691
 
1440
1692
  ### Changed
1441
1693
 
1442
- - **Architecture:** Modularized app and runtime into focused modules (`app/` and `runtime/`).
1694
+ - **Architecture:** Modularized app and runtime into focused modules (`app/` and
1695
+ `runtime/`).
1443
1696
  - **Runtime:** Injected event source into the runtime event loop for better testability.
1444
1697
  - **Session:** Made agent and model configurations session-scoped.
1445
- - **Linting:** Refined clippy lint configuration, tightening policies and re-enabling pedantic rules.
1446
- - **Skills:** Symlinked the entire skills directory for agents and refactored release skill.
1698
+ - **Linting:** Refined clippy lint configuration, tightening policies and re-enabling
1699
+ pedantic rules.
1700
+ - **Skills:** Symlinked the entire skills directory for agents and refactored release
1701
+ skill.
1447
1702
  - **Refactor:** Refactored long handlers to enforce clippy line limits.
1448
1703
 
1449
1704
  ### Contributors
@@ -1461,8 +1716,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1461
1716
 
1462
1717
  ### Changed
1463
1718
 
1464
- - **Session Ordering:** Sessions are now strictly ordered by `updated_at` (latest first).
1465
- - **Performance:** Implemented incremental session state refresh to reduce database load.
1719
+ - **Session Ordering:** Sessions are now strictly ordered by `updated_at` (latest
1720
+ first).
1721
+ - **Performance:** Implemented incremental session state refresh to reduce database
1722
+ load.
1466
1723
  - **UX:** Moved prompt cursor by visual wrapped lines for better navigation.
1467
1724
  - **Internal:** Use `String` directly for session IDs in `AppMode` and command flows.
1468
1725
  - **Internal:** Refactored health checks into flat pass/fail checks.
@@ -1512,7 +1769,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1512
1769
 
1513
1770
  ### Added
1514
1771
 
1515
- - **GitHub Integration:** Added 'p' command to create GitHub Pull Requests (draft by default).
1772
+ - **GitHub Integration:** Added 'p' command to create GitHub Pull Requests (draft by
1773
+ default).
1516
1774
  - **GitHub Integration:** Added GitHub CLI health check with nested auth sub-check.
1517
1775
  - **UI:** Centralized icons into a reusable `Icon` enum.
1518
1776
  - **UI:** Improve command palette with arrow navigation and auto-select.
package/README.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # Agentty
2
2
 
3
- ![NPM Version](https://img.shields.io/npm/v/agentty) [![codecov](https://codecov.io/gh/agentty-xyz/agentty/graph/badge.svg?token=YRGKGTM0HP)](https://codecov.io/gh/agentty-xyz/agentty) [![Postsubmit](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml/badge.svg?branch=main)](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml)
3
+ ![NPM Version](https://img.shields.io/npm/v/agentty)
4
+ [![codecov](https://codecov.io/gh/agentty-xyz/agentty/graph/badge.svg?token=YRGKGTM0HP)](https://codecov.io/gh/agentty-xyz/agentty)
5
+ [![Postsubmit](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml/badge.svg?branch=main)](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml)
4
6
 
5
- Agentty is an **ADE (Agentic Development Environment) for structured, controllable AI-assisted software development**. Built with Rust and [Ratatui](https://ratatui.rs), and refined through its own day-to-day use, it brings agents, review, and iteration into one focused terminal workflow.
7
+ Agentty is an **ADE (Agentic Development Environment) for structured, controllable
8
+ AI-assisted software development**. Built with Rust and [Ratatui](https://ratatui.rs),
9
+ and refined through its own day-to-day use, it brings agents, review, and iteration into
10
+ one focused terminal workflow.
6
11
 
7
12
  <p align="center">
8
13
  <img src="docs/site/static/demo/demo.gif" alt="Agentty demo" width="900" />
@@ -54,14 +59,15 @@ agentty --no-update # Launch without automatic updates
54
59
 
55
60
  ## Documentation
56
61
 
57
- Documentation for installation and workflows is available at [agentty.xyz/docs](https://agentty.xyz/docs/).
62
+ Documentation for installation and workflows is available at
63
+ [agentty.xyz/docs](https://agentty.xyz/docs/).
58
64
 
59
65
  > [!WARNING]
66
+ >
60
67
  > Agentty is in active development. While releases follow Semantic Versioning, the
61
68
  > current `0.y.z` series may still introduce breaking changes between releases as
62
- > workflows, integrations, and safeguards evolve. Always review and verify the
63
- > changes Agentty proposes or applies in your repositories before you rely on
64
- > them.
69
+ > workflows, integrations, and safeguards evolve. Always review and verify the changes
70
+ > Agentty proposes or applies in your repositories before you rely on them.
65
71
 
66
72
  ## Contributing
67
73
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.8.4"
26
+ "version": "0.8.9"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "0.8.4"
545
+ "version": "0.8.9"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/agentty-xyz/agentty/releases/download/v0.8.4"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.8.9"
4
4
  ],
5
5
  "bin": {
6
6
  "agentty": "run-agentty.js"
@@ -68,7 +68,7 @@
68
68
  "zipExt": ".tar.xz"
69
69
  }
70
70
  },
71
- "version": "0.8.4",
71
+ "version": "0.8.9",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"