agentty 0.7.7 → 0.7.9

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.7.9] - 2026-04-18
9
+
10
+ ### Changed
11
+
12
+ - Switch session worktree and branch naming from `agentty/` to `wt/` for brevity.
13
+ - Use detected session branch names in status and footer display.
14
+
15
+ ### Contributors
16
+
17
+ - @minev-dev
18
+
19
+ ## [v0.7.8] - 2026-04-17
20
+
21
+ ### Changed
22
+
23
+ - Migrate retired `claude-opus-4-6` model IDs to `claude-opus-4-7`.
24
+ - Disable Agentty coauthor trailer by default for new projects.
25
+ - Replace `pre-commit` references with `prek` across CI and documentation.
26
+ - Unify review publish input handling in session view.
27
+ - Update `README.md` project overview and installation guidance.
28
+
29
+ ### Removed
30
+
31
+ - Remove selectable `claude-opus-4-6` model (migrated to `claude-opus-4-7`).
32
+
33
+ ### Contributors
34
+
35
+ - @minev-dev
36
+
8
37
  ## [v0.7.7] - 2026-04-16
9
38
 
10
39
  ### Added
package/README.md CHANGED
@@ -2,37 +2,45 @@
2
2
 
3
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) [![Postsubmit](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml/badge.svg?branch=main)](https://github.com/agentty-xyz/agentty/actions/workflows/postsubmit.yml)
4
4
 
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
- Published session branches stay in sync automatically after later completed turns, so linked pull requests or merge requests do not drift behind the active worktree.
5
+ Agentty is an **ADE (Agentic Development Environment) for structured, controllable AI-assisted software development**. Built with Rust and [Ratatui](https://ratatui.rs), and refined through its own day-to-day use, it brings agents, review, and iteration into one focused terminal workflow.
7
6
 
8
7
  ## Installation
9
8
 
10
- ### Shell
9
+ ### npm (recommended, supports auto-update)
11
10
 
12
11
  ```sh
13
- curl --proto '=https' --tlsv1.2 -LsSf https://github.com/agentty-xyz/agentty/releases/latest/download/agentty-installer.sh | sh
12
+ npm install -g agentty
14
13
  ```
15
14
 
16
- ### Cargo
15
+ ### Other methods
16
+
17
+ <details>
18
+ <summary>npx (run without installing)</summary>
17
19
 
18
20
  ```sh
19
- cargo install agentty
21
+ npx agentty
20
22
  ```
21
23
 
22
- ### npm
24
+ </details>
25
+
26
+ <details>
27
+ <summary>Shell</summary>
23
28
 
24
29
  ```sh
25
- npm install -g agentty
30
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/agentty-xyz/agentty/releases/latest/download/agentty-installer.sh | sh
26
31
  ```
27
32
 
28
- ### npx
33
+ </details>
29
34
 
30
- Run without installing:
35
+ <details>
36
+ <summary>Cargo</summary>
31
37
 
32
38
  ```sh
33
- npx agentty
39
+ cargo install agentty
34
40
  ```
35
41
 
42
+ </details>
43
+
36
44
  ## Usage
37
45
 
38
46
  ```sh
@@ -46,7 +54,7 @@ Documentation for installation and workflows is available at [agentty.xyz/docs](
46
54
 
47
55
  ## Contributing
48
56
 
49
- See [CONTRIBUTING.md](CONTRIBUTING.md) for development checks and contribution guidance.
57
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for `prek`-based development checks and contribution guidance.
50
58
 
51
59
  ## License
52
60
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.7.7"
26
+ "version": "0.7.9"
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.7.7"
545
+ "version": "0.7.9"
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.7.7"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.7.9"
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.7.7",
71
+ "version": "0.7.9",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"