agentty 0.13.2 → 0.13.4

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 CHANGED
@@ -7,6 +7,63 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [v0.13.4] - 2026-07-18
11
+
12
+ ### Changed
13
+
14
+ - agentty: use `Ctrl+Z` as the shared input undo shortcut.
15
+ - agentty: keep remotely merged review sessions read-only in Active until manual target
16
+ sync archives them and restacks any child sessions.
17
+ - deps: update `ignore` from `0.4.27` to `0.4.28`.
18
+ - ci: update `taiki-e/install-action` from `2.82.11` to `2.83.1`.
19
+ - release: bump workspace crate metadata and lockfile package versions to `0.13.4`.
20
+
21
+ ### Contributors
22
+
23
+ - @andagaev
24
+ - @dependabot
25
+ - @minev-dev
26
+
27
+ ## [v0.13.3] - 2026-07-17
28
+
29
+ ### Added
30
+
31
+ - agentty: add a review-comments view for linked GitHub pull requests and GitLab merge
32
+ requests, with selectable general comments, inline threads, current diff context, and
33
+ read-only navigation.
34
+ - agentty: let session agents resolve selected or all actionable review comments, then
35
+ reply to and resolve fixed GitHub and GitLab threads after a successful branch push.
36
+ - release: generate keyless Sigstore build provenance for final GitHub release artifacts
37
+ and attach a Scorecard-discoverable bundle.
38
+
39
+ ### Changed
40
+
41
+ - agentty: open the session diff with `d` from prompt chat focus and restore the
42
+ composer draft, attachments, history, suggestions, and scroll state on return.
43
+ - agentty: persist focused review output across session and project switches.
44
+ - agentty: block local merge queueing when a forge review request is linked.
45
+ - ag-agent: route utility prompts through a typed, injectable one-shot client and
46
+ encapsulate turn continuation state.
47
+ - ag-protocol: reorganize protocol definitions by responsibility.
48
+ - ag-clipboard: unify platform backend initialization and report invalid UTF-8 text as
49
+ backend errors on Wayland and X11.
50
+ - ag-forge: simplify review-request adapter ownership and command workflows.
51
+ - ci: enforce 100% patch coverage for pull requests and raise the workspace line
52
+ coverage threshold to 93%.
53
+ - release: upload the complete artifact set through a retry-safe draft before
54
+ publication so GitHub release immutability protects every shipped file.
55
+ - docs: document GitHub release, asset, and provenance verification.
56
+ - release: bump workspace crate metadata and lockfile package versions to `0.13.3`.
57
+
58
+ ### Fixed
59
+
60
+ - agentty: keep an empty prompt open when `Backspace` is pressed.
61
+
62
+ ### Contributors
63
+
64
+ - @andagaev
65
+ - @minev-dev
66
+
10
67
  ## [v0.13.2] - 2026-07-16
11
68
 
12
69
  ### Added
package/README.md CHANGED
@@ -135,6 +135,11 @@ user in the active project. Press `Enter` to load base issue details and the
135
135
  description; comments are not loaded in this iteration. Install `gh` and run
136
136
  `gh auth login` to enable it.
137
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
+
138
143
  ## Documentation
139
144
 
140
145
  Documentation for installation and workflows is available at
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.13.2"
26
+ "version": "0.13.4"
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.2"
545
+ "version": "0.13.4"
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.2"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.13.4"
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.2",
71
+ "version": "0.13.4",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"