agentty 0.6.1 → 0.6.3

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,61 @@ 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.3] - 2026-03-16
9
+
10
+ ### Added
11
+
12
+ - Add tech-debt and security-audit analysis skills.
13
+ - Add at-mention file completion to question mode.
14
+ - Pass `--effort` flag to Claude CLI based on reasoning level.
15
+ - Generate protocol profiles with self-descriptive schemas.
16
+
17
+ ### Changed
18
+
19
+ - Refactor agent prompt preparation and split protocol subsystem.
20
+ - Move app-server clients under agent backends.
21
+ - Append change summaries and preserve summary payloads.
22
+ - Format done session summary as markdown sections.
23
+ - Parameterize runtime over generic `Backend` for in-process TUI testing.
24
+ - Restrict `a` (new session) shortcut to the Sessions tab.
25
+ - Finish typed SQLx query mapping cleanup.
26
+ - Refine implementation plans for meta-agent skills and execution backends.
27
+
28
+ ### Fixed
29
+
30
+ - Keep prompt mention state in sync with cursor.
31
+ - Fix footer bar branch rendering.
32
+
33
+ ### Contributors
34
+
35
+ - @andagaev
36
+ - @minev-dev
37
+
38
+ ## [v0.6.2] - 2026-03-12
39
+
40
+ ### Added
41
+
42
+ - Add multi-installer auto-update implementation plans.
43
+
44
+ ### Changed
45
+
46
+ - Make filesystem reads asynchronous.
47
+ - Unify protocol instruction prompt templates.
48
+ - Refactor publish branch input mode handling.
49
+ - Document setting keys and simplify publish updates.
50
+ - Refine session commit coauthor trailer handling.
51
+ - Expand session database and app regression test coverage.
52
+ - Handle startup app initialization errors gracefully.
53
+
54
+ ### Fixed
55
+
56
+ - Fix test and rebase mock failures on main.
57
+
58
+ ### Contributors
59
+
60
+ - @andagaev
61
+ - @minev-dev
62
+
8
63
  ## [v0.6.1] - 2026-03-12
9
64
 
10
65
  ### Added
package/README.md CHANGED
@@ -4,15 +4,6 @@
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
 
7
- Session view includes a manual branch-publish workflow so reviewed session
8
- branches can be pushed from the TUI before you open a pull request or merge
9
- request yourself.
10
-
11
- Prompt mode also supports pasted clipboard images for Codex, Gemini, and Claude
12
- sessions: press `Ctrl+V` or `Alt+V` while composing the first prompt or a
13
- reply to insert an inline `[Image #n]` placeholder backed by a local temp PNG
14
- upload.
15
-
16
7
  ## Installation
17
8
 
18
9
  ### Shell
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.6.1"
26
+ "version": "0.6.3"
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.1"
518
+ "version": "0.6.3"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.1",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.6.3",
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.1",
69
+ "version": "0.6.3",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"