agentty 0.8.3 → 0.8.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,12 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [v0.8.4] - 2026-04-25
11
+
12
+ ### Added
13
+
14
+ - Queue chat messages while a turn is running and include them in session output.
15
+ - Animate in-progress session output with a Tachyonfx loader.
16
+ - Split settings into global and project sections.
17
+ - Surface FYI guidance for opening commands in the sessions list.
18
+ - Gate `/apply` to verify focused-review suggestions before applying.
19
+
20
+ ### Changed
21
+
22
+ - Render done-session transcript and summary as a single stream.
23
+ - Use semantic text foreground for persisted user prompt content.
24
+ - Align summary markdown spacing with the section layout.
25
+ - Align UI component foreground style with session list text color.
26
+ - Use a stable bar glyph for spinner status indicators.
27
+ - Adopt theme-driven session status colors and broader theme styling refresh.
28
+ - Return interrupted in-progress turns to `Review`.
29
+ - Update `testty` crate description and document the feature module.
30
+
31
+ ### Fixed
32
+
33
+ - Hide focused review output in terminal `Done` and `Canceled` sessions.
34
+
35
+ ### Contributors
36
+
37
+ - @andagaev
38
+ - @minev-dev
39
+
10
40
  ## [v0.8.3] - 2026-04-24
11
41
 
12
42
  ### Changed
43
+
13
44
  - build: remove pinned version comments from release.yml
14
45
 
15
46
  ### Contributors
47
+
16
48
  - @minev-dev
17
49
 
18
50
  ## [v0.8.2] - 2026-04-24
package/README.md CHANGED
@@ -52,9 +52,6 @@ agentty # Launch with auto-update enabled (default)
52
52
  agentty --no-update # Launch without automatic updates
53
53
  ```
54
54
 
55
- Use the **Settings** tab to switch between the default terminal colors and the
56
- docs-site-inspired `Hacker` theme.
57
-
58
55
  ## Documentation
59
56
 
60
57
  Documentation for installation and workflows is available at [agentty.xyz/docs](https://agentty.xyz/docs/).
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.8.3"
26
+ "version": "0.8.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.8.3"
545
+ "version": "0.8.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.8.3"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.8.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.8.3",
71
+ "version": "0.8.4",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"