agentty 0.6.8 → 0.6.10
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 +45 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,51 @@ 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.10] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add a docs-site blog section.
|
|
13
|
+
- Add roadmap metadata requirements for step headings, IDs, assignees, and claim commits.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Rename the Rust-native TUI E2E crate from `ag-tui-test` to `testty` and prepare it for crates.io publishing.
|
|
18
|
+
- Remove the manual review-request sync flow and keep `end_turn_no_answer` aligned with `Review`.
|
|
19
|
+
- Refocus implementation-roadmap guidance on active follow-up work and simpler step operations.
|
|
20
|
+
- Remove `#[ignore]` gates from E2E tests.
|
|
21
|
+
- Clarify session commit prompt guidance to consult repository commit conventions.
|
|
22
|
+
|
|
23
|
+
### Contributors
|
|
24
|
+
|
|
25
|
+
- @andagaev
|
|
26
|
+
- @minev-dev
|
|
27
|
+
|
|
28
|
+
## [v0.6.9] - 2026-03-25
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- Add `s` keybinding to sync review request status in session view.
|
|
33
|
+
- Add `testty` TUI E2E testing framework with PTY-driven semantic assertions.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Migrate git infrastructure module from `Result<..., String>` to typed `GitError`.
|
|
38
|
+
- Tolerate extra fields in protocol deserialization while keeping schema strict.
|
|
39
|
+
- Improve protocol parse diagnostics.
|
|
40
|
+
- Separate summary transcript from streamed output.
|
|
41
|
+
- Strip markdown fences in protocol parser.
|
|
42
|
+
- Dim question panel when chat input is focused.
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- Fix wrapped plain-text utility output test assertion after diagnostics refactor.
|
|
47
|
+
|
|
48
|
+
### Contributors
|
|
49
|
+
|
|
50
|
+
- @andagaev
|
|
51
|
+
- @minev-dev
|
|
52
|
+
|
|
8
53
|
## [v0.6.8] - 2026-03-19
|
|
9
54
|
|
|
10
55
|
### 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.10"
|
|
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.10"
|
|
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.10",
|
|
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.10",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|