@agentty-xyz/testty 0.15.15 → 0.16.1
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 +73 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,79 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.16.1] - 2026-09-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `ag-harness`: sandboxed Bash execution with durable command recovery and a public
|
|
15
|
+
execution contract that lets hosts select or plug in their own Bash executor.
|
|
16
|
+
- `ag-harness`: ordered text and image turn input, model-declared context budgets, and
|
|
17
|
+
history compaction into replayable session checkpoints.
|
|
18
|
+
- `ag-harness`: durable session model switching, registry-based model construction,
|
|
19
|
+
durable host-request recovery, controlled turn cancellation, and injectable
|
|
20
|
+
transactional and process-local session stores.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- `agentty`: replace Opus 5 and GPT-5.6 Sol/Luna with `claude-opus-5-5`, `gpt-6-sol`,
|
|
25
|
+
and `gpt-6-luna`, including saved selections and defaults.
|
|
26
|
+
- `agentty`: centralize execution contracts, enforce worker-mediated sessions, and
|
|
27
|
+
harden agent workflows with typed contracts and bounded evidence.
|
|
28
|
+
- `agentty`: persist focused reviews so they resume safely, and centralize session
|
|
29
|
+
channel composition.
|
|
30
|
+
- `ag-harness`: separate persistence from filesystem-effect settlement and condense
|
|
31
|
+
crate documentation into concise overviews.
|
|
32
|
+
- workspace: update the Rust toolchain, dependencies, GitHub Actions, and the E2E CI
|
|
33
|
+
image.
|
|
34
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.16.1`.
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- `ag-harness`: restore Linux workspace write grants through Landlock confinement.
|
|
39
|
+
- workspace: unblock the containerized E2E run and publish the locally verified E2E
|
|
40
|
+
image.
|
|
41
|
+
|
|
42
|
+
### Contributors
|
|
43
|
+
|
|
44
|
+
- @andagaev
|
|
45
|
+
- @dependabot
|
|
46
|
+
- @minev-dev
|
|
47
|
+
|
|
48
|
+
## [v0.16.0] - 2026-09-16
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
|
|
52
|
+
- `ag-runtime` and `ag-worker`: reusable execution contracts and durable run scheduling.
|
|
53
|
+
- `ag-harness`: per-turn options, pinned repository comparisons, and durable write
|
|
54
|
+
journals.
|
|
55
|
+
- `ag-harness`: internal execution contracts and process supervision.
|
|
56
|
+
- `agentty`: focused-review progress reporting and automatic repair of pre-commit
|
|
57
|
+
failures during assisted rebases.
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- `agentty`: route model runs through worker-owned execution with bounded concurrency,
|
|
62
|
+
recovery, and cancellation.
|
|
63
|
+
- `agentty`: pool focused-review runtimes, batch large diffs, and consolidate findings
|
|
64
|
+
across files while preserving partial results.
|
|
65
|
+
- `ag-harness`: retain captured session configuration and fence persistence with owner
|
|
66
|
+
tokens and leases.
|
|
67
|
+
- workspace: strengthen test coverage, instruction validation, and development guidance;
|
|
68
|
+
update the Rust toolchain, dependencies, and GitHub Actions.
|
|
69
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.16.0`.
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
|
|
73
|
+
- `agentty`: preserve operation ownership and process cleanup during cancellation.
|
|
74
|
+
- workspace: preserve lowercase, zero-padded SHA-256 hash encoding across dependency
|
|
75
|
+
upgrades.
|
|
76
|
+
|
|
77
|
+
### Contributors
|
|
78
|
+
|
|
79
|
+
- @andagaev
|
|
80
|
+
- @dependabot
|
|
81
|
+
- @minev-dev
|
|
82
|
+
|
|
10
83
|
## [v0.15.15] - 2026-09-10
|
|
11
84
|
|
|
12
85
|
### 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.16.1"
|
|
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.16.1"
|
|
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.16.1"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"testty": "run-testty.js"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"detect-libc": "^2.1.2",
|
|
17
17
|
"rimraf": "^6.1.3"
|
|
18
18
|
},
|
|
19
|
-
"description": "
|
|
19
|
+
"description": "Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.",
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"prettier": "^3.8.1"
|
|
22
22
|
},
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"zipExt": ".tar.xz"
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
|
-
"version": "0.
|
|
79
|
+
"version": "0.16.1",
|
|
80
80
|
"volta": {
|
|
81
81
|
"node": "18.14.1",
|
|
82
82
|
"npm": "9.5.0"
|