aigent-hive 0.9.2-test.4 → 0.9.2
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 +6 -24
- 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,7 @@ 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
|
-
remains available only on npm `test` and as a GitHub prerelease.
|
|
20
|
+
Stable `0.9.2` is the current release for this source.
|
|
22
21
|
|
|
23
22
|
## Install the current stable release
|
|
24
23
|
|
|
@@ -43,23 +42,6 @@ Expected stable version label:
|
|
|
43
42
|
AIgent Hive v0.9.2 (released 2026-08-12)
|
|
44
43
|
```
|
|
45
44
|
|
|
46
|
-
### Latest developer test build
|
|
47
|
-
|
|
48
|
-
For developers and contributors testing the next release:
|
|
49
|
-
|
|
50
|
-
```console
|
|
51
|
-
npm install -g aigent-hive@test
|
|
52
|
-
hive --version
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
Expected version label:
|
|
56
|
-
|
|
57
|
-
```text
|
|
58
|
-
AIgent Hive v0.9.2-test #N · developer test build (released YYYY-MM-DD)
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
This explicit version never changes npm `latest`.
|
|
62
|
-
|
|
63
45
|
### macOS and Linux with curl
|
|
64
46
|
|
|
65
47
|
```sh
|
|
@@ -93,9 +75,8 @@ setup steps below. It is optional: the four-step setup remains the predictable m
|
|
|
93
75
|
I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
|
|
94
76
|
initialize, or change any project, repository, folder, or current working directory.
|
|
95
77
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
and the numbered test-build release notes are https://github.com/gvm1229/aigent-hive/releases.
|
|
78
|
+
Install the current stable release 0.9.2. The stable install guidance is
|
|
79
|
+
https://github.com/gvm1229/aigent-hive#install-the-current-stable-release.
|
|
99
80
|
Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
|
|
100
81
|
me if either is unclear. Check whether Node.js and npm are available. If they are missing,
|
|
101
82
|
give me the official OS-specific Node.js installation command and request any approval the host
|
|
@@ -110,8 +91,9 @@ offer the separate project-setup prompt instead. Never ask for provider API cred
|
|
|
110
91
|
an optional third-party Skill.
|
|
111
92
|
```
|
|
112
93
|
|
|
113
|
-
This option installs only the
|
|
114
|
-
|
|
94
|
+
This option installs only the current stable release.
|
|
95
|
+
|
|
96
|
+
Project maintainers can consult the [release verification notes](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/release-verification-builds.md).
|
|
115
97
|
|
|
116
98
|
## Supported targets
|
|
117
99
|
|
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
|
|
3
|
+
set "HIVE_INSTALL_PACKAGE_VERSION=0.9.2"
|
|
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
|
|
5
|
+
[string]$PackageVersion = "0.9.2",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "66a15cb5051a8d72cfb071a96f1a079c63cc408eab90db5ff5b685e4c864aab7"
|
|
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
|
|
5
|
+
embedded_package_version='0.9.2'
|
|
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='d39e12e7c83c95b72e730a1753cf6090a1940b83409e03172a950974313b9230'
|
|
11
|
+
sha_x86_64_apple_darwin='745dfd7ebcdf26be1eb36c14cbb04dd8de84d2555c14d4a458e36ca409fa766b'
|
|
12
|
+
sha_aarch64_linux_musl='cf3ca87fc94922c41a721e3d386c2732552beb6e0ccea96c5b3366c3bcbe673b'
|
|
13
|
+
sha_x86_64_linux_musl='5196b4856a48a160f91ddc0c79205cd0b4fe84fa16043e9493892618b29c1b55'
|
|
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
|
|
3
|
+
"version": "0.9.2",
|
|
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
|
|
35
|
-
"@aigent-hive/darwin-x64": "0.9.2
|
|
36
|
-
"@aigent-hive/linux-arm64": "0.9.2
|
|
37
|
-
"@aigent-hive/linux-x64": "0.9.2
|
|
38
|
-
"@aigent-hive/win32-x64": "0.9.2
|
|
34
|
+
"@aigent-hive/darwin-arm64": "0.9.2",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.9.2",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.9.2",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.9.2",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.9.2"
|
|
39
39
|
}
|
|
40
40
|
}
|