agentty 0.7.6 → 0.7.8
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 +42 -0
- package/README.md +20 -12
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,48 @@ 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.8] - 2026-04-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Migrate retired `claude-opus-4-6` model IDs to `claude-opus-4-7`.
|
|
13
|
+
- Disable Agentty coauthor trailer by default for new projects.
|
|
14
|
+
- Replace `pre-commit` references with `prek` across CI and documentation.
|
|
15
|
+
- Unify review publish input handling in session view.
|
|
16
|
+
- Update `README.md` project overview and installation guidance.
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
|
|
20
|
+
- Remove selectable `claude-opus-4-6` model (migrated to `claude-opus-4-7`).
|
|
21
|
+
|
|
22
|
+
### Contributors
|
|
23
|
+
|
|
24
|
+
- @minev-dev
|
|
25
|
+
|
|
26
|
+
## [v0.7.7] - 2026-04-16
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- Add `ClaudeOpus47` model variant and set it as the default Claude model.
|
|
31
|
+
- Allow canceling unstarted draft sessions from the session list.
|
|
32
|
+
- Add render hot-path documentation for shared markdown caches.
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- Reorder session output rendering by chronological state.
|
|
37
|
+
- Update `setup-uv` GitHub Action to v8.1.0 in CI workflows.
|
|
38
|
+
- Review commit workflow guidance and align CI with pre-commit validation.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Load @-mention entries from project root for unmaterialized draft sessions.
|
|
43
|
+
- Stabilize settings navigation E2E with seeded model settings.
|
|
44
|
+
|
|
45
|
+
### Contributors
|
|
46
|
+
|
|
47
|
+
- @andagaev
|
|
48
|
+
- @minev-dev
|
|
49
|
+
|
|
8
50
|
## [v0.7.6] - 2026-04-16
|
|
9
51
|
|
|
10
52
|
### Changed
|
package/README.md
CHANGED
|
@@ -2,37 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
 [](https://codecov.io/gh/agentty-xyz/agentty) [](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**.
|
|
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
|
-
###
|
|
9
|
+
### npm (recommended, supports auto-update)
|
|
11
10
|
|
|
12
11
|
```sh
|
|
13
|
-
|
|
12
|
+
npm install -g agentty
|
|
14
13
|
```
|
|
15
14
|
|
|
16
|
-
###
|
|
15
|
+
### Other methods
|
|
16
|
+
|
|
17
|
+
<details>
|
|
18
|
+
<summary>npx (run without installing)</summary>
|
|
17
19
|
|
|
18
20
|
```sh
|
|
19
|
-
|
|
21
|
+
npx agentty
|
|
20
22
|
```
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
</details>
|
|
25
|
+
|
|
26
|
+
<details>
|
|
27
|
+
<summary>Shell</summary>
|
|
23
28
|
|
|
24
29
|
```sh
|
|
25
|
-
|
|
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
|
-
|
|
33
|
+
</details>
|
|
29
34
|
|
|
30
|
-
|
|
35
|
+
<details>
|
|
36
|
+
<summary>Cargo</summary>
|
|
31
37
|
|
|
32
38
|
```sh
|
|
33
|
-
|
|
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
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "agentty",
|
|
26
|
-
"version": "0.7.
|
|
26
|
+
"version": "0.7.8"
|
|
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.
|
|
545
|
+
"version": "0.7.8"
|
|
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.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.7.8"
|
|
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.
|
|
71
|
+
"version": "0.7.8",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|