agentty 0.4.5 → 0.4.7
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 +60 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,66 @@ 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.7] - 2026-03-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **UI:** Add `Ctrl+u` prompt-line deletion and intent-aware confirmations for merge, delete, and quit actions.
|
|
13
|
+
- **Settings:** Persist Codex reasoning levels and propagate reasoning identifiers through runtime integrations.
|
|
14
|
+
- **Environment:** Allow `AGENTTY_ROOT` to override the default agentty data root.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **UI:** Remove the session list project column and highlight the active project name in the `Sessions` tab.
|
|
19
|
+
- **Session:** Preserve live session state during reload and unify child PID propagation across assist/rebase/merge flows.
|
|
20
|
+
- **Docs:** Split usage docs into dedicated workflow and keybindings pages and refine rebase conflict guidance.
|
|
21
|
+
- **Quality:** Require full validation checks during execution and standardize the full test command to single-threaded runs.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **Tests:** Refresh stale assertions after settings/help text updates.
|
|
26
|
+
|
|
27
|
+
### Contributors
|
|
28
|
+
|
|
29
|
+
- @minev-dev
|
|
30
|
+
- @andagaev
|
|
31
|
+
|
|
32
|
+
## [v0.4.6] - 2026-03-02
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- **UI:** Add structured question-answer flow between agents and users.
|
|
37
|
+
- **UI:** Add stable paragraph anchor links and dual sidebars in docs.
|
|
38
|
+
- **UI:** Colorize added/removed line counts in diff page title.
|
|
39
|
+
- **UI:** Project list highlights active project.
|
|
40
|
+
- **Docs:** Add design and architecture documentation page.
|
|
41
|
+
- **Docs:** Add GitHub metadata badges and right-side anchor links.
|
|
42
|
+
- **Docs:** Add tooling setup instructions for `uv` and `pre-commit`.
|
|
43
|
+
- **Session:** Generate session titles once in background and refine generation instructions.
|
|
44
|
+
- **Session:** Persist and resume provider-native conversation identifiers across restarts.
|
|
45
|
+
- **Architecture:** Add structured agent response protocol with metadata delimiter.
|
|
46
|
+
- **Architecture:** Unify session turn execution through agent channels.
|
|
47
|
+
|
|
48
|
+
### Changed
|
|
49
|
+
|
|
50
|
+
- **Codex:** Load usage limits lazily and remove usage panel/polling.
|
|
51
|
+
- **Codex:** Update model defaults and remove `gpt-5.2-codex`.
|
|
52
|
+
- **UI:** Open `nvim` in read-only mode.
|
|
53
|
+
- **UI:** Refine info overlay and session list padding.
|
|
54
|
+
- **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
|
|
55
|
+
- **Architecture:** Propagate assistant phase metadata in app-server streams.
|
|
56
|
+
- **Sync:** Render sync success details as markdown sections.
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- **Session:** Harden runtime shutdown I/O and handle Claude partial streaming.
|
|
61
|
+
- **UI:** Harden diff selection fallback and simplify sync commit title formatting.
|
|
62
|
+
|
|
63
|
+
### Contributors
|
|
64
|
+
|
|
65
|
+
- @minev-dev
|
|
66
|
+
- @andagaev
|
|
67
|
+
|
|
8
68
|
## [v0.4.5] - 2026-03-01
|
|
9
69
|
|
|
10
70
|
### Added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "agentty",
|
|
26
|
-
"version": "0.4.
|
|
26
|
+
"version": "0.4.7"
|
|
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.
|
|
518
|
+
"version": "0.4.7"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.7",
|
|
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.
|
|
69
|
+
"version": "0.4.7",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|