agentty 0.4.0 → 0.4.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 +34 -0
- package/README.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ 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.4.1] - 2026-02-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **UI:** Add `Shift+Arrow` and `Alt/Shift+Backspace` word-wise cursor movement in prompt mode.
|
|
13
|
+
- **Models:** Stream Gemini assistant chunks to the UI during turns and handle ACP permission requests.
|
|
14
|
+
- **Skills:** Add code review skill.
|
|
15
|
+
- **Tests:** Add regression tests and improve coverage with mocked clients.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **UI:** Project switcher supports `j`/`k` navigation, unfiltered list navigation, and visible selection.
|
|
20
|
+
- **UI:** Report sync outcome details in completion popup and keep confirmation choices visible.
|
|
21
|
+
- **UX:** List mode opens canceled sessions on `Enter`.
|
|
22
|
+
- **Models:** Codex resume uses `--last` only without replay history and enforces high reasoning effort.
|
|
23
|
+
- **Models:** Rename Gemini Pro preview variant to Gemini 3.1.
|
|
24
|
+
- **Session Output:** Keep clean auto-commit silent, report no-op states, and ignore synthetic Codex completion messages.
|
|
25
|
+
- **Architecture:** Centralize git command execution and isolate Codex usage-limit loading.
|
|
26
|
+
- **Docs:** Update documentation to highlight Agentty self-hosting and align docs page widths.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- **Models:** Handle Gemini `session/new` error responses explicitly and ignore empty assistant chunks.
|
|
31
|
+
- **UI:** Stabilize site header across routes.
|
|
32
|
+
|
|
33
|
+
### Removed
|
|
34
|
+
|
|
35
|
+
- **UI:** Remove quick project switcher mode and overlay.
|
|
36
|
+
|
|
37
|
+
### Contributors
|
|
38
|
+
|
|
39
|
+
- @andagaev
|
|
40
|
+
- @minev-dev
|
|
41
|
+
|
|
8
42
|
## [v0.4.0] - 2026-02-24
|
|
9
43
|
|
|
10
44
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
Agentty is a terminal-first **Agentic Development Environment (ADE)**, designed for building software alongside AI agents. It is built with Rust and [Ratatui](https://ratatui.rs), with a deeply integrated, git-native workflow.
|
|
5
|
+
Agentty is a terminal-first **Agentic Development Environment (ADE)**, designed for building software alongside AI agents, and is itself developed with Agentty. It is built with Rust and [Ratatui](https://ratatui.rs), with a deeply integrated, git-native workflow.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
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.4.
|
|
26
|
+
"version": "0.4.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.4.
|
|
518
|
+
"version": "0.4.1"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.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.4.
|
|
69
|
+
"version": "0.4.1",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|