agentty 0.5.5 → 0.5.6
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 +24 -2
- package/README.md +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.6] - 2026-03-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Agent:** Add predefined answer options for agent questions.
|
|
13
|
+
- **Agent:** Add mandatory per-turn change summaries to agent protocol.
|
|
14
|
+
- **Infra:** Implement forge CLI review-request adapters (GitHub/GitLab PR/MR workflows).
|
|
15
|
+
- **UI:** Add session view review request workflows (create, open, refresh).
|
|
16
|
+
- **UI:** Show project scope in list tabs.
|
|
17
|
+
- **Settings:** Scope settings per project.
|
|
18
|
+
- **Review:** Auto-start focused review generation on session Review transition and cache results.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **UI:** Change focused review navigation to open/regenerate with exit key.
|
|
23
|
+
- **UI:** Remove external editor shortcut (`e`).
|
|
24
|
+
- **Git:** Remove session worktrees when review sessions are canceled.
|
|
25
|
+
|
|
26
|
+
### Contributors
|
|
27
|
+
|
|
28
|
+
- @andagaev
|
|
29
|
+
- @dependabot[bot]
|
|
30
|
+
- @minev-dev
|
|
31
|
+
|
|
8
32
|
## [v0.5.5] - 2026-03-07
|
|
9
33
|
|
|
10
34
|
### Added
|
|
@@ -201,7 +225,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
201
225
|
|
|
202
226
|
- **Codex:** Load usage limits lazily and remove usage panel/polling.
|
|
203
227
|
- **Codex:** Update model defaults and remove `gpt-5.2-codex`.
|
|
204
|
-
- **UI:** Open `nvim` in read-only mode.
|
|
205
228
|
- **UI:** Refine info overlay and session list padding.
|
|
206
229
|
- **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
|
|
207
230
|
- **Architecture:** Propagate assistant phase metadata in app-server streams.
|
|
@@ -221,7 +244,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
221
244
|
|
|
222
245
|
### Added
|
|
223
246
|
|
|
224
|
-
- **UI:** Support opening nvim (`e` key) from session screens preserving terminal input flow.
|
|
225
247
|
- **UI:** Add Cmd+Backspace current-line deletion in prompt.
|
|
226
248
|
- **Settings:** Add default review model and separate default smart/fast model settings.
|
|
227
249
|
- **Review:** Enforce read-only constraints for focused review assist and refine prompt structure.
|
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
Agentty is an **ADE (Agentic Development Environment) for structured, controllable AI-assisted software development**. It is itself developed with Agentty, built with Rust and [Ratatui](https://ratatui.rs), and designed around a deeply integrated workflow.
|
|
6
6
|
|
|
7
|
+
Session view includes first-class review workflows for linked GitHub pull
|
|
8
|
+
requests and GitLab merge requests, including create/link, open-link, and
|
|
9
|
+
manual refresh actions from the TUI.
|
|
10
|
+
|
|
7
11
|
## Installation
|
|
8
12
|
|
|
9
13
|
### Shell
|
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.5.
|
|
26
|
+
"version": "0.5.6"
|
|
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.5.
|
|
518
|
+
"version": "0.5.6"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.6",
|
|
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.5.
|
|
69
|
+
"version": "0.5.6",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|