agentty 0.5.5 → 0.5.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 +43 -2
- package/README.md +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,49 @@ 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.7] - 2026-03-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Plan:** Add session commit message flow plan.
|
|
13
|
+
- **UI:** Add branch publish popup for custom remote targets.
|
|
14
|
+
- **Session:** Persist published upstream refs for sessions.
|
|
15
|
+
- **Architecture:** Extract forge review-request code into `ag-forge`.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **UI:** Replace review request flow with manual branch publish.
|
|
20
|
+
- **Projects:** Skip stale project directories in project list.
|
|
21
|
+
- **Docs:** Replace docs plan symlinks with explicit indexes and format plan headings.
|
|
22
|
+
|
|
23
|
+
### Contributors
|
|
24
|
+
|
|
25
|
+
- @minev-dev
|
|
26
|
+
|
|
27
|
+
## [v0.5.6] - 2026-03-09
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- **Agent:** Add predefined answer options for agent questions.
|
|
32
|
+
- **Agent:** Add mandatory per-turn change summaries to agent protocol.
|
|
33
|
+
- **Infra:** Implement forge CLI review-request adapters (GitHub/GitLab PR/MR workflows).
|
|
34
|
+
- **UI:** Add session view review request workflows (create, open, refresh).
|
|
35
|
+
- **UI:** Show project scope in list tabs.
|
|
36
|
+
- **Settings:** Scope settings per project.
|
|
37
|
+
- **Review:** Auto-start focused review generation on session Review transition and cache results.
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- **UI:** Change focused review navigation to open/regenerate with exit key.
|
|
42
|
+
- **UI:** Remove external editor shortcut (`e`).
|
|
43
|
+
- **Git:** Remove session worktrees when review sessions are canceled.
|
|
44
|
+
|
|
45
|
+
### Contributors
|
|
46
|
+
|
|
47
|
+
- @andagaev
|
|
48
|
+
- @dependabot[bot]
|
|
49
|
+
- @minev-dev
|
|
50
|
+
|
|
8
51
|
## [v0.5.5] - 2026-03-07
|
|
9
52
|
|
|
10
53
|
### Added
|
|
@@ -201,7 +244,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
201
244
|
|
|
202
245
|
- **Codex:** Load usage limits lazily and remove usage panel/polling.
|
|
203
246
|
- **Codex:** Update model defaults and remove `gpt-5.2-codex`.
|
|
204
|
-
- **UI:** Open `nvim` in read-only mode.
|
|
205
247
|
- **UI:** Refine info overlay and session list padding.
|
|
206
248
|
- **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
|
|
207
249
|
- **Architecture:** Propagate assistant phase metadata in app-server streams.
|
|
@@ -221,7 +263,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
221
263
|
|
|
222
264
|
### Added
|
|
223
265
|
|
|
224
|
-
- **UI:** Support opening nvim (`e` key) from session screens preserving terminal input flow.
|
|
225
266
|
- **UI:** Add Cmd+Backspace current-line deletion in prompt.
|
|
226
267
|
- **Settings:** Add default review model and separate default smart/fast model settings.
|
|
227
268
|
- **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 a manual branch-publish workflow so reviewed session
|
|
8
|
+
branches can be pushed from the TUI before you open a pull request or merge
|
|
9
|
+
request yourself.
|
|
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.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.5.
|
|
518
|
+
"version": "0.5.7"
|
|
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.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.5.
|
|
69
|
+
"version": "0.5.7",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|