@agentty-xyz/testty 0.13.6 → 0.13.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 +41 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,47 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.13.7] - 2026-07-27
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add `claude-opus-5` to the Claude model picker.
|
|
15
|
+
- agentty: add workspace personalities, personality-aware session prompts, source
|
|
16
|
+
details in slash-command results, and a code-improver agent.
|
|
17
|
+
- agentty: add a frontend-neutral session lifecycle API through the new `ag-session`
|
|
18
|
+
crate.
|
|
19
|
+
- agentty: render cyclic Mermaid flowcharts in markdown previews.
|
|
20
|
+
- ag-harness: add the initial harness crate for backend compatibility testing.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- agentty: preserve session diffs across refreshes and forks, resolve stacked review
|
|
25
|
+
parents from their worktrees, and allow slash commands while working on those parents.
|
|
26
|
+
- agentty: improve prompt file mentions, highlighted file lookups, session rendering,
|
|
27
|
+
and personality summary loading.
|
|
28
|
+
- agentty: preserve manually linked review-request metadata and handle outdated review
|
|
29
|
+
threads and explicit no-change outcomes.
|
|
30
|
+
- ag-agent: parse Claude structured output, pass reasoning effort to Antigravity, and
|
|
31
|
+
refresh npm-global Gemini CLI installations.
|
|
32
|
+
- ci: move E2E tooling into a verified Podman container, compile-check database queries,
|
|
33
|
+
and update grouped GitHub Actions dependencies.
|
|
34
|
+
- docs: rename the `README.md` project title to Agentty ADE.
|
|
35
|
+
- deps: update `agent-client-protocol` to `1.3.0`, `async-trait` to `0.1.91`, `clap` to
|
|
36
|
+
`4.6.4`, `ignore` to `0.4.31`, `serde_json` to `1.0.151`, `thiserror` to `2.0.19`,
|
|
37
|
+
`time` to `0.3.54`, `tokio` to `1.53.1`, and `x11rb` to `0.14.0`.
|
|
38
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.7`.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- agentty: keep `Esc` from ending question turns and correct the draft continuation
|
|
43
|
+
shortcut.
|
|
44
|
+
|
|
45
|
+
### Contributors
|
|
46
|
+
|
|
47
|
+
- @andagaev
|
|
48
|
+
- @dependabot
|
|
49
|
+
- @minev-dev
|
|
50
|
+
|
|
10
51
|
## [v0.13.6] - 2026-07-22
|
|
11
52
|
|
|
12
53
|
### Added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "@agentty-xyz/testty",
|
|
26
|
-
"version": "0.13.
|
|
26
|
+
"version": "0.13.7"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.13.
|
|
545
|
+
"version": "0.13.7"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.7"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"testty": "run-testty.js"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"zipExt": ".tar.xz"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
-
"version": "0.13.
|
|
80
|
+
"version": "0.13.7",
|
|
81
81
|
"volta": {
|
|
82
82
|
"node": "18.14.1",
|
|
83
83
|
"npm": "9.5.0"
|