aigent-hive 0.9.2-test.5 → 0.9.3-test
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 +36 -34
- 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,12 +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.
|
|
21
|
-
remains available only on npm `test` and as a GitHub prerelease.
|
|
20
|
+
Stable `0.9.3` is the current release for this source.
|
|
22
21
|
|
|
23
22
|
## Install the current stable release
|
|
24
23
|
|
|
25
|
-
`0.9.
|
|
24
|
+
`0.9.3` is published on npm as `latest`, with a normal GitHub Release and annotated Git tag.
|
|
26
25
|
|
|
27
26
|
```console
|
|
28
27
|
npm install -g aigent-hive
|
|
@@ -31,7 +30,7 @@ npm install -g aigent-hive
|
|
|
31
30
|
Or pin the exact version:
|
|
32
31
|
|
|
33
32
|
```console
|
|
34
|
-
npm install -g aigent-hive@0.9.
|
|
33
|
+
npm install -g aigent-hive@0.9.3
|
|
35
34
|
```
|
|
36
35
|
|
|
37
36
|
The npm installer requires Node.js and npm. The installed `hive` runtime is a native
|
|
@@ -40,43 +39,26 @@ Rust binary and does not require Node.js.
|
|
|
40
39
|
Expected stable version label:
|
|
41
40
|
|
|
42
41
|
```text
|
|
43
|
-
AIgent Hive v0.9.
|
|
42
|
+
AIgent Hive v0.9.3 (released 2026-08-14)
|
|
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
|
|
66
48
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
67
|
-
https://unpkg.com/aigent-hive@0.9.
|
|
49
|
+
https://unpkg.com/aigent-hive@0.9.3/install.sh | sh
|
|
68
50
|
```
|
|
69
51
|
|
|
70
52
|
### Windows PowerShell 5.1+
|
|
71
53
|
|
|
72
54
|
```powershell
|
|
73
|
-
irm https://unpkg.com/aigent-hive@0.9.
|
|
55
|
+
irm https://unpkg.com/aigent-hive@0.9.3/install.ps1 | iex
|
|
74
56
|
```
|
|
75
57
|
|
|
76
58
|
### Windows Command Prompt
|
|
77
59
|
|
|
78
60
|
```bat
|
|
79
|
-
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
|
|
80
62
|
```
|
|
81
63
|
|
|
82
64
|
The direct installers fetch the same native package bytes from npm, verify the
|
|
@@ -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.3. 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,12 +91,13 @@ 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
|
|
|
118
|
-
| Platform | Native target | 0.9.
|
|
100
|
+
| Platform | Native target | 0.9.3 gate |
|
|
119
101
|
| --- | --- | --- |
|
|
120
102
|
| macOS Apple Silicon | `aarch64-apple-darwin` | Candidate runtime qualified |
|
|
121
103
|
| macOS Intel | `x86_64-apple-darwin` | Candidate runtime qualified |
|
|
@@ -125,7 +107,7 @@ not change `latest`.
|
|
|
125
107
|
|
|
126
108
|
Codex and Antigravity have real-host qualification evidence. Claude Code packaging and
|
|
127
109
|
projection are covered by fixtures, but a real subscription-backed session remains
|
|
128
|
-
unverified. Stable `0.9.
|
|
110
|
+
unverified. Stable `0.9.3` uses explicit macOS ad-hoc signing and publishes Windows as
|
|
129
111
|
unsigned unless free SignPath Foundation signing is approved. See the
|
|
130
112
|
[code signing policy](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/code-signing-policy.md) for the exact trust boundary.
|
|
131
113
|
|
|
@@ -205,7 +187,7 @@ This performs an immediate version check. If a newer version exists, Hive explai
|
|
|
205
187
|
exact update and asks before invoking the authenticated install owner. Declining,
|
|
206
188
|
closing stdin, or running non-interactively causes no installation.
|
|
207
189
|
An existing `0.9.0-test.N`, `0.9.0`, or `0.9.1` installation keeps its owner evidence and may
|
|
208
|
-
update to exact stable `0.9.
|
|
190
|
+
update to exact stable `0.9.3` through the same confirmation flow.
|
|
209
191
|
|
|
210
192
|
When daily checks are enabled, a successful check is throttled for 24 hours. An offline
|
|
211
193
|
or failed check is not recorded as successful, so the next Codex, Claude Code, or
|
|
@@ -227,6 +209,26 @@ The first command is only a preflight; it never authorizes dispatch by itself. E
|
|
|
227
209
|
runtime cancellation is auxiliary evidence and never replaces durable goal/task state.
|
|
228
210
|
Ordinary quick-answers and manual work do not run this automatic-dispatch gate.
|
|
229
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
|
+
|
|
230
232
|
## What Hive owns
|
|
231
233
|
|
|
232
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-test"
|
|
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-test",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "35dcecff51d59bbcdecf84e4b1a10376da487d082e5dc69a855b977df8bbdcd2"
|
|
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-test'
|
|
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='9bc301cab8fa34a197ef79b931692a0d7139d5a38faea68df49bc74a1db78a7b'
|
|
11
|
+
sha_x86_64_apple_darwin='6f91a28ae7b1154a95d3ddc7379adb25bb1316dd00711b937f486660a744f717'
|
|
12
|
+
sha_aarch64_linux_musl='2abafc5496a458044b61d3543e457c6846a04561fac2dbf96368535d1eb76e28'
|
|
13
|
+
sha_x86_64_linux_musl='0d16d9a0f5d3706cc9e8eb7d53a9b5726b1d3f92709106b00daf5388fbb23f69'
|
|
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-test",
|
|
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-test",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.9.3-test",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.9.3-test",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.9.3-test",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.9.3-test"
|
|
39
39
|
}
|
|
40
40
|
}
|