aigent-hive 0.9.2-test.2 → 0.9.2-test.3
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/README.md +8 -8
- package/install.cmd +1 -1
- package/install.ps1 +2 -2
- package/install.sh +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -17,8 +17,8 @@ project knowledge, durable role/run state, usage safeguards, and safe update con
|
|
|
17
17
|
It never asks for model-provider API keys, calls model-provider APIs, or replaces the
|
|
18
18
|
host's own model runtime.
|
|
19
19
|
|
|
20
|
-
Stable `0.9.2` is the current release for this source.
|
|
21
|
-
|
|
20
|
+
Stable `0.9.2` is the current release for this source. The latest numbered developer test build
|
|
21
|
+
remains available only on npm `test` and as a GitHub prerelease.
|
|
22
22
|
|
|
23
23
|
## Install the current stable release
|
|
24
24
|
|
|
@@ -43,19 +43,19 @@ Expected stable version label:
|
|
|
43
43
|
AIgent Hive v0.9.2 (released 2026-08-12)
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
###
|
|
46
|
+
### Latest developer test build
|
|
47
47
|
|
|
48
48
|
For developers and contributors testing the next release:
|
|
49
49
|
|
|
50
50
|
```console
|
|
51
|
-
npm install -g aigent-hive@
|
|
51
|
+
npm install -g aigent-hive@test
|
|
52
52
|
hive --version
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
Expected version label:
|
|
56
56
|
|
|
57
57
|
```text
|
|
58
|
-
AIgent Hive v0.9.2-test #
|
|
58
|
+
AIgent Hive v0.9.2-test #N · developer test build (released YYYY-MM-DD)
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
This explicit version never changes npm `latest`.
|
|
@@ -93,9 +93,9 @@ setup steps below. It is optional: the four-step setup remains the predictable m
|
|
|
93
93
|
I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
|
|
94
94
|
initialize, or change any project, repository, folder, or current working directory.
|
|
95
95
|
|
|
96
|
-
First ask whether I want the current stable release 0.9.2 (recommended) or the developer test
|
|
97
|
-
|
|
98
|
-
and the test-build release notes are https://github.com/gvm1229/aigent-hive/releases
|
|
96
|
+
First ask whether I want the current stable release 0.9.2 (recommended) or the latest developer test
|
|
97
|
+
build from npm's test channel. The stable install guidance is https://github.com/gvm1229/aigent-hive#install-the-current-stable-release
|
|
98
|
+
and the numbered test-build release notes are https://github.com/gvm1229/aigent-hive/releases.
|
|
99
99
|
Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
|
|
100
100
|
me if either is unclear. Check whether Node.js and npm are available. If they are missing,
|
|
101
101
|
give me the official OS-specific Node.js installation command and request any approval the host
|
package/install.cmd
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@echo off
|
|
2
2
|
setlocal EnableExtensions DisableDelayedExpansion
|
|
3
|
-
set "HIVE_INSTALL_PACKAGE_VERSION=0.9.2-test.
|
|
3
|
+
set "HIVE_INSTALL_PACKAGE_VERSION=0.9.2-test.3"
|
|
4
4
|
set "HIVE_INSTALL_URL=https://unpkg.com/aigent-hive@%HIVE_INSTALL_PACKAGE_VERSION%/install.ps1"
|
|
5
5
|
set "HIVE_INSTALL_SCRIPT=%TEMP%\aigent-hive-install-%RANDOM%-%RANDOM%.ps1"
|
|
6
6
|
|
package/install.ps1
CHANGED
|
@@ -2,13 +2,13 @@ param(
|
|
|
2
2
|
[ValidatePattern('^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$')]
|
|
3
3
|
[string]$Version = "0.9.2",
|
|
4
4
|
[ValidatePattern('^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-test(\.[1-9][0-9]*)?)?$')]
|
|
5
|
-
[string]$PackageVersion = "0.9.2-test.
|
|
5
|
+
[string]$PackageVersion = "0.9.2-test.3",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "a32726048ebe9feb0904048ffdcf60b80445ff389fdaf08a55b2d525fdfc6a38"
|
|
12
12
|
if ($AuthorizedSignerThumbprint -like "__AIGENT_HIVE_*") {
|
|
13
13
|
$AuthorizedSignerThumbprint = ""
|
|
14
14
|
}
|
package/install.sh
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
set -eu
|
|
3
3
|
|
|
4
4
|
embedded_product_version='0.9.2'
|
|
5
|
-
embedded_package_version='0.9.2-test.
|
|
5
|
+
embedded_package_version='0.9.2-test.3'
|
|
6
6
|
version=${AIGENT_HIVE_VERSION:-$embedded_product_version}
|
|
7
7
|
package_version=${AIGENT_HIVE_PACKAGE_VERSION:-$embedded_package_version}
|
|
8
8
|
prefix=${AIGENT_HIVE_PREFIX:-"${HOME:?HOME is required}/.local"}
|
|
9
9
|
authorized_team_id=''
|
|
10
|
-
sha_aarch64_apple_darwin='
|
|
11
|
-
sha_x86_64_apple_darwin='
|
|
12
|
-
sha_aarch64_linux_musl='
|
|
13
|
-
sha_x86_64_linux_musl='
|
|
10
|
+
sha_aarch64_apple_darwin='020e0c15d4433ab8734c79c08e2888c17d8b523b3eca0c16e29f2fd236f3bb71'
|
|
11
|
+
sha_x86_64_apple_darwin='258d071c1f49b914df2142e807ecbb6a5e4742a7cdeb424890c5901a21f5d1e3'
|
|
12
|
+
sha_aarch64_linux_musl='686d7f0868c58bfc6cb34d92f39934abce4ca4b37b885589144c03b23512cde5'
|
|
13
|
+
sha_x86_64_linux_musl='497d2c4445b4452a42eb0034a6af06f52848f7f668107aa880a5fd62aa28251b'
|
|
14
14
|
|
|
15
15
|
if ! printf '%s\n' "$version" | awk -F. '
|
|
16
16
|
NF != 3 { exit 1 }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aigent-hive",
|
|
3
|
-
"version": "0.9.2-test.
|
|
3
|
+
"version": "0.9.2-test.3",
|
|
4
4
|
"aigentHive": {
|
|
5
5
|
"productVersion": "0.9.2"
|
|
6
6
|
},
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@aigent-hive/darwin-arm64": "0.9.2-test.
|
|
35
|
-
"@aigent-hive/darwin-x64": "0.9.2-test.
|
|
36
|
-
"@aigent-hive/linux-arm64": "0.9.2-test.
|
|
37
|
-
"@aigent-hive/linux-x64": "0.9.2-test.
|
|
38
|
-
"@aigent-hive/win32-x64": "0.9.2-test.
|
|
34
|
+
"@aigent-hive/darwin-arm64": "0.9.2-test.3",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.9.2-test.3",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.9.2-test.3",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.9.2-test.3",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.9.2-test.3"
|
|
39
39
|
}
|
|
40
40
|
}
|