@agentty-xyz/testty 0.13.7 → 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 +39 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,45 @@ 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
|
+
|
|
10
49
|
## [v0.13.7] - 2026-07-27
|
|
11
50
|
|
|
12
51
|
### 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"
|