agentty 0.6.0 → 0.6.2

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,45 @@ 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.6.2] - 2026-03-12
9
+
10
+ ### Added
11
+
12
+ - Add multi-installer auto-update implementation plans.
13
+
14
+ ### Changed
15
+
16
+ - Make filesystem reads asynchronous.
17
+ - Unify protocol instruction prompt templates.
18
+ - Refactor publish branch input mode handling.
19
+ - Document setting keys and simplify publish updates.
20
+ - Refine session commit coauthor trailer handling.
21
+ - Expand session database and app regression test coverage.
22
+ - Handle startup app initialization errors gracefully.
23
+
24
+ ### Fixed
25
+
26
+ - Fix test and rebase mock failures on main.
27
+
28
+ ### Contributors
29
+
30
+ - @andagaev
31
+ - @minev-dev
32
+
33
+ ## [v0.6.1] - 2026-03-12
34
+
35
+ ### Added
36
+
37
+ - Add background auto-update with status bar progress and `--no-update` flag.
38
+ - Add codecov badge to README.
39
+ - Add postsubmit coverage workflow.
40
+ - Add chat output scrolling to question-answer mode.
41
+
42
+ ### Contributors
43
+
44
+ - @andagaev
45
+ - @minev-dev
46
+
8
47
  ## [v0.6.0] - 2026-03-11
9
48
 
10
49
  ### Added
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Agentty
2
2
 
3
- ![NPM Version](https://img.shields.io/npm/v/agentty)
3
+ ![NPM Version](https://img.shields.io/npm/v/agentty) [![codecov](https://codecov.io/gh/agentty-xyz/agentty/graph/badge.svg?token=YRGKGTM0HP)](https://codecov.io/gh/agentty-xyz/agentty)
4
4
 
5
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
6
 
@@ -41,6 +41,13 @@ Run without installing:
41
41
  npx agentty
42
42
  ```
43
43
 
44
+ ## Usage
45
+
46
+ ```sh
47
+ agentty # Launch with auto-update enabled (default)
48
+ agentty --no-update # Launch without automatic updates
49
+ ```
50
+
44
51
  ## Documentation
45
52
 
46
53
  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.6.0"
26
+ "version": "0.6.2"
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.6.0"
518
+ "version": "0.6.2"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.0",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.2",
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.6.0",
69
+ "version": "0.6.2",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"