agentty 0.4.3 → 0.4.5

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,61 @@ 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.5] - 2026-03-01
9
+
10
+ ### Added
11
+
12
+ - **UI:** Support opening nvim (`e` key) from session screens preserving terminal input flow.
13
+ - **UI:** Add Cmd+Backspace current-line deletion in prompt.
14
+ - **Settings:** Add default review model and separate default smart/fast model settings.
15
+ - **Review:** Enforce read-only constraints for focused review assist and refine prompt structure.
16
+
17
+ ### Changed
18
+
19
+ - **UI:** Show diff line-change totals in diff panel title.
20
+ - **UI:** Center loading sync text in info overlay and show only OK action.
21
+ - **Sync:** Improve sync completion details and info overlay presentation; show newly pulled commit titles.
22
+ - **Settings:** Rename DevServer setting to OpenCommand.
23
+ - **Session:** Session manager replays review history after restart.
24
+ - **Tokens:** Read turn usage from thread token usage updates.
25
+ - **Codex:** Adjust auto-compaction threshold by model.
26
+ - **Docs:** Style docs tables with borders, hover states, and responsive scrolling.
27
+
28
+ ### Removed
29
+
30
+ - **Backend:** Remove env-based backend selection (`AGENTTY_AGENT`).
31
+ - **Startup:** Remove lock module from runtime startup.
32
+
33
+ ### Fixed
34
+
35
+ - **Review:** Prevent runtime leaks and simplify focused review handling.
36
+
37
+ ### Contributors
38
+
39
+ - @minev-dev
40
+ - @andagaev
41
+
42
+ ## [v0.4.4] - 2026-02-28
43
+
44
+ ### Added
45
+
46
+ - **UI:** Add focused review mode to session view and diff mode.
47
+ - **Docs:** Add MCP docs section, Context7 setup guide, and workflow documentation.
48
+ - **Codex:** Enable live web search and network access.
49
+ - **Docs:** Redirect docs landing page to getting started overview.
50
+
51
+ ### Changed
52
+
53
+ - **UI:** Keep info overlay action row visible for multiline messages.
54
+ - **UI:** Handle shifted J/K scrolling in diff mode and block actions for canceled sessions.
55
+ - **Sync:** Improve sync popup guidance for push authentication failures and render sync success metrics on separate lines.
56
+ - **Git:** Set non-interactive git prompt defaults for repo commands.
57
+ - **Architecture:** Backend command construction uses one build API.
58
+
59
+ ### Contributors
60
+
61
+ - @minev-dev
62
+
8
63
  ## [v0.4.3] - 2026-02-26
9
64
 
10
65
  ### Added
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.4.3"
26
+ "version": "0.4.5"
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.3"
518
+ "version": "0.4.5"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.3",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.5",
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.3",
69
+ "version": "0.4.5",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"