agentty 0.4.4 → 0.4.6

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
@@ -5,6 +5,76 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v0.4.6] - 2026-03-02
9
+
10
+ ### Added
11
+
12
+ - **UI:** Add structured question-answer flow between agents and users.
13
+ - **UI:** Add stable paragraph anchor links and dual sidebars in docs.
14
+ - **UI:** Colorize added/removed line counts in diff page title.
15
+ - **UI:** Project list highlights active project.
16
+ - **Docs:** Add design and architecture documentation page.
17
+ - **Docs:** Add GitHub metadata badges and right-side anchor links.
18
+ - **Docs:** Add tooling setup instructions for `uv` and `pre-commit`.
19
+ - **Session:** Generate session titles once in background and refine generation instructions.
20
+ - **Session:** Persist and resume provider-native conversation identifiers across restarts.
21
+ - **Architecture:** Add structured agent response protocol with metadata delimiter.
22
+ - **Architecture:** Unify session turn execution through agent channels.
23
+
24
+ ### Changed
25
+
26
+ - **Codex:** Load usage limits lazily and remove usage panel/polling.
27
+ - **Codex:** Update model defaults and remove `gpt-5.2-codex`.
28
+ - **UI:** Open `nvim` in read-only mode.
29
+ - **UI:** Refine info overlay and session list padding.
30
+ - **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
31
+ - **Architecture:** Propagate assistant phase metadata in app-server streams.
32
+ - **Sync:** Render sync success details as markdown sections.
33
+
34
+ ### Fixed
35
+
36
+ - **Session:** Harden runtime shutdown I/O and handle Claude partial streaming.
37
+ - **UI:** Harden diff selection fallback and simplify sync commit title formatting.
38
+
39
+ ### Contributors
40
+
41
+ - @minev-dev
42
+ - @andagaev
43
+
44
+ ## [v0.4.5] - 2026-03-01
45
+
46
+ ### Added
47
+
48
+ - **UI:** Support opening nvim (`e` key) from session screens preserving terminal input flow.
49
+ - **UI:** Add Cmd+Backspace current-line deletion in prompt.
50
+ - **Settings:** Add default review model and separate default smart/fast model settings.
51
+ - **Review:** Enforce read-only constraints for focused review assist and refine prompt structure.
52
+
53
+ ### Changed
54
+
55
+ - **UI:** Show diff line-change totals in diff panel title.
56
+ - **UI:** Center loading sync text in info overlay and show only OK action.
57
+ - **Sync:** Improve sync completion details and info overlay presentation; show newly pulled commit titles.
58
+ - **Settings:** Rename DevServer setting to OpenCommand.
59
+ - **Session:** Session manager replays review history after restart.
60
+ - **Tokens:** Read turn usage from thread token usage updates.
61
+ - **Codex:** Adjust auto-compaction threshold by model.
62
+ - **Docs:** Style docs tables with borders, hover states, and responsive scrolling.
63
+
64
+ ### Removed
65
+
66
+ - **Backend:** Remove env-based backend selection (`AGENTTY_AGENT`).
67
+ - **Startup:** Remove lock module from runtime startup.
68
+
69
+ ### Fixed
70
+
71
+ - **Review:** Prevent runtime leaks and simplify focused review handling.
72
+
73
+ ### Contributors
74
+
75
+ - @minev-dev
76
+ - @andagaev
77
+
8
78
  ## [v0.4.4] - 2026-02-28
9
79
 
10
80
  ### Added
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.4.4"
26
+ "version": "0.4.6"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.4.4"
518
+ "version": "0.4.6"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.4",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.6",
3
3
  "bin": {
4
4
  "agentty": "run-agentty.js"
5
5
  },
@@ -66,7 +66,7 @@
66
66
  "zipExt": ".tar.xz"
67
67
  }
68
68
  },
69
- "version": "0.4.4",
69
+ "version": "0.4.6",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"