agentty 0.5.1 → 0.5.3

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
@@ -5,6 +5,57 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v0.5.3] - 2026-03-06
9
+
10
+ ### Added
11
+
12
+ - **UI:** Support `Alt+Enter` and `Shift+Enter` newline entry across settings and prompt.
13
+ - **Session:** Generate session titles from user intent when the first start turn begins.
14
+
15
+ ### Changed
16
+
17
+ - **UI:** Migrate UI color usage to semantic palette tokens.
18
+ - **UI:** Refresh table visual styling across list and stats pages.
19
+ - **UI:** Render clarification prompts with distinct spacing and styling.
20
+ - **UI:** Render footer help as styled keybinding lines.
21
+ - **UI:** Session list uses shared page margin.
22
+ - **UI:** Stop `@mention` highlighting before trailing punctuation.
23
+ - **Session Output:** Improve verbatim markdown wrapping and Unicode width handling.
24
+ - **Session Output:** Preserve multiline user prompts across persistence and rendering.
25
+ - **Review:** Tighten review suggestion severity criteria and require concise actionable suggestions.
26
+ - **Architecture:** Refactor module roots into router-only modules.
27
+ - **Claude:** Enforce strict MCP config for Claude backend.
28
+ - **Docs:** Reframe UI beautification plan around implementation status.
29
+
30
+ ### Fixed
31
+
32
+ - **Session Output:** Prevent duplicate final assistant output after streaming.
33
+
34
+ ### Contributors
35
+
36
+ - @minev-dev
37
+
38
+ ## [v0.5.2] - 2026-03-05
39
+
40
+ ### Added
41
+
42
+ - **UI:** Support multiline open command editing in the settings tab.
43
+ - **UI:** Render session status header directly above the output panel.
44
+ - **Session:** Add open command selector when multiple launch commands are configured for a worktree.
45
+ - **Docs:** Add `CLAUDE` and `GEMINI` symlinks for module-level `AGENTS.md` files.
46
+
47
+ ### Changed
48
+
49
+ - **Architecture:** Rename `app` and `ui` module roots to singular names (`app.rs`, `ui.rs`, `domain.rs`, `infra.rs`, `runtime.rs`).
50
+ - **Architecture:** Parse merge commit messages from structured protocol output.
51
+ - **Architecture:** Harden `AGENTS.md` index validation and normalize directory index links.
52
+ - **Docs:** Prevent content and table-of-contents text overflow on the documentation site.
53
+ - **Docs:** Expand runtime flow documentation and add doc comments across migration, runtime, UI, and database helpers.
54
+
55
+ ### Contributors
56
+
57
+ - @minev-dev
58
+
8
59
  ## [v0.5.1] - 2026-03-04
9
60
 
10
61
  ### Added
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.5.1"
26
+ "version": "0.5.3"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.5.1"
518
+ "version": "0.5.3"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.1",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.3",
3
3
  "bin": {
4
4
  "agentty": "run-agentty.js"
5
5
  },
@@ -66,7 +66,7 @@
66
66
  "zipExt": ".tar.xz"
67
67
  }
68
68
  },
69
- "version": "0.5.1",
69
+ "version": "0.5.3",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"