@agentty-xyz/testty 0.13.6 → 0.14.0
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 +80 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,86 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.14.0] - 2026-08-03
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: support orchestrated child-session workflows with validated subtask plans,
|
|
15
|
+
bounded scheduling, status propagation, and session-tree navigation.
|
|
16
|
+
- agentty: add per-session response-speed controls and role-specific reasoning levels
|
|
17
|
+
for model defaults.
|
|
18
|
+
- agentty: add a `grilling` skill for explicitly requested, one-question-at-a-time plan
|
|
19
|
+
and decision stress tests.
|
|
20
|
+
- ag-harness: add a Qwen model adapter and schema-validated structured model output with
|
|
21
|
+
bounded responses and diagnostics.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- agentty: route session operations through a foreground runtime, separate orchestration
|
|
26
|
+
policy from application runtime, and centralize UI surface routing and terminal input
|
|
27
|
+
handling.
|
|
28
|
+
- agentty: use native Antigravity stream output, retire obsolete model identifiers, and
|
|
29
|
+
migrate active sessions and persisted model selections to supported replacements.
|
|
30
|
+
- agentty: hydrate lazy transcripts from persisted history, refine provisional titles
|
|
31
|
+
after actionable intent, and allow canceled sessions to continue.
|
|
32
|
+
- agentty: complete merged stacked reviews after manual sync and keep post-sync workflow
|
|
33
|
+
statuses chronological.
|
|
34
|
+
- agentty: wrap slash-command selection, navigate directly to model selector rows, use
|
|
35
|
+
lowercase `c` to continue done sessions, and stack over-wide Mermaid graphs
|
|
36
|
+
vertically.
|
|
37
|
+
- agentty: harden persistence and external-command handling, validate stored lifecycle
|
|
38
|
+
state, and surface terminal reader and task-shutdown failures.
|
|
39
|
+
- deps: update `agent-client-protocol` to `2.0.0`, `base64` to `0.23.0`, `jsonschema` to
|
|
40
|
+
`0.49.1`, `tokio-util` to `0.7.19`, and pinned CI actions.
|
|
41
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.14.0`.
|
|
42
|
+
|
|
43
|
+
### Contributors
|
|
44
|
+
|
|
45
|
+
- @andagaev
|
|
46
|
+
- @dependabot
|
|
47
|
+
- @minev-dev
|
|
48
|
+
|
|
49
|
+
## [v0.13.7] - 2026-07-27
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
|
|
53
|
+
- agentty: add `claude-opus-5` to the Claude model picker.
|
|
54
|
+
- agentty: add workspace personalities, personality-aware session prompts, source
|
|
55
|
+
details in slash-command results, and a code-improver agent.
|
|
56
|
+
- agentty: add a frontend-neutral session lifecycle API through the new `ag-session`
|
|
57
|
+
crate.
|
|
58
|
+
- agentty: render cyclic Mermaid flowcharts in markdown previews.
|
|
59
|
+
- ag-harness: add the initial harness crate for backend compatibility testing.
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
|
|
63
|
+
- agentty: preserve session diffs across refreshes and forks, resolve stacked review
|
|
64
|
+
parents from their worktrees, and allow slash commands while working on those parents.
|
|
65
|
+
- agentty: improve prompt file mentions, highlighted file lookups, session rendering,
|
|
66
|
+
and personality summary loading.
|
|
67
|
+
- agentty: preserve manually linked review-request metadata and handle outdated review
|
|
68
|
+
threads and explicit no-change outcomes.
|
|
69
|
+
- ag-agent: parse Claude structured output, pass reasoning effort to Antigravity, and
|
|
70
|
+
refresh npm-global Gemini CLI installations.
|
|
71
|
+
- ci: move E2E tooling into a verified Podman container, compile-check database queries,
|
|
72
|
+
and update grouped GitHub Actions dependencies.
|
|
73
|
+
- docs: rename the `README.md` project title to Agentty ADE.
|
|
74
|
+
- deps: update `agent-client-protocol` to `1.3.0`, `async-trait` to `0.1.91`, `clap` to
|
|
75
|
+
`4.6.4`, `ignore` to `0.4.31`, `serde_json` to `1.0.151`, `thiserror` to `2.0.19`,
|
|
76
|
+
`time` to `0.3.54`, `tokio` to `1.53.1`, and `x11rb` to `0.14.0`.
|
|
77
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.7`.
|
|
78
|
+
|
|
79
|
+
### Fixed
|
|
80
|
+
|
|
81
|
+
- agentty: keep `Esc` from ending question turns and correct the draft continuation
|
|
82
|
+
shortcut.
|
|
83
|
+
|
|
84
|
+
### Contributors
|
|
85
|
+
|
|
86
|
+
- @andagaev
|
|
87
|
+
- @dependabot
|
|
88
|
+
- @minev-dev
|
|
89
|
+
|
|
10
90
|
## [v0.13.6] - 2026-07-22
|
|
11
91
|
|
|
12
92
|
### 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.
|
|
26
|
+
"version": "0.14.0"
|
|
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.
|
|
545
|
+
"version": "0.14.0"
|
|
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.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.14.0"
|
|
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.
|
|
80
|
+
"version": "0.14.0",
|
|
81
81
|
"volta": {
|
|
82
82
|
"node": "18.14.1",
|
|
83
83
|
"npm": "9.5.0"
|