agentty 0.6.12 → 0.7.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 +63 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,69 @@ 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.7.1] - 2026-04-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add session-scoped reasoning overrides.
|
|
13
|
+
- Add conditional Tasks tab for roadmap-enabled projects.
|
|
14
|
+
- Add interactive Mermaid controls and fit behavior to docs pages.
|
|
15
|
+
- Add prefilled slash composer from session view.
|
|
16
|
+
- Add transient `AgentReview` status for focused review generation.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Trigger immediate git status refresh after successful workflow outcomes.
|
|
21
|
+
- Synchronize staged draft titles with active prompt snapshots.
|
|
22
|
+
- Rename slash prompt action to commands menu.
|
|
23
|
+
- Improve selected session list status contrast.
|
|
24
|
+
- Constrain draft prompt routing to new sessions.
|
|
25
|
+
- Normalize @lookups for agent delivery while preserving raw prompt text.
|
|
26
|
+
- Refactor prompt composer into shared domain module.
|
|
27
|
+
- Preserve focused review when exiting diff mode and suppress rebase during `AgentReview`.
|
|
28
|
+
- Refine docs table wrapping, runtime-flow guidance, and session workflow diagrams.
|
|
29
|
+
- Adopt promotion-based roadmap ownership process.
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Fix legacy Codex usage migration (`gpt-5.3-codex` to `gpt-5.4`).
|
|
34
|
+
- Handle Gemini ACP usage parsing for additional quota payload formats.
|
|
35
|
+
|
|
36
|
+
### Dependencies
|
|
37
|
+
|
|
38
|
+
- Bump `agent-client-protocol` from 0.10.3 to 0.10.4.
|
|
39
|
+
|
|
40
|
+
### Contributors
|
|
41
|
+
|
|
42
|
+
- @dependabot[bot]
|
|
43
|
+
- @minev-dev
|
|
44
|
+
|
|
45
|
+
## [v0.7.0] - 2026-04-02
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
|
|
49
|
+
- Add diff preview from question mode with state snapshot restoration.
|
|
50
|
+
- Add protocol-repair retry for malformed agent responses.
|
|
51
|
+
- Add session lifecycle E2E tests and shared git/session helpers.
|
|
52
|
+
- Add quality check guidance to protocol instructions.
|
|
53
|
+
- Add VHS feature GIF generation from E2E tests with content-hash caching.
|
|
54
|
+
|
|
55
|
+
### Changed
|
|
56
|
+
|
|
57
|
+
- Keep completed-turn metadata above active streaming prompt.
|
|
58
|
+
- Batch reducer handling of repeated `AgentResponseReceived` events.
|
|
59
|
+
- Refine branch push authentication guidance and cancel summary handling.
|
|
60
|
+
- Cache turn applied state in reducer batch.
|
|
61
|
+
- Modularize app startup, review, and persistence helpers.
|
|
62
|
+
- Refactor app-server runtimes into focused modules.
|
|
63
|
+
- Apply reducer projection for completed turns.
|
|
64
|
+
- Queue VHS feature GIF generation and Zola auto-discovery roadmap slices.
|
|
65
|
+
|
|
66
|
+
### Contributors
|
|
67
|
+
|
|
68
|
+
- @andagaev
|
|
69
|
+
- @minev-dev
|
|
70
|
+
|
|
8
71
|
## [v0.6.12] - 2026-04-01
|
|
9
72
|
|
|
10
73
|
### 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.
|
|
26
|
+
"version": "0.7.1"
|
|
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.
|
|
518
|
+
"version": "0.7.1"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.7.1",
|
|
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.
|
|
69
|
+
"version": "0.7.1",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|