agentty 0.8.1 → 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,6 +7,75 @@ 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
+
40
+ ## [v0.8.3] - 2026-04-24
41
+
42
+ ### Changed
43
+
44
+ - build: remove pinned version comments from release.yml
45
+
46
+ ### Contributors
47
+
48
+ - @minev-dev
49
+
50
+ ## [v0.8.2] - 2026-04-24
51
+
52
+ ### Added
53
+
54
+ - Animate session loaders with frame-aware rendering.
55
+ - Preserve source session context when creating continuation drafts.
56
+
57
+ ### Changed
58
+
59
+ - Recess clarification prompt background with dedicated palette surface.
60
+ - Route coverage and end-to-end checks to postsubmit.
61
+ - Adopt `cargo-nextest` for workspace tests and coverage.
62
+ - Pin GitHub workflows to immutable action SHAs.
63
+ - Update Context7 setup command.
64
+ - Raise pre-commit source-test coverage thresholds.
65
+
66
+ ### Fixed
67
+
68
+ - Show review fallback status when no review text is available and refresh staged-draft sessions immediately.
69
+ - Preserve focused review visibility after completion across prompt, question, and done sessions.
70
+ - Preserve user-cancelled turns as canceled sessions.
71
+ - Track turn prompt source to preserve agent payload text.
72
+ - Restrict protocol questions to genuine clarifications.
73
+
74
+ ### Contributors
75
+
76
+ - @andagaev
77
+ - @minev-dev
78
+
10
79
  ## [v0.8.1] - 2026-04-24
11
80
 
12
81
  ### Added
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.1"
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.1"
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.1"
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.1",
71
+ "version": "0.8.4",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"