agentty 0.9.1 → 0.9.2
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 +34 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,40 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.9.2] - 2026-05-20
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add `/qe:check` as a prompt slash command that sends a checked-in
|
|
15
|
+
quality-enforcement audit prompt instead of running an in-process audit engine.
|
|
16
|
+
- Add reusable GitHub Actions OIDC publishing workflow support for npm release jobs.
|
|
17
|
+
- testty: split the README into a quick-start landing page plus focused docs for
|
|
18
|
+
assertions, frame diffing, journeys, proof reports, scenarios, snapshots, and
|
|
19
|
+
upgrades.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- agentty: switch Gemini prompt delivery from standard input to argument transport.
|
|
24
|
+
- agentty: warn on main-checkout drift and require clean preflight state before merge
|
|
25
|
+
workflows continue.
|
|
26
|
+
- agentty: split requested reviews into personal and group sections.
|
|
27
|
+
- agentty: refactor session state, prompt routing, UI formatting, and database access
|
|
28
|
+
into more focused modules.
|
|
29
|
+
- Update workspace guidance, docs, roadmap slices, and validation expectations.
|
|
30
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.2`.
|
|
31
|
+
- Bump dependency versions, including `askama` to `0.16.0` and `pulldown-cmark` to
|
|
32
|
+
`0.13.4`.
|
|
33
|
+
|
|
34
|
+
### Removed
|
|
35
|
+
|
|
36
|
+
- agentty: remove the `Stats` tab and provider usage polling.
|
|
37
|
+
|
|
38
|
+
### Contributors
|
|
39
|
+
|
|
40
|
+
- @andagaev
|
|
41
|
+
- @dependabot
|
|
42
|
+
- @minev-dev
|
|
43
|
+
|
|
10
44
|
## [v0.9.1] - 2026-05-02
|
|
11
45
|
|
|
12
46
|
### Changed
|
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.9.
|
|
26
|
+
"version": "0.9.2"
|
|
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.9.
|
|
545
|
+
"version": "0.9.2"
|
|
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.9.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.9.2"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentty": "run-agentty.js"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"zipExt": ".tar.xz"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"version": "0.9.
|
|
71
|
+
"version": "0.9.2",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|