agentty 0.1.12 → 0.1.13

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,35 @@ 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.1.13] - 2026-02-19
9
+
10
+ ### Added
11
+ - **Session Output:** Render styled markdown in session chat output.
12
+ - **Session Output:** Switch to stream-json output and parse Gemini stream events.
13
+ - **Session Output:** Extract session output into dedicated UI component.
14
+ - **Update Check:** Show update availability in status bar and onboarding page.
15
+ - **Models:** Update Gemini Pro to version 3.1 and Claude Sonnet to version 4.6.
16
+ - **Models:** Add verbose flag to Claude stream-json commands.
17
+
18
+ ### Changed
19
+ - **Session Metadata:** Move session status to output panel title and metadata to chat input border.
20
+ - **Session Titles:** Persist session title and summary from squash commit message.
21
+ - **Session Titles:** Use full prompt as session title for new sessions.
22
+ - **Session Replay:** Replay session transcript once after model switch.
23
+ - **Git Actions:** Remove session commit count and always show git actions.
24
+ - **Diff View:** Use merge-base for session diff to accurately exclude base branch updates.
25
+ - **Rebase:** Refactor rebase logic into a reusable workflow.
26
+ - **Database:** Make session token stats non-nullable with zero defaults.
27
+ - **NPM:** Update package name to `agentty` in docs and badges.
28
+
29
+ ### Fixed
30
+ - **UI:** Fix session list table column layout constraints.
31
+ - **Runtime:** Add shutdown signal to event reader thread for cleaner exit.
32
+
33
+ ### Contributors
34
+ - @andagaev
35
+ - @minev-dev
36
+
8
37
  ## [v0.1.12] - 2026-02-19
9
38
 
10
39
  ### Added
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Agentty
2
2
 
3
- ![NPM Version](https://img.shields.io/npm/v/%40opencloudtool%2Fagentty)
3
+ ![NPM Version](https://img.shields.io/npm/v/agentty)
4
4
 
5
5
  A terminal UI tool for managing agents, built with Rust and [Ratatui](https://ratatui.rs).
6
6
 
@@ -23,7 +23,7 @@ cargo install agentty
23
23
  ### npm
24
24
 
25
25
  ```sh
26
- npm install -g @opencloudtool/agentty
26
+ npm install -g agentty
27
27
  ```
28
28
 
29
29
  ### npx
@@ -31,7 +31,7 @@ npm install -g @opencloudtool/agentty
31
31
  Run without installing:
32
32
 
33
33
  ```sh
34
- npx @opencloudtool/agentty
34
+ npx agentty
35
35
  ```
36
36
 
37
37
  ## Prerequisites
@@ -79,6 +79,19 @@ Agentty creates isolated worktrees for each session:
79
79
 
80
80
  This allows agents to work on code changes without affecting your main working directory.
81
81
 
82
+ ### Styled Session Output
83
+
84
+ - Agent responses in chat view now render a markdown subset with terminal styling.
85
+ - Supported formatting includes headings, bold/italic text, inline code, fenced code blocks, lists, blockquotes, and horizontal rules.
86
+ - User prompt lines (` › ...`) remain visually distinct in cyan bold styling.
87
+
88
+ ### Version Update Notice
89
+
90
+ - On startup, Agentty checks for the latest stable release tag from GitHub.
91
+ - If a newer version exists, an inline `New version vX.Y.Z available` notice is shown:
92
+ - in the top status bar next to the current version
93
+ - on the onboarding screen when there are no sessions
94
+
82
95
  ## Quickstart
83
96
 
84
97
  ```sh
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.1.12"
26
+ "version": "0.1.13"
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.1.12"
518
+ "version": "0.1.13"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.12",
2
+ "artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.1.13",
3
3
  "author": "Vladimir Minev",
4
4
  "bin": {
5
5
  "agentty": "run-agentty.js"
@@ -63,7 +63,7 @@
63
63
  "zipExt": ".tar.xz"
64
64
  }
65
65
  },
66
- "version": "0.1.12",
66
+ "version": "0.1.13",
67
67
  "volta": {
68
68
  "node": "18.14.1",
69
69
  "npm": "9.5.0"