agentty 0.5.4 → 0.5.5
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 +25 -0
- package/README.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,31 @@ 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.5.5] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Skill:** Add `implementation-plan` skill for managing project plans.
|
|
13
|
+
- **Docs:** Add Forge review request support plan.
|
|
14
|
+
- **Docs:** Add GitHub issue form templates and directory indexing.
|
|
15
|
+
- **Infra:** Add default pull request template for the repository.
|
|
16
|
+
- **UI:** Add Agentty info panel to the project list.
|
|
17
|
+
- **UI:** Chat panel gets polished chrome and unified overlay styling with dimmed backdrop.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Codex:** Promote `gpt-5.4` as the default Codex model.
|
|
22
|
+
- **UI:** Keep question input visible in tight terminal layouts.
|
|
23
|
+
- **Docs:** Refine Agentty description.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- **Skill:** Clarify requirements and plan structure for `implementation-plan` skill.
|
|
28
|
+
|
|
29
|
+
### Contributors
|
|
30
|
+
|
|
31
|
+
- @minev-dev
|
|
32
|
+
|
|
8
33
|
## [v0.5.4] - 2026-03-06
|
|
9
34
|
|
|
10
35
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
Agentty is
|
|
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
7
|
## Installation
|
|
8
8
|
|
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.5.
|
|
26
|
+
"version": "0.5.5"
|
|
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.5.
|
|
518
|
+
"version": "0.5.5"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/agentty-xyz/agentty/releases/download/v0.5.5",
|
|
3
3
|
"bin": {
|
|
4
4
|
"agentty": "run-agentty.js"
|
|
5
5
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"detect-libc": "^2.1.2",
|
|
15
15
|
"rimraf": "^6.1.2"
|
|
16
16
|
},
|
|
17
|
-
"description": "Agentic Development Environment
|
|
17
|
+
"description": "Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.",
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"prettier": "^3.7.4"
|
|
20
20
|
},
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"zipExt": ".tar.xz"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
-
"version": "0.5.
|
|
69
|
+
"version": "0.5.5",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|