agentty 0.8.11 → 0.9.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 +85 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,91 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.9.1] - 2026-05-02
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- agentty: enable the `arboard` `wayland-data-control` backend so clipboard image
|
|
15
|
+
capture works on Wayland compositors such as Hyprland, and update runtime-flow,
|
|
16
|
+
keybinding, and workflow docs to describe X11 and Wayland clipboard sources.
|
|
17
|
+
- Clarify workspace crate names, validation guidance, UI helper guidance, and
|
|
18
|
+
constructor guidance in agent instructions while removing obsolete nested instruction
|
|
19
|
+
files from stale example/proof directories.
|
|
20
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.1`.
|
|
21
|
+
|
|
22
|
+
### Contributors
|
|
23
|
+
|
|
24
|
+
- @minev-dev
|
|
25
|
+
|
|
26
|
+
## [v0.9.0] - 2026-05-02
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- agentty: accept image paste payloads from `Ctrl+Shift+V` and copied PNG files in the
|
|
31
|
+
prompt input flow.
|
|
32
|
+
- agentty: add branch and path columns to the `Projects` table so repository identity is
|
|
33
|
+
visible without opening a project.
|
|
34
|
+
- testty: add the named `StartupWait` preset enum (`Default`, `FastNative`, `SlowNode`,
|
|
35
|
+
`Custom { stable_ms, timeout_ms }`) plus the `Journey::wait_for_startup_preset` and
|
|
36
|
+
`Journey::wait_for_startup_default` constructors so test authors can pick a documented
|
|
37
|
+
startup-wait profile instead of hand-tuning raw `(stable_ms, timeout_ms)` numbers per
|
|
38
|
+
project. `StartupWait` is re-exported from `testty::prelude`. The historical
|
|
39
|
+
`Journey::wait_for_startup(stable_ms, timeout_ms)` entry point keeps working and now
|
|
40
|
+
routes through `StartupWait::Custom`.
|
|
41
|
+
- testty: add `match_*` recipe siblings for composing reusable frame assertions.
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- agentty: move the activity heatmap into the `Projects` tab, add aggregate work stats
|
|
46
|
+
to the `Projects` table, keep the `Stats` tab focused on global aggregates, and hide
|
|
47
|
+
non-repository workspaces from the project list.
|
|
48
|
+
- agentty: tighten shared tab-page spacing and split project activity from project info
|
|
49
|
+
so the `Projects` tab has denser, clearer panels.
|
|
50
|
+
- testty: HTML proof report now renders structured `match_*` failures (those carried on
|
|
51
|
+
`AssertionResult::failure`) with a side-by-side context-and-frame block. The context
|
|
52
|
+
column surfaces the `Expected` variant, the optional `Region` coordinates, and the
|
|
53
|
+
matched-span list; the frame column shows `AssertionFailure::frame_excerpt` inside a
|
|
54
|
+
`<pre>` with a column ruler and per-row gutters whose labels are anchored to the
|
|
55
|
+
region's `(col, row)` so reported coordinates match the live frame. The ruler defaults
|
|
56
|
+
to the compact two-row tens-and-ones layout and adds a hundreds row above the tens row
|
|
57
|
+
whenever the excerpt extends past column 99, so absolute coordinates beyond column 99
|
|
58
|
+
can be recovered by stacking the digits at any tens-marked column instead of being
|
|
59
|
+
truncated by `(col / 10) % 10`. The column ruler is sized by terminal cell width (via
|
|
60
|
+
`unicode-width`) so wide glyphs in the excerpt do not desync the labels from real
|
|
61
|
+
terminal positions. Needle highlighting in the excerpt is scoped to what the
|
|
62
|
+
underlying matcher actually validated: every-match matchers (`TextInRegion`,
|
|
63
|
+
`NotVisible`, `MatchCount`) wrap every occurrence of the needle in a `needle-hit` span
|
|
64
|
+
using the same one-character advance as `TerminalFrame::find_text`, so overlapping
|
|
65
|
+
matches like `ana` in `banana` are no longer silently dropped, while first-match-only
|
|
66
|
+
matchers (`ForegroundColor`, `BackgroundColor`, `Highlighted`, `NotHighlighted`) only
|
|
67
|
+
highlight the first occurrence so the report does not imply that secondary occurrences
|
|
68
|
+
were checked. For every-match matchers, strictly overlapping byte ranges are merged
|
|
69
|
+
into a single span so the emitted HTML stays well-formed, while adjacent matches like
|
|
70
|
+
`ab` in `abab` keep their distinct spans so the report shows both hits. The
|
|
71
|
+
`needle-hit` style uses background color only with no horizontal padding so
|
|
72
|
+
highlighted cells stay aligned with the column ruler. The matched-span list now also
|
|
73
|
+
surfaces the actual `foreground`, `background`, and style flags (`bold`, `italic`,
|
|
74
|
+
`underline`, `inverse`, `dim`) carried on each `MatchedSpan`, so color- and
|
|
75
|
+
highlight-style failures expose the actual cell state next to the structured
|
|
76
|
+
`Expected` description instead of forcing readers back to the assertion-line summary.
|
|
77
|
+
The `Expected` description for color and highlight expectations is also reworded to
|
|
78
|
+
read as "first match of '<needle>' with foreground color ..." (and the equivalent for
|
|
79
|
+
background, highlight, and not-highlight) so the report makes it explicit that the
|
|
80
|
+
underlying matchers only validate the first matched span. Legacy entries pushed
|
|
81
|
+
through `ProofReport::add_assertion` keep the historical one-line `pass`/`fail` shape
|
|
82
|
+
unchanged.
|
|
83
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.0`.
|
|
84
|
+
|
|
85
|
+
### Fixed
|
|
86
|
+
|
|
87
|
+
- agentty: isolate E2E project discovery from the host home directory so tests only see
|
|
88
|
+
repositories created for the current scenario.
|
|
89
|
+
|
|
90
|
+
### Contributors
|
|
91
|
+
|
|
92
|
+
- @andagaev
|
|
93
|
+
- @minev-dev
|
|
94
|
+
|
|
10
95
|
## [v0.8.11] - 2026-05-02
|
|
11
96
|
|
|
12
97
|
### Added
|
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.9.1"
|
|
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.9.1"
|
|
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.9.1"
|
|
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.9.1",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|