agentty 0.3.0 → 0.4.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,38 @@ 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.4.0] - 2026-02-24
9
+
10
+ ### Added
11
+
12
+ - **Projects:** Add a projects tab with quick project switching.
13
+ - **Navigation:** Add backward tab navigation with `Shift+Tab`.
14
+ - **Docs:** Add the getting started overview guide.
15
+
16
+ ### Changed
17
+
18
+ - **App:** Resolve main repository roots via git and exclude session worktrees.
19
+ - **UI:** Switch to `Sessions` after project selection and compact footer help actions.
20
+ - **Runtime:** Route app-server turns by provider, include root `AGENTS.md` instructions, and pass session folder/model in Codex payloads.
21
+ - **Docs:** Reorganize site sections, standardize skill headers, and migrate the docs site to compiled Sass styling.
22
+ - **Models:** Add support for the `gpt-5.3-codex-spark` model.
23
+
24
+ ### Fixed
25
+
26
+ - **Database:** Fix SQLite migration `025` to avoid non-constant defaults.
27
+ - **Templates:** Fix malformed Tera block syntax in the base template.
28
+ - **Docs:** Remove duplicate front matter delimiters in overview content.
29
+
30
+ ### Removed
31
+
32
+ - **Onboarding:** Remove the onboarding page from the list-mode flow.
33
+ - **Projects:** Remove project favorite controls from the project list.
34
+
35
+ ### Contributors
36
+
37
+ - @andagaev
38
+ - @minev-dev
39
+
8
40
  ## [v0.3.0] - 2026-02-23
9
41
 
10
42
  ### Added
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![NPM Version](https://img.shields.io/npm/v/agentty)
4
4
 
5
- An **Agentic Development Environment (ADE) in your terminal**, built with Rust and [Ratatui](https://ratatui.rs). Agentty provides a deeply integrated, git-native workflow for building software alongside AI agents.
5
+ Agentty is a terminal-first **Agentic Development Environment (ADE)**, designed for building software alongside AI agents. It is built with Rust and [Ratatui](https://ratatui.rs), with a deeply integrated, git-native workflow.
6
6
 
7
7
  ## Installation
8
8
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.3.0"
26
+ "version": "0.4.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.3.0"
518
+ "version": "0.4.0"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.3.0",
2
+ "artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.4.0",
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.3.0",
69
+ "version": "0.4.0",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"