agentty 0.2.0 → 0.2.1
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 +27 -0
- package/README.md +6 -10
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ 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.2.1] - 2026-02-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Session Output:** Add toggle to switch between summary and full output for completed sessions.
|
|
13
|
+
- **Release:** Require explicit confirmation for version bump type in release skill.
|
|
14
|
+
- **Runtime:** Track active turn ID to prevent race conditions during turn completion.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **Architecture:** Refactor UI routing and overlays into dedicated modules and centralize frame drawing.
|
|
19
|
+
- **Session:** Defer session cleanup and load at-mention entries asynchronously for faster startup.
|
|
20
|
+
- **Git:** Retry git commands on index lock contention and simplify session view handling.
|
|
21
|
+
- **Settings:** Only persist default model when the "last-used" option is enabled.
|
|
22
|
+
- **Rebase:** Improve recovery from stale metadata during rebase assist.
|
|
23
|
+
- **Permissions:** Consolidate permission handling into a single "Auto Edit" mode.
|
|
24
|
+
|
|
25
|
+
### Removed
|
|
26
|
+
|
|
27
|
+
- **Permissions:** Remove legacy permission mode column from database and UI.
|
|
28
|
+
- **Permissions:** Remove non-auto permission modes and plan follow-up functionality.
|
|
29
|
+
|
|
30
|
+
### Contributors
|
|
31
|
+
|
|
32
|
+
- @andagaev
|
|
33
|
+
- @minev-dev
|
|
34
|
+
|
|
8
35
|
## [v0.2.0] - 2026-02-22
|
|
9
36
|
|
|
10
37
|
### Added
|
package/README.md
CHANGED
|
@@ -42,25 +42,23 @@ npx agentty
|
|
|
42
42
|
|
|
43
43
|
## Session Agent, Model, and Permission Mode
|
|
44
44
|
|
|
45
|
-
Agent, model, and permission mode are configured per session
|
|
46
|
-
selection becomes the default for newly created sessions.
|
|
45
|
+
Agent, model, and permission mode are configured per session.
|
|
47
46
|
|
|
48
|
-
- New sessions start with the
|
|
49
|
-
`permission_mode`.
|
|
47
|
+
- New sessions start with the configured `Default Model` value from `Settings`
|
|
48
|
+
plus the most recently used `permission_mode`.
|
|
50
49
|
- On a fresh setup (no previous session changes), defaults are `gemini` +
|
|
51
50
|
`gemini-3-flash-preview` + `auto_edit`.
|
|
52
51
|
- In prompt mode, type `/model` as the first input token to open the multistep picker:
|
|
53
52
|
- choose agent (`gemini`, `codex`, `claude`)
|
|
54
53
|
- choose model from that agent's curated model list
|
|
54
|
+
- In `Settings` -> `Default Model`, select `Last used model as default` to
|
|
55
|
+
persist model switches as the next-session default across app restarts.
|
|
55
56
|
- In prompt mode, press `Up` / `Down` to iterate previously sent messages for the active session and quickly resend/edit them.
|
|
56
|
-
- Press `Shift+Tab` in chat view or prompt mode to toggle permission mode for the current session.
|
|
57
57
|
- Permission modes:
|
|
58
58
|
- `auto_edit` (default): runs with standard edit permissions.
|
|
59
|
-
- `autonomous`: runs with elevated autonomy (backend-specific flags such as `--yolo` or skipping permission prompts).
|
|
60
|
-
- `plan`: asks the agent for a detailed plan instead of implementation.
|
|
61
59
|
- After a plan response in chat view, an inline action bar appears:
|
|
62
60
|
- `Implement the plan`: switches that session to `auto_edit` and sends an implementation prompt.
|
|
63
|
-
- `Type feedback`: opens prompt input so you can send feedback
|
|
61
|
+
- `Type feedback`: opens prompt input so you can send feedback without changing permission mode.
|
|
64
62
|
- Use `Up` / `Down` arrows to choose and `Enter` to confirm.
|
|
65
63
|
- The active mode is shown in the session chat title.
|
|
66
64
|
- Changes are persisted for that session and used as defaults for future sessions.
|
|
@@ -72,9 +70,7 @@ selection becomes the default for newly created sessions.
|
|
|
72
70
|
- If the app-server connection fails, Agentty retries by restarting Codex app-server with a new thread.
|
|
73
71
|
- When a Codex thread is reset, Agentty replays the session transcript in the next turn prompt so implementation can continue with prior context.
|
|
74
72
|
- Codex session modes map to app-server permissions:
|
|
75
|
-
- `plan`: `approvalPolicy=on-request` and read-only sandbox. Pre-action file/command requests are declined.
|
|
76
73
|
- `auto_edit`: `approvalPolicy=on-request` and workspace-write sandbox. Pre-action file/command requests are accepted.
|
|
77
|
-
- `autonomous`: `approvalPolicy=never` and danger-full-access sandbox. If a pre-action request still appears, it is accepted for the session.
|
|
78
74
|
|
|
79
75
|
## Features
|
|
80
76
|
|
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.2.
|
|
26
|
+
"version": "0.2.1"
|
|
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.2.
|
|
518
|
+
"version": "0.2.1"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.2.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.2.1",
|
|
3
3
|
"author": "Vladimir Minev",
|
|
4
4
|
"bin": {
|
|
5
5
|
"agentty": "run-agentty.js"
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"zipExt": ".tar.xz"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"version": "0.2.
|
|
66
|
+
"version": "0.2.1",
|
|
67
67
|
"volta": {
|
|
68
68
|
"node": "18.14.1",
|
|
69
69
|
"npm": "9.5.0"
|