agentty 0.6.5 → 0.6.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 +48 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,54 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v0.6.7] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add session follow-up task implementation plan.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Require strict protocol JSON for Codex, utility, and all agent responses.
|
|
17
|
+
- Prefer structured Gemini completion payload and accept wire-type defaults.
|
|
18
|
+
- Track published session branch git statuses across refreshes.
|
|
19
|
+
- Support keyboard enhancement flags in terminal runtime.
|
|
20
|
+
- Optimize session activity and refresh queries.
|
|
21
|
+
- Limit home-directory project scans to startup.
|
|
22
|
+
- Clarify that agents do not create commits automatically.
|
|
23
|
+
|
|
24
|
+
### Contributors
|
|
25
|
+
|
|
26
|
+
- @minev-dev
|
|
27
|
+
|
|
28
|
+
## [v0.6.6] - 2026-03-18
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- Add VHS-based E2E testing framework with screenshot comparison.
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- Refresh session workflow and settings docs.
|
|
37
|
+
- Keep tracked upstream branches current in the footer.
|
|
38
|
+
- Keep prompt file index unbounded within max depth.
|
|
39
|
+
- Keep publish branch shortcut keys in the input field.
|
|
40
|
+
- Extract shared input key utilities and add emacs-style editing to question input.
|
|
41
|
+
- Document shared-host test thread budget.
|
|
42
|
+
|
|
43
|
+
### Refactored
|
|
44
|
+
|
|
45
|
+
- Introduce typed `DbError` for database operations.
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- Confirm review session cancellation.
|
|
50
|
+
|
|
51
|
+
### Contributors
|
|
52
|
+
|
|
53
|
+
- @andagaev
|
|
54
|
+
- @minev-dev
|
|
55
|
+
|
|
8
56
|
## [v0.6.5] - 2026-03-17
|
|
9
57
|
|
|
10
58
|
### Added
|
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.6.
|
|
26
|
+
"version": "0.6.7"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.6.
|
|
518
|
+
"version": "0.6.7"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.7",
|
|
3
3
|
"bin": {
|
|
4
4
|
"agentty": "run-agentty.js"
|
|
5
5
|
},
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"zipExt": ".tar.xz"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
-
"version": "0.6.
|
|
69
|
+
"version": "0.6.7",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|