agentty 0.5.10 → 0.5.11
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 +16 -0
- package/README.md +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ 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.11] - 2026-03-11
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Track prompt image attachments in prompt mode.
|
|
13
|
+
- Add size budgets to implementation plans.
|
|
14
|
+
- Clarify implementation-plan AGENTS purpose.
|
|
15
|
+
- Rename implementation plan priorities to steps.
|
|
16
|
+
- Standardize titled substeps in implementation plans.
|
|
17
|
+
- Consolidate architecture guide map into landing page.
|
|
18
|
+
- Document single evolving session commit flow.
|
|
19
|
+
|
|
20
|
+
### Contributors
|
|
21
|
+
|
|
22
|
+
- @minev-dev
|
|
23
|
+
|
|
8
24
|
## [v0.5.10] - 2026-03-10
|
|
9
25
|
|
|
10
26
|
### Changed
|
package/README.md
CHANGED
|
@@ -8,6 +8,10 @@ Session view includes a manual branch-publish workflow so reviewed session
|
|
|
8
8
|
branches can be pushed from the TUI before you open a pull request or merge
|
|
9
9
|
request yourself.
|
|
10
10
|
|
|
11
|
+
Prompt mode also supports pasted clipboard images for Codex sessions: press
|
|
12
|
+
`Ctrl+V` or `Alt+V` while composing the first prompt or a reply to insert an inline
|
|
13
|
+
`[Image #n]` placeholder backed by a local temp PNG upload.
|
|
14
|
+
|
|
11
15
|
## Installation
|
|
12
16
|
|
|
13
17
|
### Shell
|
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.11"
|
|
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.11"
|
|
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.11",
|
|
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.5.
|
|
69
|
+
"version": "0.5.11",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|