agentty 0.5.4 → 0.5.6

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,55 @@ 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.6] - 2026-03-09
9
+
10
+ ### Added
11
+
12
+ - **Agent:** Add predefined answer options for agent questions.
13
+ - **Agent:** Add mandatory per-turn change summaries to agent protocol.
14
+ - **Infra:** Implement forge CLI review-request adapters (GitHub/GitLab PR/MR workflows).
15
+ - **UI:** Add session view review request workflows (create, open, refresh).
16
+ - **UI:** Show project scope in list tabs.
17
+ - **Settings:** Scope settings per project.
18
+ - **Review:** Auto-start focused review generation on session Review transition and cache results.
19
+
20
+ ### Changed
21
+
22
+ - **UI:** Change focused review navigation to open/regenerate with exit key.
23
+ - **UI:** Remove external editor shortcut (`e`).
24
+ - **Git:** Remove session worktrees when review sessions are canceled.
25
+
26
+ ### Contributors
27
+
28
+ - @andagaev
29
+ - @dependabot[bot]
30
+ - @minev-dev
31
+
32
+ ## [v0.5.5] - 2026-03-07
33
+
34
+ ### Added
35
+
36
+ - **Skill:** Add `implementation-plan` skill for managing project plans.
37
+ - **Docs:** Add Forge review request support plan.
38
+ - **Docs:** Add GitHub issue form templates and directory indexing.
39
+ - **Infra:** Add default pull request template for the repository.
40
+ - **UI:** Add Agentty info panel to the project list.
41
+ - **UI:** Chat panel gets polished chrome and unified overlay styling with dimmed backdrop.
42
+
43
+ ### Changed
44
+
45
+ - **Codex:** Promote `gpt-5.4` as the default Codex model.
46
+ - **UI:** Keep question input visible in tight terminal layouts.
47
+ - **Docs:** Refine Agentty description.
48
+
49
+ ### Fixed
50
+
51
+ - **Skill:** Clarify requirements and plan structure for `implementation-plan` skill.
52
+
53
+ ### Contributors
54
+
55
+ - @minev-dev
56
+
8
57
  ## [v0.5.4] - 2026-03-06
9
58
 
10
59
  ### Added
@@ -176,7 +225,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
176
225
 
177
226
  - **Codex:** Load usage limits lazily and remove usage panel/polling.
178
227
  - **Codex:** Update model defaults and remove `gpt-5.2-codex`.
179
- - **UI:** Open `nvim` in read-only mode.
180
228
  - **UI:** Refine info overlay and session list padding.
181
229
  - **Architecture:** Extract process boundaries (tmux, editor, sync) and inject dependencies (clock, sleeper, git) for better testability.
182
230
  - **Architecture:** Propagate assistant phase metadata in app-server streams.
@@ -196,7 +244,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
196
244
 
197
245
  ### Added
198
246
 
199
- - **UI:** Support opening nvim (`e` key) from session screens preserving terminal input flow.
200
247
  - **UI:** Add Cmd+Backspace current-line deletion in prompt.
201
248
  - **Settings:** Add default review model and separate default smart/fast model settings.
202
249
  - **Review:** Enforce read-only constraints for focused review assist and refine prompt structure.
package/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  ![NPM Version](https://img.shields.io/npm/v/agentty)
4
4
 
5
- Agentty is a terminal-first **Agentic Development Environment (ADE)**, designed for building software alongside AI agents, and is itself developed with Agentty. It is built with Rust and [Ratatui](https://ratatui.rs), with a deeply integrated, git-native workflow.
5
+ Agentty is an **ADE (Agentic Development Environment) for structured, controllable AI-assisted software development**. It is itself developed with Agentty, built with Rust and [Ratatui](https://ratatui.rs), and designed around a deeply integrated workflow.
6
+
7
+ Session view includes first-class review workflows for linked GitHub pull
8
+ requests and GitLab merge requests, including create/link, open-link, and
9
+ manual refresh actions from the TUI.
6
10
 
7
11
  ## Installation
8
12
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.5.4"
26
+ "version": "0.5.6"
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.4"
518
+ "version": "0.5.6"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.4",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.6",
3
3
  "bin": {
4
4
  "agentty": "run-agentty.js"
5
5
  },
@@ -14,7 +14,7 @@
14
14
  "detect-libc": "^2.1.2",
15
15
  "rimraf": "^6.1.2"
16
16
  },
17
- "description": "Agentic Development Environment (ADE) in your terminal",
17
+ "description": "Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.",
18
18
  "devDependencies": {
19
19
  "prettier": "^3.7.4"
20
20
  },
@@ -66,7 +66,7 @@
66
66
  "zipExt": ".tar.xz"
67
67
  }
68
68
  },
69
- "version": "0.5.4",
69
+ "version": "0.5.6",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"