agentty 0.6.7 → 0.6.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 +46 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,52 @@ 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.6.9] - 2026-03-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add `s` keybinding to sync review request status in session view.
|
|
13
|
+
- Add `ag-tui-test` TUI E2E testing framework with PTY-driven semantic assertions.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Migrate git infrastructure module from `Result<..., String>` to typed `GitError`.
|
|
18
|
+
- Tolerate extra fields in protocol deserialization while keeping schema strict.
|
|
19
|
+
- Improve protocol parse diagnostics.
|
|
20
|
+
- Separate summary transcript from streamed output.
|
|
21
|
+
- Strip markdown fences in protocol parser.
|
|
22
|
+
- Dim question panel when chat input is focused.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- Fix wrapped plain-text utility output test assertion after diagnostics refactor.
|
|
27
|
+
|
|
28
|
+
### Contributors
|
|
29
|
+
|
|
30
|
+
- @andagaev
|
|
31
|
+
- @minev-dev
|
|
32
|
+
|
|
33
|
+
## [v0.6.8] - 2026-03-19
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- Add a scrollbar to long diffs.
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- Change Esc in question mode to end the turn instead of skipping one question.
|
|
42
|
+
- Clarify read-only git command guidance in agent prompts.
|
|
43
|
+
- Refine Rust-native TUI E2E framework plan.
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- Recover trailing protocol payload from wrapped provider output.
|
|
48
|
+
|
|
49
|
+
### Contributors
|
|
50
|
+
|
|
51
|
+
- @andagaev
|
|
52
|
+
- @minev-dev
|
|
53
|
+
|
|
8
54
|
## [v0.6.7] - 2026-03-19
|
|
9
55
|
|
|
10
56
|
### 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.6.
|
|
26
|
+
"version": "0.6.9"
|
|
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.6.
|
|
518
|
+
"version": "0.6.9"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.9",
|
|
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.6.
|
|
69
|
+
"version": "0.6.9",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|