agentty 0.4.6 → 0.5.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 +61 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,67 @@ 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.5.0] - 2026-03-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **UI:** Handle agent clarification questions in a dedicated question mode with persistent history.
|
|
13
|
+
- **UI:** Highlight `@mention` tokens in chat input.
|
|
14
|
+
- **UI:** Improve chat input wrapping and viewport scrolling.
|
|
15
|
+
- **UI:** Align session output wrapping with panel borders.
|
|
16
|
+
- **Architecture:** Switch agent output to schema-validated JSON messages and normalize assist protocol output.
|
|
17
|
+
- **Architecture:** Inject `FsClient` and `Clock` dependencies into session workflows for better testability.
|
|
18
|
+
- **Architecture:** Route session stats and filesystem workflows through the app layer.
|
|
19
|
+
- **Docs:** Add diff-first verification guidance and refine site responsiveness.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **Session:** Move first-turn title generation to the start-turn worker and use plain text.
|
|
24
|
+
- **Session:** Filter Codex thought/reasoning text from persisted assistant output and handle it separately during streaming.
|
|
25
|
+
- **Session:** Remove plan messages from the agent response protocol.
|
|
26
|
+
- **Session:** Prefer active sessions for initial selection in the UI.
|
|
27
|
+
- **Protocol:** Prefer agent message content over trailing reasoning payloads.
|
|
28
|
+
|
|
29
|
+
### Removed
|
|
30
|
+
|
|
31
|
+
- **UI:** Remove session stop shortcut (`Ctrl+c`) and stop-session flow.
|
|
32
|
+
- **Architecture:** Remove unused `nix` dependency.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- **Session:** Ensure merge cleanup (worktree/branch removal) completes before marking session as `Done`.
|
|
37
|
+
- **Sync:** Optimize session output synchronization for append-heavy updates.
|
|
38
|
+
- **Review:** Parse structured agent responses in focused review assist correctly.
|
|
39
|
+
|
|
40
|
+
### Contributors
|
|
41
|
+
|
|
42
|
+
- @minev-dev
|
|
43
|
+
- @andagaev
|
|
44
|
+
|
|
45
|
+
## [v0.4.7] - 2026-03-04
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
|
|
49
|
+
- **UI:** Add `Ctrl+u` prompt-line deletion and intent-aware confirmations for merge, delete, and quit actions.
|
|
50
|
+
- **Settings:** Persist Codex reasoning levels and propagate reasoning identifiers through runtime integrations.
|
|
51
|
+
- **Environment:** Allow `AGENTTY_ROOT` to override the default agentty data root.
|
|
52
|
+
|
|
53
|
+
### Changed
|
|
54
|
+
|
|
55
|
+
- **UI:** Remove the session list project column and highlight the active project name in the `Sessions` tab.
|
|
56
|
+
- **Session:** Preserve live session state during reload and unify child PID propagation across assist/rebase/merge flows.
|
|
57
|
+
- **Docs:** Split usage docs into dedicated workflow and keybindings pages and refine rebase conflict guidance.
|
|
58
|
+
- **Quality:** Require full validation checks during execution and standardize the full test command to single-threaded runs.
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
|
|
62
|
+
- **Tests:** Refresh stale assertions after settings/help text updates.
|
|
63
|
+
|
|
64
|
+
### Contributors
|
|
65
|
+
|
|
66
|
+
- @minev-dev
|
|
67
|
+
- @andagaev
|
|
68
|
+
|
|
8
69
|
## [v0.4.6] - 2026-03-02
|
|
9
70
|
|
|
10
71
|
### 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.5.0"
|
|
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.5.0"
|
|
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.5.0",
|
|
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.5.0",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|