aigent-hive 0.9.2 → 0.9.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 +32 -12
- package/install.cmd +1 -1
- package/install.ps1 +3 -3
- package/install.sh +6 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
> A provider-neutral local harness for Codex, Claude Code, and Gemini Antigravity.
|
|
8
8
|
|
|
9
|
-
[](https://github.com/gvm1229/aigent-hive/blob/main/Cargo.toml)
|
|
10
10
|
[](https://github.com/gvm1229/aigent-hive/blob/main/rust-toolchain.toml)
|
|
11
11
|
[](https://github.com/gvm1229/aigent-hive/blob/main/LICENSE)
|
|
12
12
|
|
|
@@ -17,11 +17,11 @@ 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.
|
|
20
|
+
Stable `0.9.3` is the current release for this source.
|
|
21
21
|
|
|
22
22
|
## Install the current stable release
|
|
23
23
|
|
|
24
|
-
`0.9.
|
|
24
|
+
`0.9.3` is published on npm as `latest`, with a normal GitHub Release and annotated Git tag.
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
27
|
npm install -g aigent-hive
|
|
@@ -30,7 +30,7 @@ npm install -g aigent-hive
|
|
|
30
30
|
Or pin the exact version:
|
|
31
31
|
|
|
32
32
|
```console
|
|
33
|
-
npm install -g aigent-hive@0.9.
|
|
33
|
+
npm install -g aigent-hive@0.9.3
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
The npm installer requires Node.js and npm. The installed `hive` runtime is a native
|
|
@@ -39,26 +39,26 @@ Rust binary and does not require Node.js.
|
|
|
39
39
|
Expected stable version label:
|
|
40
40
|
|
|
41
41
|
```text
|
|
42
|
-
AIgent Hive v0.9.
|
|
42
|
+
AIgent Hive v0.9.3 (released 2026-08-14)
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### macOS and Linux with curl
|
|
46
46
|
|
|
47
47
|
```sh
|
|
48
48
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
49
|
-
https://unpkg.com/aigent-hive@0.9.
|
|
49
|
+
https://unpkg.com/aigent-hive@0.9.3/install.sh | sh
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
### Windows PowerShell 5.1+
|
|
53
53
|
|
|
54
54
|
```powershell
|
|
55
|
-
irm https://unpkg.com/aigent-hive@0.9.
|
|
55
|
+
irm https://unpkg.com/aigent-hive@0.9.3/install.ps1 | iex
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
### Windows Command Prompt
|
|
59
59
|
|
|
60
60
|
```bat
|
|
61
|
-
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.9.
|
|
61
|
+
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.9.3/install.cmd && install-aigent-hive.cmd
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
The direct installers fetch the same native package bytes from npm, verify the
|
|
@@ -75,7 +75,7 @@ setup steps below. It is optional: the four-step setup remains the predictable m
|
|
|
75
75
|
I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
|
|
76
76
|
initialize, or change any project, repository, folder, or current working directory.
|
|
77
77
|
|
|
78
|
-
Install the current stable release 0.9.
|
|
78
|
+
Install the current stable release 0.9.3. The stable install guidance is
|
|
79
79
|
https://github.com/gvm1229/aigent-hive#install-the-current-stable-release.
|
|
80
80
|
Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
|
|
81
81
|
me if either is unclear. Check whether Node.js and npm are available. If they are missing,
|
|
@@ -97,7 +97,7 @@ Project maintainers can consult the [release verification notes](https://github.
|
|
|
97
97
|
|
|
98
98
|
## Supported targets
|
|
99
99
|
|
|
100
|
-
| Platform | Native target | 0.9.
|
|
100
|
+
| Platform | Native target | 0.9.3 gate |
|
|
101
101
|
| --- | --- | --- |
|
|
102
102
|
| macOS Apple Silicon | `aarch64-apple-darwin` | Candidate runtime qualified |
|
|
103
103
|
| macOS Intel | `x86_64-apple-darwin` | Candidate runtime qualified |
|
|
@@ -107,7 +107,7 @@ Project maintainers can consult the [release verification notes](https://github.
|
|
|
107
107
|
|
|
108
108
|
Codex and Antigravity have real-host qualification evidence. Claude Code packaging and
|
|
109
109
|
projection are covered by fixtures, but a real subscription-backed session remains
|
|
110
|
-
unverified. Stable `0.9.
|
|
110
|
+
unverified. Stable `0.9.3` uses explicit macOS ad-hoc signing and publishes Windows as
|
|
111
111
|
unsigned unless free SignPath Foundation signing is approved. See the
|
|
112
112
|
[code signing policy](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/code-signing-policy.md) for the exact trust boundary.
|
|
113
113
|
|
|
@@ -187,7 +187,7 @@ This performs an immediate version check. If a newer version exists, Hive explai
|
|
|
187
187
|
exact update and asks before invoking the authenticated install owner. Declining,
|
|
188
188
|
closing stdin, or running non-interactively causes no installation.
|
|
189
189
|
An existing `0.9.0-test.N`, `0.9.0`, or `0.9.1` installation keeps its owner evidence and may
|
|
190
|
-
update to exact stable `0.9.
|
|
190
|
+
update to exact stable `0.9.3` through the same confirmation flow.
|
|
191
191
|
|
|
192
192
|
When daily checks are enabled, a successful check is throttled for 24 hours. An offline
|
|
193
193
|
or failed check is not recorded as successful, so the next Codex, Claude Code, or
|
|
@@ -209,6 +209,26 @@ The first command is only a preflight; it never authorizes dispatch by itself. E
|
|
|
209
209
|
runtime cancellation is auxiliary evidence and never replaces durable goal/task state.
|
|
210
210
|
Ordinary quick-answers and manual work do not run this automatic-dispatch gate.
|
|
211
211
|
|
|
212
|
+
## Load-tested for large knowledge bases
|
|
213
|
+
|
|
214
|
+
A chunk is a retrieval-sized piece of a Wiki page, not one complete document. To make
|
|
215
|
+
the scale concrete, the qualification fixture splits 25 deliberately long Wiki pages
|
|
216
|
+
into 2,000 chunks each: 50,000 search-ready pieces in total. Its portable-bundle
|
|
217
|
+
scenario also carries a registry of 100 portable collections. This is a deliberately
|
|
218
|
+
large test fixture, rather than a claim that an ordinary user has 50,000 documents.
|
|
219
|
+
|
|
220
|
+
| Qualification | Scenario | Latest p95 | Acceptance limit |
|
|
221
|
+
| --- | --- | ---: | ---: |
|
|
222
|
+
| Fresh local retrieval | 50,000 chunks | 170 ms | 500 ms |
|
|
223
|
+
| Warm repeat retrieval | 50,000 chunks | 0.14 ms | 100 ms |
|
|
224
|
+
| Portable bundle export | 100 collections, 50,000 chunks | 1.04 s | 5 s |
|
|
225
|
+
| Bundle import and index rebuild | 100 collections, 50,000 chunks | 3.27 s | 15 s |
|
|
226
|
+
|
|
227
|
+
These release-build, local-SSD measurements are qualification evidence; real timing
|
|
228
|
+
varies with hardware and the shape of the knowledge. See the
|
|
229
|
+
[qualification record](https://github.com/gvm1229/aigent-hive/blob/main/docs/facts/en/knowledge-portability-scan.md) for the method and
|
|
230
|
+
limits.
|
|
231
|
+
|
|
212
232
|
## What Hive owns
|
|
213
233
|
|
|
214
234
|
- Hive-owned marker blocks and manifest-listed files only
|
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.
|
|
3
|
+
set "HIVE_INSTALL_PACKAGE_VERSION=0.9.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
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
param(
|
|
2
2
|
[ValidatePattern('^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)$')]
|
|
3
|
-
[string]$Version = "0.9.
|
|
3
|
+
[string]$Version = "0.9.3",
|
|
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.
|
|
5
|
+
[string]$PackageVersion = "0.9.3",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "152af58289121cbe59a8019ee0d3eb1ba675d6a674a1553c871dabf242db510c"
|
|
12
12
|
if ($AuthorizedSignerThumbprint -like "__AIGENT_HIVE_*") {
|
|
13
13
|
$AuthorizedSignerThumbprint = ""
|
|
14
14
|
}
|
package/install.sh
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
set -eu
|
|
3
3
|
|
|
4
|
-
embedded_product_version='0.9.
|
|
5
|
-
embedded_package_version='0.9.
|
|
4
|
+
embedded_product_version='0.9.3'
|
|
5
|
+
embedded_package_version='0.9.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='78b20fb23ca21f234e79f999ad421cebe496273f9d9fe30f98bb0048cb842d32'
|
|
11
|
+
sha_x86_64_apple_darwin='d1bba7dc71ad1490d50f8b8232cd1d21afee4a406d0f132fe5f33c9012200f3b'
|
|
12
|
+
sha_aarch64_linux_musl='a2355b52c0cf9c763298d8095756b7b0053e95c5799370a9105c8afba8d59dbb'
|
|
13
|
+
sha_x86_64_linux_musl='9f20c7316bb02200065d616c6a747939808e0c843a673f1998794242222a4ebd'
|
|
14
14
|
|
|
15
15
|
if ! printf '%s\n' "$version" | awk -F. '
|
|
16
16
|
NF != 3 { exit 1 }
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aigent-hive",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"aigentHive": {
|
|
5
|
-
"productVersion": "0.9.
|
|
5
|
+
"productVersion": "0.9.3"
|
|
6
6
|
},
|
|
7
7
|
"description": "Provider-neutral local agent harness for subscription-authenticated hosts",
|
|
8
8
|
"license": "Apache-2.0",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@aigent-hive/darwin-arm64": "0.9.
|
|
35
|
-
"@aigent-hive/darwin-x64": "0.9.
|
|
36
|
-
"@aigent-hive/linux-arm64": "0.9.
|
|
37
|
-
"@aigent-hive/linux-x64": "0.9.
|
|
38
|
-
"@aigent-hive/win32-x64": "0.9.
|
|
34
|
+
"@aigent-hive/darwin-arm64": "0.9.3",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.9.3",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.9.3",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.9.3",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.9.3"
|
|
39
39
|
}
|
|
40
40
|
}
|