agentty 0.3.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 +66 -0
- package/README.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,72 @@ 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
|
+
|
|
42
|
+
## [v0.4.0] - 2026-02-24
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
|
|
46
|
+
- **Projects:** Add a projects tab with quick project switching.
|
|
47
|
+
- **Navigation:** Add backward tab navigation with `Shift+Tab`.
|
|
48
|
+
- **Docs:** Add the getting started overview guide.
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
|
|
52
|
+
- **App:** Resolve main repository roots via git and exclude session worktrees.
|
|
53
|
+
- **UI:** Switch to `Sessions` after project selection and compact footer help actions.
|
|
54
|
+
- **Runtime:** Route app-server turns by provider, include root `AGENTS.md` instructions, and pass session folder/model in Codex payloads.
|
|
55
|
+
- **Docs:** Reorganize site sections, standardize skill headers, and migrate the docs site to compiled Sass styling.
|
|
56
|
+
- **Models:** Add support for the `gpt-5.3-codex-spark` model.
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- **Database:** Fix SQLite migration `025` to avoid non-constant defaults.
|
|
61
|
+
- **Templates:** Fix malformed Tera block syntax in the base template.
|
|
62
|
+
- **Docs:** Remove duplicate front matter delimiters in overview content.
|
|
63
|
+
|
|
64
|
+
### Removed
|
|
65
|
+
|
|
66
|
+
- **Onboarding:** Remove the onboarding page from the list-mode flow.
|
|
67
|
+
- **Projects:** Remove project favorite controls from the project list.
|
|
68
|
+
|
|
69
|
+
### Contributors
|
|
70
|
+
|
|
71
|
+
- @andagaev
|
|
72
|
+
- @minev-dev
|
|
73
|
+
|
|
8
74
|
## [v0.3.0] - 2026-02-23
|
|
9
75
|
|
|
10
76
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
69
|
+
"version": "0.4.1",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|