agentty 0.1.13 → 0.2.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 +137 -1
- package/README.md +38 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,100 @@ 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.0] - 2026-02-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Plan:** Add iterative plan question flow with per-question answer options.
|
|
13
|
+
- **Sync:** Run branch sync in background with loading popup and outcome display.
|
|
14
|
+
- **Sync:** Add session branch sync action with sync-blocked popup.
|
|
15
|
+
- **Sync:** Add assisted conflict resolution for sync main rebase.
|
|
16
|
+
- **Stats:** Add Codex usage limits to stats dashboard.
|
|
17
|
+
- **Stats:** Persist session-creation activity and render by local day.
|
|
18
|
+
- **Stats:** Persist and display all-time model usage and longest session duration.
|
|
19
|
+
- **Help:** Help system uses state-aware action projection.
|
|
20
|
+
- **Dev Server:** Add editable Dev Server setting and run when opening session tmux window.
|
|
21
|
+
- **UX:** Add `h`/`l` shortcuts for confirmation selection.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **Architecture:** Refactor agent infrastructure into provider modules.
|
|
26
|
+
- **Architecture:** Split git infrastructure and UI utilities into focused modules.
|
|
27
|
+
- **Architecture:** Inject `GitClient` into app workflows and isolate multi-command git tests.
|
|
28
|
+
- **Refactor:** Move file indexing into infra module and parse using `pulldown-cmark`.
|
|
29
|
+
- **Refactor:** Rename state, file, and mode modules for clarity.
|
|
30
|
+
- **Refactor:** Move module roots from `mod.rs` to sibling files.
|
|
31
|
+
- **Sync:** Add project and branch context to sync popups.
|
|
32
|
+
- **Sync:** Sync main branch by pushing after rebase.
|
|
33
|
+
- **Plan:** Improve plan follow-ups and Codex stats limit rendering.
|
|
34
|
+
- **UX:** Use shared confirmation mode for quit and session deletion.
|
|
35
|
+
- **UX:** Confirmation prompts default to "No" selection.
|
|
36
|
+
- **UX:** Hide open-worktree shortcut for done sessions and restrict view actions while running.
|
|
37
|
+
- **Commit:** Preserve a single evolving session commit.
|
|
38
|
+
- **Search:** Prioritize basename matches in file list fuzzy scoring.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- **Codex:** Fix app-server error status recovery and wait for responses before parsing limits.
|
|
43
|
+
- **Stability:** Fix launch and lint regressions after rebase.
|
|
44
|
+
- **UI:** Deduplicate list background rendering and reset grouped session table offset.
|
|
45
|
+
|
|
46
|
+
### Removed
|
|
47
|
+
|
|
48
|
+
- **Refactor:** Remove orphaned top-level source files from `src/`.
|
|
49
|
+
- **Refactor:** Remove `pr-testing` directory references.
|
|
50
|
+
|
|
51
|
+
### Contributors
|
|
52
|
+
|
|
53
|
+
- @andagaev
|
|
54
|
+
- @minev-dev
|
|
55
|
+
|
|
56
|
+
## [v0.1.14] - 2026-02-21
|
|
57
|
+
|
|
58
|
+
### Added
|
|
59
|
+
|
|
60
|
+
- **Stats:** Add activity heatmap to the Stats tab.
|
|
61
|
+
- **Stats:** Track per-model session usage and render usage summaries.
|
|
62
|
+
- **Settings:** Add settings tab and persist default model.
|
|
63
|
+
- **Diff View:** Split diff view into file list and content panels with file explorer navigation.
|
|
64
|
+
- **Diff View:** Render changed files as a tree in the file explorer.
|
|
65
|
+
- **Diff View:** Filter diff view content by selected file explorer item.
|
|
66
|
+
- **Site:** Add agentty.xyz documentation site with GitHub Pages deployment workflow.
|
|
67
|
+
|
|
68
|
+
### Changed
|
|
69
|
+
|
|
70
|
+
- **Architecture:** Refactor codebase into domain, infrastructure, and UI state modules.
|
|
71
|
+
- **Architecture:** Move tab state into a dedicated tab manager.
|
|
72
|
+
- **Session List:** Group sessions by merge queue and separate archived sessions with placeholders.
|
|
73
|
+
- **Session List:** Align session navigation with grouped list order.
|
|
74
|
+
- **Session Output:** Render session output and user prompt blocks as markdown.
|
|
75
|
+
- **Session Output:** Preserve multiline user prompt block spacing and verbatim rendering.
|
|
76
|
+
- **Merge Queue:** Queue session merges in FIFO order and handle queued sessions across app and UI.
|
|
77
|
+
- **Merge Queue:** Advance merge queue progression and retry on git index lock failures.
|
|
78
|
+
- **Merge:** Treat already-applied squash merges as successful.
|
|
79
|
+
- **Rebase:** Harden rebase assist loop against partially resolved conflicts.
|
|
80
|
+
- **Output:** Task service batches streamed output before flushing.
|
|
81
|
+
- **Output:** Separate streamed response messages for Codex output spacing.
|
|
82
|
+
- **Models:** Load default session model from persisted setting.
|
|
83
|
+
- **Models:** Use npm semver for version checks and restore version display in status bar.
|
|
84
|
+
- **Prompt:** Handle multiline paste and control-key newlines in prompt input.
|
|
85
|
+
- **Site:** Redesign landing page with dark terminal theme, Tailwind CSS v4, and theme selector.
|
|
86
|
+
- **Deps:** Bump dependency versions.
|
|
87
|
+
|
|
88
|
+
### Fixed
|
|
89
|
+
|
|
90
|
+
- **Build:** Fix refactor regressions and restore build stability after module restructure.
|
|
91
|
+
|
|
92
|
+
### Contributors
|
|
93
|
+
|
|
94
|
+
- @andagaev
|
|
95
|
+
- @dependabot[bot]
|
|
96
|
+
- @minev-dev
|
|
97
|
+
|
|
8
98
|
## [v0.1.13] - 2026-02-19
|
|
9
99
|
|
|
10
100
|
### Added
|
|
101
|
+
|
|
11
102
|
- **Session Output:** Render styled markdown in session chat output.
|
|
12
103
|
- **Session Output:** Switch to stream-json output and parse Gemini stream events.
|
|
13
104
|
- **Session Output:** Extract session output into dedicated UI component.
|
|
@@ -16,6 +107,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
107
|
- **Models:** Add verbose flag to Claude stream-json commands.
|
|
17
108
|
|
|
18
109
|
### Changed
|
|
110
|
+
|
|
19
111
|
- **Session Metadata:** Move session status to output panel title and metadata to chat input border.
|
|
20
112
|
- **Session Titles:** Persist session title and summary from squash commit message.
|
|
21
113
|
- **Session Titles:** Use full prompt as session title for new sessions.
|
|
@@ -27,21 +119,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
27
119
|
- **NPM:** Update package name to `agentty` in docs and badges.
|
|
28
120
|
|
|
29
121
|
### Fixed
|
|
122
|
+
|
|
30
123
|
- **UI:** Fix session list table column layout constraints.
|
|
31
124
|
- **Runtime:** Add shutdown signal to event reader thread for cleaner exit.
|
|
32
125
|
|
|
33
126
|
### Contributors
|
|
127
|
+
|
|
34
128
|
- @andagaev
|
|
35
129
|
- @minev-dev
|
|
36
130
|
|
|
37
131
|
## [v0.1.12] - 2026-02-19
|
|
38
132
|
|
|
39
133
|
### Added
|
|
134
|
+
|
|
40
135
|
- **Session UX:** Added a delete confirmation mode with selectable actions for session deletion.
|
|
41
136
|
- **Output Streaming:** Added a live single-line progress indicator in chat and spacing before the first streamed response chunk.
|
|
42
137
|
- **Agent Runtime:** Added Codex output streaming during non-interactive runs and follow-up actions for plan mode replies.
|
|
43
138
|
|
|
44
139
|
### Changed
|
|
140
|
+
|
|
45
141
|
- **Git Runtime:** Completed async `git` module transition to `spawn_blocking` and updated call sites.
|
|
46
142
|
- **Session Model:** Refactored sessions to derive `AgentKind` from `AgentModel`, removed the session `agent` column, and migrated legacy PR statuses to `Review`.
|
|
47
143
|
- **Merge/Rebase:** Improved merge and rebase robustness by auto-committing pending changes before merge/rebase and broadening auto-commit assistance handling.
|
|
@@ -50,16 +146,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
50
146
|
- **Config:** Removed `npm-scope` from `dist-workspace.toml`.
|
|
51
147
|
|
|
52
148
|
### Removed
|
|
149
|
+
|
|
53
150
|
- **Pull Requests:** Removed pull request functionality.
|
|
54
151
|
- **UI Cleanup:** Removed delete confirmation bottom hints.
|
|
55
152
|
|
|
56
153
|
### Contributors
|
|
154
|
+
|
|
57
155
|
- @andagaev
|
|
58
156
|
- @minev-dev
|
|
59
157
|
|
|
60
158
|
## [v0.1.11] - 2026-02-16
|
|
61
159
|
|
|
62
160
|
### Added
|
|
161
|
+
|
|
63
162
|
- **Permissions:** Add per-session permission mode toggle and `Plan` permission mode with denial-gated response parsing.
|
|
64
163
|
- **Session Control:** Add `Ctrl+c` to stop running agent sessions.
|
|
65
164
|
- **Prompt History:** Implement prompt history navigation with up/down arrows.
|
|
@@ -70,6 +169,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
70
169
|
- **Terminal Summaries:** Persist terminal summaries for session outcomes.
|
|
71
170
|
|
|
72
171
|
### Changed
|
|
172
|
+
|
|
73
173
|
- **Architecture:** Refactor app into manager composition with event-driven session state updates and reducer-based routing for git status, PR control, and session mutations.
|
|
74
174
|
- **Architecture:** Split session module and centralize lookups; separate session snapshots from runtime handles.
|
|
75
175
|
- **Session Defaults:** New sessions inherit the latest session's agent, model, and permission mode.
|
|
@@ -82,20 +182,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
82
182
|
- **Docs:** Document app module architecture and public API docs; add cargo install instructions to README.
|
|
83
183
|
|
|
84
184
|
### Removed
|
|
185
|
+
|
|
85
186
|
- **Health Module:** Remove health check module and wiring.
|
|
86
187
|
|
|
87
188
|
### Contributors
|
|
189
|
+
|
|
88
190
|
- @andagaev
|
|
89
191
|
- @minev-dev
|
|
90
192
|
|
|
91
193
|
## [v0.1.10] - 2026-02-15
|
|
92
194
|
|
|
93
195
|
### Added
|
|
196
|
+
|
|
94
197
|
- **Review Workflow:** Added an explicit `Merging` session status and a review-session rebase action.
|
|
95
198
|
- **Session UX:** Added read-only controls for done sessions and a `/clear` slash command.
|
|
96
199
|
- **Help UI:** Added a `?` keybinding with an updated overlay and descriptive slash-command menu.
|
|
97
200
|
|
|
98
201
|
### Changed
|
|
202
|
+
|
|
99
203
|
- **Session List:** Split session metadata into `Project`, `Model`, and `Status` columns with dynamic width sizing.
|
|
100
204
|
- **Runtime:** Run session commands through per-session workers and restore interrupted sessions into `Review`.
|
|
101
205
|
- **Stats:** Accumulate token usage over time and preserve stats after `/clear`.
|
|
@@ -103,6 +207,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
103
207
|
- **UI Cleanup:** Removed agent labels from session list rows and session chat titles.
|
|
104
208
|
|
|
105
209
|
### Contributors
|
|
210
|
+
|
|
106
211
|
- @andagaev
|
|
107
212
|
- @dependabot[bot]
|
|
108
213
|
- @minev-dev
|
|
@@ -110,55 +215,66 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
110
215
|
## [v0.1.9] - 2026-02-13
|
|
111
216
|
|
|
112
217
|
### Added
|
|
218
|
+
|
|
113
219
|
- **Diff View:** Added diff content wrapping to render long changed lines without truncation.
|
|
114
220
|
- **Diff View:** Added structured parsing with line-number gutters (`old│new`) for unified diffs.
|
|
115
221
|
- **Docs:** Added a demo GIF to the README and documented GIF generation with VHS.
|
|
116
222
|
|
|
117
223
|
### Changed
|
|
224
|
+
|
|
118
225
|
- **Diff View:** Compare against each session's base branch so review shows all accumulated changes.
|
|
119
226
|
- **Workflow:** Simplified commit flow by auto-committing after agent iterations and removing manual commit mode.
|
|
120
227
|
- **Release Docs:** Added contributor-list requirements and examples to the release workflow documentation.
|
|
121
228
|
|
|
122
229
|
### Contributors
|
|
230
|
+
|
|
123
231
|
- @minev-dev
|
|
124
232
|
|
|
125
233
|
## [v0.1.8] - 2026-02-13
|
|
126
234
|
|
|
127
235
|
### Added
|
|
236
|
+
|
|
128
237
|
- **Onboarding:** Added a full-screen onboarding page shown when no sessions exist.
|
|
129
238
|
- **Tests:** Added onboarding behavior coverage for app state, list mode `Enter` handling, and UI rendering conditions.
|
|
130
239
|
|
|
131
240
|
### Changed
|
|
241
|
+
|
|
132
242
|
- **UX:** Pressing `Enter` from the onboarding view now creates a new session and opens prompt mode directly.
|
|
133
243
|
- **Error Handling:** Session creation errors in list mode are now surfaced instead of being silently ignored.
|
|
134
244
|
- **UI:** Kept the footer visible during onboarding and simplified session list rendering to consistently use the table layout.
|
|
135
245
|
|
|
136
246
|
### Contributors
|
|
247
|
+
|
|
137
248
|
- @minev-dev
|
|
138
249
|
|
|
139
250
|
## [v0.1.7] - 2026-02-12
|
|
140
251
|
|
|
141
252
|
### Added
|
|
253
|
+
|
|
142
254
|
- **UI:** Show session worktree path and branch in the footer bar for better context awareness.
|
|
143
255
|
- **UI:** Display commit count in the session chat title.
|
|
144
256
|
- **Stats:** Add session token usage statistics to the Stats page.
|
|
145
257
|
|
|
146
258
|
### Changed
|
|
259
|
+
|
|
147
260
|
- **Persistence:** Moved application data directory from `/var/tmp/.agentty` to `~/.agentty` for better persistence and standard compliance.
|
|
148
261
|
- **UX:** Renamed "Roadmap" tab to "Stats" to better reflect its content.
|
|
149
262
|
- **UX:** Use shortened 8-character UUIDs for session folders and git branches to reduce clutter.
|
|
150
263
|
- **Internal:** Standardized session ID variable naming across the codebase.
|
|
151
264
|
|
|
152
265
|
### Contributors
|
|
266
|
+
|
|
153
267
|
- @andagaev
|
|
154
268
|
- @minev-dev
|
|
155
269
|
|
|
156
270
|
## [v0.1.6] - 2026-02-10
|
|
157
271
|
|
|
158
272
|
### Added
|
|
273
|
+
|
|
159
274
|
- **Session Status:** Added a `Committing` status to make commit progress explicit in the session lifecycle.
|
|
160
275
|
|
|
161
276
|
### Changed
|
|
277
|
+
|
|
162
278
|
- **Persistence:** Persist session prompt/output history in SQLite and load it on startup so chat history survives app reloads.
|
|
163
279
|
- **Session Output:** Parse agent JSON output and display only the response message in session output.
|
|
164
280
|
- **GitHub Integration:** Parse GitHub PR responses using typed serde structs and move GitHub CLI logic into a dedicated `gh` module.
|
|
@@ -167,21 +283,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
167
283
|
- **Documentation:** Extract git commit guidance into the shared skills documentation.
|
|
168
284
|
|
|
169
285
|
### Fixed
|
|
286
|
+
|
|
170
287
|
- **Tests:** Stabilized merge cleanup testing to avoid environment-dependent blocking during release verification.
|
|
171
288
|
|
|
172
289
|
### Contributors
|
|
290
|
+
|
|
173
291
|
- @andagaev
|
|
174
292
|
- @minev-dev
|
|
175
293
|
|
|
176
294
|
## [v0.1.5] - 2026-02-08
|
|
177
295
|
|
|
178
296
|
### Added
|
|
297
|
+
|
|
179
298
|
- **Tests:** Added runtime mode handler coverage tests.
|
|
180
299
|
- **Documentation:** Added local `AGENTS.md` files and enforced folder index checks.
|
|
181
300
|
- **Documentation:** Added Context7-first rule for retrieving latest tool info.
|
|
182
301
|
- **Documentation:** Documented dependency injection testability guidance.
|
|
183
302
|
|
|
184
303
|
### Changed
|
|
304
|
+
|
|
185
305
|
- **Architecture:** Modularized app and runtime into focused modules (`app/` and `runtime/`).
|
|
186
306
|
- **Runtime:** Injected event source into the runtime event loop for better testability.
|
|
187
307
|
- **Session:** Made agent and model configurations session-scoped.
|
|
@@ -190,17 +310,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
190
310
|
- **Refactor:** Refactored long handlers to enforce clippy line limits.
|
|
191
311
|
|
|
192
312
|
### Contributors
|
|
313
|
+
|
|
193
314
|
- @minev-dev
|
|
194
315
|
|
|
195
316
|
## [v0.1.4] - 2026-02-08
|
|
196
317
|
|
|
197
318
|
### Added
|
|
319
|
+
|
|
198
320
|
- **Session Identity:** Migrated session IDs to UUIDs for stable identification.
|
|
199
321
|
- **Session Management:** Added a forward-only migration system for schema changes.
|
|
200
322
|
- **UI:** Added nullable title support to sessions.
|
|
201
323
|
- **UI:** Improved chat input with indentation preservation on wrapped lines.
|
|
202
324
|
|
|
203
325
|
### Changed
|
|
326
|
+
|
|
204
327
|
- **Session Ordering:** Sessions are now strictly ordered by `updated_at` (latest first).
|
|
205
328
|
- **Performance:** Implemented incremental session state refresh to reduce database load.
|
|
206
329
|
- **UX:** Moved prompt cursor by visual wrapped lines for better navigation.
|
|
@@ -210,24 +333,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
210
333
|
- **Database:** Use multiline SQL strings for better query readability.
|
|
211
334
|
|
|
212
335
|
### Removed
|
|
336
|
+
|
|
213
337
|
- Removed project-filtered session loader.
|
|
214
338
|
- Removed git worktree suffix from initial session prompt.
|
|
215
339
|
- Removed Reply mode; unified into session chat page.
|
|
216
340
|
|
|
217
341
|
### Contributors
|
|
342
|
+
|
|
218
343
|
- @minev-dev
|
|
219
344
|
|
|
220
345
|
## [v0.1.3] - 2026-02-08
|
|
221
346
|
|
|
222
347
|
### Added
|
|
348
|
+
|
|
223
349
|
- **Backends:** Added Codex backend support.
|
|
224
350
|
- **Project Management:** Added project switching with automatic sibling discovery.
|
|
225
351
|
- **Diff View:** Show all file changes in diff view.
|
|
226
352
|
- **Status:** Show status as text in session list and chat title.
|
|
227
353
|
- **Health:** Added version normalization for agent checks.
|
|
228
|
-
- **Testing:** Added `pr-testing` directory to root index.
|
|
229
354
|
|
|
230
355
|
### Changed
|
|
356
|
+
|
|
231
357
|
- **Concurrency:** Converted event loop to async to fix TUI freezing on macOS.
|
|
232
358
|
- **Input:** Improved multiline input editing.
|
|
233
359
|
- **Workflow:** Enforced review-based session status transitions.
|
|
@@ -236,16 +362,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
236
362
|
- **Formatting:** Added code formatting rules and applied to `ag-xtask`.
|
|
237
363
|
|
|
238
364
|
### Fixed
|
|
365
|
+
|
|
239
366
|
- Fixed UI freezing on macOS during agent execution.
|
|
240
367
|
- Clarified git worktree requirements in README.
|
|
241
368
|
|
|
242
369
|
### Contributors
|
|
370
|
+
|
|
243
371
|
- @andagaev
|
|
244
372
|
- @minev-dev
|
|
245
373
|
|
|
246
374
|
## [v0.1.2] - 2026-02-08
|
|
247
375
|
|
|
248
376
|
### Added
|
|
377
|
+
|
|
249
378
|
- **GitHub Integration:** Added 'p' command to create GitHub Pull Requests (draft by default).
|
|
250
379
|
- **GitHub Integration:** Added GitHub CLI health check with nested auth sub-check.
|
|
251
380
|
- **UI:** Centralized icons into a reusable `Icon` enum.
|
|
@@ -253,6 +382,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
253
382
|
- **Database:** Persist session status to the database.
|
|
254
383
|
|
|
255
384
|
### Changed
|
|
385
|
+
|
|
256
386
|
- **UX:** Use `/` selector in command palette dropdowns.
|
|
257
387
|
- **UX:** Ensure exactly one blank line before the spinner in chat view.
|
|
258
388
|
- **Health:** Rename Claude health check label to Claude Code.
|
|
@@ -260,14 +390,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
260
390
|
- **Internal:** Optimize quality gates for AI agents.
|
|
261
391
|
|
|
262
392
|
### Removed
|
|
393
|
+
|
|
263
394
|
- Remove custom Gemini configuration creation.
|
|
264
395
|
|
|
265
396
|
### Contributors
|
|
397
|
+
|
|
266
398
|
- @minev-dev
|
|
267
399
|
|
|
268
400
|
## [v0.1.1] - 2026-02-08
|
|
269
401
|
|
|
270
402
|
### Added
|
|
403
|
+
|
|
271
404
|
- **Database:** Introduce SQLite via SQLx for session metadata.
|
|
272
405
|
- **UI:** Add command palette with agents selection.
|
|
273
406
|
- **UI:** Add health check splash screen via `/health` command.
|
|
@@ -275,12 +408,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
275
408
|
- **Docs:** Add installation guide to README.
|
|
276
409
|
|
|
277
410
|
### Changed
|
|
411
|
+
|
|
278
412
|
- **Async:** Convert sync DB wrapper and thread spawns to native async.
|
|
279
413
|
- **Tooling:** Replace `cargo-machete` with `cargo-shear` in quality gates.
|
|
280
414
|
- **UI:** Use tilde for home directory in footer.
|
|
281
415
|
- **Internal:** Reorder struct fields by visibility and name.
|
|
282
416
|
|
|
283
417
|
### Contributors
|
|
418
|
+
|
|
284
419
|
- @andagaev
|
|
285
420
|
- @minev-dev
|
|
286
421
|
|
|
@@ -289,6 +424,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
289
424
|
- Initial release.
|
|
290
425
|
|
|
291
426
|
### Contributors
|
|
427
|
+
|
|
292
428
|
- @andagaev
|
|
293
429
|
- @dependabot[bot]
|
|
294
430
|
- @minev-dev
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
A terminal UI tool for managing agents, built with Rust and [Ratatui](https://ratatui.rs).
|
|
6
6
|
|
|
7
|
-

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -61,10 +61,21 @@ selection becomes the default for newly created sessions.
|
|
|
61
61
|
- After a plan response in chat view, an inline action bar appears:
|
|
62
62
|
- `Implement the plan`: switches that session to `auto_edit` and sends an implementation prompt.
|
|
63
63
|
- `Type feedback`: opens prompt input so you can send feedback while keeping `plan` mode.
|
|
64
|
-
- Use `
|
|
64
|
+
- Use `Up` / `Down` arrows to choose and `Enter` to confirm.
|
|
65
65
|
- The active mode is shown in the session chat title.
|
|
66
66
|
- Changes are persisted for that session and used as defaults for future sessions.
|
|
67
67
|
|
|
68
|
+
## Codex Sessions
|
|
69
|
+
|
|
70
|
+
- Codex sessions run through a persistent per-session `codex app-server` connection.
|
|
71
|
+
- Each Agentty session keeps one Codex thread open across replies.
|
|
72
|
+
- If the app-server connection fails, Agentty retries by restarting Codex app-server with a new thread.
|
|
73
|
+
- When a Codex thread is reset, Agentty replays the session transcript in the next turn prompt so implementation can continue with prior context.
|
|
74
|
+
- 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
|
+
- `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
|
+
|
|
68
79
|
## Features
|
|
69
80
|
|
|
70
81
|
### Git Worktree Integration
|
|
@@ -75,6 +86,9 @@ Agentty creates isolated worktrees for each session:
|
|
|
75
86
|
- **Separate Working Directory:** Sessions work in isolated directories under `~/.agentty/wt/`
|
|
76
87
|
- **Diff View:** Press `d` in the chat view to see real-time changes made by the agent
|
|
77
88
|
- **Rebase Action:** Press `r` in the chat view to rebase the session branch onto its base branch
|
|
89
|
+
- **Sync Action:** Press `s` in the session list to run session sync (`pull --rebase` + `push`) for review sessions
|
|
90
|
+
- Sync is available only when the active project branch is `main`
|
|
91
|
+
- Sync is blocked until `main` has no uncommitted changes
|
|
78
92
|
- **Automatic Cleanup:** Worktrees and branches are automatically removed when sessions are deleted
|
|
79
93
|
|
|
80
94
|
This allows agents to work on code changes without affecting your main working directory.
|
|
@@ -85,10 +99,18 @@ This allows agents to work on code changes without affecting your main working d
|
|
|
85
99
|
- Supported formatting includes headings, bold/italic text, inline code, fenced code blocks, lists, blockquotes, and horizontal rules.
|
|
86
100
|
- User prompt lines (` › ...`) remain visually distinct in cyan bold styling.
|
|
87
101
|
|
|
102
|
+
### Stats Activity Heatmap
|
|
103
|
+
|
|
104
|
+
- The `Stats` tab now includes a GitHub-style activity heatmap for persisted session-creation activity over the last 53 weeks.
|
|
105
|
+
- Heatmap history is retained even after deleting old sessions.
|
|
106
|
+
- Heatmap intensity scales with daily session counts and now includes month labels for easier timeline scanning.
|
|
107
|
+
- A right-side summary panel highlights favorite model usage, the longest session duration, and per-model input/output token totals.
|
|
108
|
+
- The per-session token table and overall totals remain available below the heatmap.
|
|
109
|
+
|
|
88
110
|
### Version Update Notice
|
|
89
111
|
|
|
90
|
-
- On startup, Agentty checks for the latest
|
|
91
|
-
- If a newer version exists, an inline `
|
|
112
|
+
- On startup, Agentty checks npmjs for the latest `agentty` version.
|
|
113
|
+
- If a newer version exists, an inline `vX.Y.Z version available update with npm i -g agentty@latest` notice is shown:
|
|
92
114
|
- in the top status bar next to the current version
|
|
93
115
|
- on the onboarding screen when there are no sessions
|
|
94
116
|
|
|
@@ -100,6 +122,18 @@ cd agentty
|
|
|
100
122
|
cargo run # Builds and runs the 'agentty' binary
|
|
101
123
|
```
|
|
102
124
|
|
|
125
|
+
## Website
|
|
126
|
+
|
|
127
|
+
`agentty.xyz` is a Zola site stored in `docs/site/` and deployed through GitHub Pages.
|
|
128
|
+
|
|
129
|
+
```sh
|
|
130
|
+
# Preview locally
|
|
131
|
+
zola serve --root docs/site
|
|
132
|
+
|
|
133
|
+
# Build static output
|
|
134
|
+
zola build --root docs/site
|
|
135
|
+
```
|
|
136
|
+
|
|
103
137
|
## Development
|
|
104
138
|
|
|
105
139
|
```sh
|
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.
|
|
26
|
+
"version": "0.2.0"
|
|
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.
|
|
518
|
+
"version": "0.2.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/opencloudtool/agentty/releases/download/v0.2.0",
|
|
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.
|
|
66
|
+
"version": "0.2.0",
|
|
67
67
|
"volta": {
|
|
68
68
|
"node": "18.14.1",
|
|
69
69
|
"npm": "9.5.0"
|