agentty 0.7.9 → 0.8.0

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,30 @@ 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.8.0] - 2026-04-21
9
+
10
+ ### Added
11
+
12
+ - Add terminal session continuation that seeds a new session from completed or canceled work.
13
+ - Add `/apply` so focused-review suggestions can be sent back to the agent as a new prompt.
14
+ - Add background review-request polling plus refreshed session-view guidance and demo coverage.
15
+
16
+ ### Changed
17
+
18
+ - Refactor app orchestration, database repositories, and UI layout/state into narrower modules with typed `SessionId` handling.
19
+ - Improve forge workflow handling, including remote working-directory GitHub CLI execution and stacked review-request planning.
20
+ - Refresh release-policy, workflow, keybinding, and architecture documentation for the new session and review flows.
21
+
22
+ ### Fixed
23
+
24
+ - Add SQLite busy-timeout handling and align WAL persistence settings for more reliable session storage.
25
+ - Debounce stale `@`-mention loading, clear pending session tasks correctly, and preserve focused-review output through clarification flows.
26
+
27
+ ### Contributors
28
+
29
+ - @andagaev
30
+ - @minev-dev
31
+
8
32
  ## [v0.7.9] - 2026-04-18
9
33
 
10
34
  ### Changed
package/README.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
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.
6
6
 
7
+ <p align="center">
8
+ <img src="docs/site/static/demo/demo.gif" alt="Agentty demo" width="900" />
9
+ </p>
10
+
7
11
  ## Installation
8
12
 
9
13
  ### npm (recommended, supports auto-update)
@@ -52,9 +56,16 @@ agentty --no-update # Launch without automatic updates
52
56
 
53
57
  Documentation for installation and workflows is available at [agentty.xyz/docs](https://agentty.xyz/docs/).
54
58
 
59
+ > [!WARNING]
60
+ > Agentty is in active development. While releases follow Semantic Versioning, the
61
+ > current `0.y.z` series may still introduce breaking changes between releases as
62
+ > workflows, integrations, and safeguards evolve. Always review and verify the
63
+ > changes Agentty proposes or applies in your repositories before you rely on
64
+ > them.
65
+
55
66
  ## Contributing
56
67
 
57
- See [CONTRIBUTING.md](CONTRIBUTING.md) for `prek`-based development checks and contribution guidance.
68
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidance.
58
69
 
59
70
  ## License
60
71
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.7.9"
26
+ "version": "0.8.0"
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.9"
545
+ "version": "0.8.0"
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.9"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.8.0"
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.9",
71
+ "version": "0.8.0",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"