agentty 0.13.3 → 0.13.5
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 +48 -0
- package/README.md +12 -14
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,54 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.13.5] - 2026-07-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add a rendered markdown and Mermaid preview toggle for changed markdown files
|
|
15
|
+
in diff view.
|
|
16
|
+
- agentty: start a session directly from assigned issue details, using the issue URL as
|
|
17
|
+
the initial prompt.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- agentty: group review comments by unresolved, resolved, and standalone state while
|
|
22
|
+
preserving thread selection across refreshes.
|
|
23
|
+
- agentty: preserve prompt drafts when returning to `Sessions` and display `C` as the
|
|
24
|
+
done-session continuation shortcut.
|
|
25
|
+
- agentty: centralize session action eligibility, prompt composer state, settings
|
|
26
|
+
presentation state, and agent CLI subprocess execution behind their owning runtime
|
|
27
|
+
boundaries.
|
|
28
|
+
- docs: refresh the `README.md` navigation, homepage workflow highlights, and session
|
|
29
|
+
management showcase.
|
|
30
|
+
- ci: enforce coverage checks on all builds and update the grouped GitHub Actions
|
|
31
|
+
dependencies.
|
|
32
|
+
- deps: update `uuid` from `1.23.4` to `1.24.0`.
|
|
33
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.5`.
|
|
34
|
+
|
|
35
|
+
### Contributors
|
|
36
|
+
|
|
37
|
+
- @andagaev
|
|
38
|
+
- @dependabot
|
|
39
|
+
- @minev-dev
|
|
40
|
+
|
|
41
|
+
## [v0.13.4] - 2026-07-18
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- agentty: use `Ctrl+Z` as the shared input undo shortcut.
|
|
46
|
+
- agentty: keep remotely merged review sessions read-only in Active until manual target
|
|
47
|
+
sync archives them and restacks any child sessions.
|
|
48
|
+
- deps: update `ignore` from `0.4.27` to `0.4.28`.
|
|
49
|
+
- ci: update `taiki-e/install-action` from `2.82.11` to `2.83.1`.
|
|
50
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.4`.
|
|
51
|
+
|
|
52
|
+
### Contributors
|
|
53
|
+
|
|
54
|
+
- @andagaev
|
|
55
|
+
- @dependabot
|
|
56
|
+
- @minev-dev
|
|
57
|
+
|
|
10
58
|
## [v0.13.3] - 2026-07-17
|
|
11
59
|
|
|
12
60
|
### Added
|
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<h1>Agentty</h1>
|
|
2
4
|
|
|
3
5
|

|
|
4
6
|
[](https://codecov.io/gh/agentty-xyz/agentty)
|
|
@@ -15,9 +17,15 @@ AI-assisted software development**. Built with Rust and [Ratatui](https://ratatu
|
|
|
15
17
|
and refined through its own day-to-day use, it brings agents, review, and iteration into
|
|
16
18
|
one focused terminal workflow.
|
|
17
19
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
[Installation](#installation) · [Supported CLI Agents](#supported-cli-agents) ·
|
|
21
|
+
[Usage](#usage) · [Documentation](#documentation) · [Contributing](#contributing) ·
|
|
22
|
+
[License](#license)
|
|
23
|
+
|
|
24
|
+
<img src="docs/site/static/demo/demo.gif" alt="Agentty demo" width="900" />
|
|
25
|
+
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
______________________________________________________________________
|
|
21
29
|
|
|
22
30
|
## Installation
|
|
23
31
|
|
|
@@ -130,16 +138,6 @@ agentty --help # Show supported command-line options
|
|
|
130
138
|
agentty --version # Show the installed Agentty version
|
|
131
139
|
```
|
|
132
140
|
|
|
133
|
-
The **Issues** tab uses the GitHub CLI to show open issues assigned to the authenticated
|
|
134
|
-
user in the active project. Press `Enter` to load base issue details and the
|
|
135
|
-
description; comments are not loaded in this iteration. Install `gh` and run
|
|
136
|
-
`gh auth login` to enable it.
|
|
137
|
-
|
|
138
|
-
For sessions linked to a GitHub pull request or GitLab merge request, press `c` in
|
|
139
|
-
session view to browse review comments read-only. General comments and inline threads
|
|
140
|
-
are listed on the left, with the selected conversation and attached current-diff context
|
|
141
|
-
on the right.
|
|
142
|
-
|
|
143
141
|
## Documentation
|
|
144
142
|
|
|
145
143
|
Documentation for installation and workflows is available at
|
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.13.
|
|
26
|
+
"version": "0.13.5"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.13.
|
|
545
|
+
"version": "0.13.5"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.5"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentty": "run-agentty.js"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"zipExt": ".tar.xz"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"version": "0.13.
|
|
71
|
+
"version": "0.13.5",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|