agentty 0.12.7 → 0.13.0
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 +117 -0
- package/README.md +10 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,123 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.13.0] - 2026-07-14
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add a `p` project switcher popup to the `Sessions` view that lists registered
|
|
15
|
+
projects in most-recently-opened order and switches the active project in place.
|
|
16
|
+
- agentty: display assigned GitHub issue details, group issues by assignment, and style
|
|
17
|
+
assigned issue borders.
|
|
18
|
+
- agentty: let `Tab` move prompt composer focus to the chat transcript for scrolling
|
|
19
|
+
without losing the current draft.
|
|
20
|
+
- agentty: show a shared vertical scrollbar for overflowing session and `Diff` output,
|
|
21
|
+
including padding that keeps wrapped content clear of the scrollbar.
|
|
22
|
+
- docs: add a homepage roadmap covering the Harness, Orchestrator, Assistant, and Cloud
|
|
23
|
+
tracks through 2027.
|
|
24
|
+
- docs: add SonarCloud quality badges to `README.md`.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- agentty: serialize running-session sync through the active worker so queued sync runs
|
|
29
|
+
after the current turn and before later chat messages.
|
|
30
|
+
- agentty: represent summaries, reviews, workflow notices, and published-branch sync
|
|
31
|
+
output with typed transient slots, explicit lifecycles, and content-keyed caches.
|
|
32
|
+
- agentty: keep completed transcripts and summaries visible while branch workflows
|
|
33
|
+
update their transient status.
|
|
34
|
+
- agentty: refine focused review output with compact sections, verification-gated
|
|
35
|
+
`/apply` hints, and loading, ready, and failure states that survive session refreshes.
|
|
36
|
+
- agentty: run manual branch and review-request publishing in the background, preserve
|
|
37
|
+
durable PR and MR creation notices, and serialize publishing with auto-push work.
|
|
38
|
+
- agentty: enforce timeouts for forge and cleanup-critical git commands, and run merged
|
|
39
|
+
session cleanup as bounded background work.
|
|
40
|
+
- agentty: require Clippy checks and installed pre-commit hooks in commit workflows, and
|
|
41
|
+
warn without blocking when configured hooks are missing during session workflows.
|
|
42
|
+
- agentty: report stacked child sync failures as transient session notices.
|
|
43
|
+
- agentty: rename the green color theme's internal and persisted name from `hacker` to
|
|
44
|
+
`green`, migrating existing settings so users keep their selected theme.
|
|
45
|
+
- ag-agent: apply provider-specific structured-output schema requirements, remove raw
|
|
46
|
+
provider payloads from errors, and bound long CLI and transcript error details.
|
|
47
|
+
- ag-tui-text: bound grouped Mermaid edge generation.
|
|
48
|
+
- testty: make feature GIF recording opt-in, stabilize deterministic recording, batch
|
|
49
|
+
PTY proof steps, and run parallel E2E feature validation in presubmit.
|
|
50
|
+
- docs: refresh the website and documentation experience with responsive layouts,
|
|
51
|
+
accessibility improvements, static feature posters, and shared search.
|
|
52
|
+
- deps: bump `tachyonfx` from `0.25.0` to `0.25.1`.
|
|
53
|
+
- ci: bump `taiki-e/install-action` from `2.82.8` to `2.82.10`.
|
|
54
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.0`.
|
|
55
|
+
|
|
56
|
+
### Removed
|
|
57
|
+
|
|
58
|
+
- agentty: remove the review-comments preview from the `Diff` view.
|
|
59
|
+
- agentty: remove the process-local `Logs` tab and its in-memory logging pipeline.
|
|
60
|
+
|
|
61
|
+
### Fixed
|
|
62
|
+
|
|
63
|
+
- agentty: refresh assigned issue views when observable issue state changes.
|
|
64
|
+
- agentty: prevent stale `InProgress` session state from starting a duplicate worker.
|
|
65
|
+
- agentty: treat punctuated empty focused-review suggestions as empty.
|
|
66
|
+
- agentty: align session-output wrapping and scroll metrics with the scrollbar gutter.
|
|
67
|
+
|
|
68
|
+
### Contributors
|
|
69
|
+
|
|
70
|
+
- @andagaev
|
|
71
|
+
- @dependabot
|
|
72
|
+
- @minev-dev
|
|
73
|
+
|
|
74
|
+
## [v0.12.9] - 2026-07-11
|
|
75
|
+
|
|
76
|
+
The `v0.12.8` release was not successful, so `v0.12.9` includes all changes originally
|
|
77
|
+
documented for it.
|
|
78
|
+
|
|
79
|
+
### Changed
|
|
80
|
+
|
|
81
|
+
- agentty: render more Mermaid syntax in chat — extended node shapes, arrow variants,
|
|
82
|
+
invisible layout links, `&` fan-outs, flattened subgraphs, skipped styling and
|
|
83
|
+
sequence control statements, truncated over-long labels, and adaptive sequence
|
|
84
|
+
lifeline spacing.
|
|
85
|
+
- agentty: render dotted and thick Mermaid edges with inline labels.
|
|
86
|
+
- agentty: preserve pasted prompt indentation.
|
|
87
|
+
- agentty: pin the user prompt block background to a dedicated RGB surface token.
|
|
88
|
+
- agentty: improve session configuration and E2E stability.
|
|
89
|
+
- docs: document that GIF force mode requires an unsandboxed shell.
|
|
90
|
+
|
|
91
|
+
### Removed
|
|
92
|
+
|
|
93
|
+
- agentty: remove the `/qe:check` prompt slash command.
|
|
94
|
+
|
|
95
|
+
### Fixed
|
|
96
|
+
|
|
97
|
+
- agentty: support projects backed by a bare-repository worktree layout (a container
|
|
98
|
+
folder holding per-branch worktrees). Previously, starting a session turn in such a
|
|
99
|
+
project failed with a git status `must be run in a work tree` error.
|
|
100
|
+
|
|
101
|
+
### Contributors
|
|
102
|
+
|
|
103
|
+
- @andagaev
|
|
104
|
+
- @artemgoncharuk
|
|
105
|
+
- @dependabot
|
|
106
|
+
- @minev-dev
|
|
107
|
+
|
|
108
|
+
## [v0.12.8] - 2026-07-09
|
|
109
|
+
|
|
110
|
+
### Removed
|
|
111
|
+
|
|
112
|
+
- agentty: remove the `/qe:check` prompt slash command.
|
|
113
|
+
|
|
114
|
+
### Changed
|
|
115
|
+
|
|
116
|
+
- agentty: render dotted and thick Mermaid edges with inline labels.
|
|
117
|
+
- agentty: preserve pasted prompt indentation.
|
|
118
|
+
- agentty: pin the user prompt block background to a dedicated RGB surface token.
|
|
119
|
+
- agentty: improve session configuration and E2E stability.
|
|
120
|
+
- docs: document that GIF force mode requires an unsandboxed shell.
|
|
121
|
+
|
|
122
|
+
### Contributors
|
|
123
|
+
|
|
124
|
+
- @andagaev
|
|
125
|
+
- @minev-dev
|
|
126
|
+
|
|
10
127
|
## [v0.12.7] - 2026-07-09
|
|
11
128
|
|
|
12
129
|
### Added
|
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
[](https://codecov.io/gh/agentty-xyz/agentty)
|
|
5
5
|
[](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml)
|
|
6
6
|
|
|
7
|
+
[](https://sonarcloud.io/summary/new_code?id=agentty-xyz_agentty)
|
|
8
|
+
[](https://sonarcloud.io/summary/new_code?id=agentty-xyz_agentty)
|
|
9
|
+
[](https://sonarcloud.io/summary/new_code?id=agentty-xyz_agentty)
|
|
10
|
+
[](https://sonarcloud.io/summary/new_code?id=agentty-xyz_agentty)
|
|
11
|
+
|
|
7
12
|
Agentty is an **ADE (Agentic Development Environment) for structured, controllable
|
|
8
13
|
AI-assisted software development**. Built with Rust and [Ratatui](https://ratatui.rs),
|
|
9
14
|
and refined through its own day-to-day use, it brings agents, review, and iteration into
|
|
@@ -124,6 +129,11 @@ agentty --help # Show supported command-line options
|
|
|
124
129
|
agentty --version # Show the installed Agentty version
|
|
125
130
|
```
|
|
126
131
|
|
|
132
|
+
The **Issues** tab uses the GitHub CLI to show open issues assigned to the authenticated
|
|
133
|
+
user in the active project. Press `Enter` to load base issue details and the
|
|
134
|
+
description; comments are not loaded in this iteration. Install `gh` and run
|
|
135
|
+
`gh auth login` to enable it.
|
|
136
|
+
|
|
127
137
|
## Documentation
|
|
128
138
|
|
|
129
139
|
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.
|
|
26
|
+
"version": "0.13.0"
|
|
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.
|
|
545
|
+
"version": "0.13.0"
|
|
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.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.0"
|
|
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.
|
|
71
|
+
"version": "0.13.0",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|