aigent-hive 0.10.0-test.8 → 0.10.0
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 +19 -19
- package/install.cmd +1 -1
- package/install.ps1 +2 -2
- package/install.sh +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -6,24 +6,24 @@
|
|
|
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
|
|
|
13
13
|
[English](https://github.com/gvm1229/aigent-hive/blob/main/README.md) · [한국어](https://github.com/gvm1229/aigent-hive/blob/main/docs/readme/README.ko.md)
|
|
14
14
|
|
|
15
|
-
<!-- AIGENT-HIVE:PUBLIC-STABLE version=0.
|
|
15
|
+
<!-- AIGENT-HIVE:PUBLIC-STABLE version=0.10.0 release-date=2026-09-02 -->
|
|
16
16
|
|
|
17
17
|
Hive gives subscription-authenticated agent hosts one consistent setup, Skill routing,
|
|
18
18
|
project knowledge, durable role/run state, usage safeguards, and safe update contracts.
|
|
19
19
|
It never asks for model-provider API keys, calls model-provider APIs, or replaces the
|
|
20
20
|
host's own model runtime.
|
|
21
21
|
|
|
22
|
-
Stable `0.
|
|
22
|
+
Stable `0.10.0` is the current public release.
|
|
23
23
|
|
|
24
24
|
## Install the current stable release
|
|
25
25
|
|
|
26
|
-
`0.
|
|
26
|
+
`0.10.0` is published on npm as `latest`, with a normal GitHub Release and annotated Git tag.
|
|
27
27
|
|
|
28
28
|
```console
|
|
29
29
|
npm install -g aigent-hive
|
|
@@ -32,7 +32,7 @@ npm install -g aigent-hive
|
|
|
32
32
|
Or pin the exact version:
|
|
33
33
|
|
|
34
34
|
```console
|
|
35
|
-
npm install -g aigent-hive@0.
|
|
35
|
+
npm install -g aigent-hive@0.10.0
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
The npm installer requires Node.js and npm. The installed `hive` runtime is a native
|
|
@@ -41,26 +41,26 @@ Rust binary and does not require Node.js.
|
|
|
41
41
|
Expected stable version label:
|
|
42
42
|
|
|
43
43
|
```text
|
|
44
|
-
AIgent Hive v0.
|
|
44
|
+
AIgent Hive v0.10.0 (released 2026-09-02)
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
### macOS and Linux with curl
|
|
48
48
|
|
|
49
49
|
```sh
|
|
50
50
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
51
|
-
https://unpkg.com/aigent-hive@0.
|
|
51
|
+
https://unpkg.com/aigent-hive@0.10.0/install.sh | sh
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
### Windows PowerShell 5.1+
|
|
55
55
|
|
|
56
56
|
```powershell
|
|
57
|
-
irm https://unpkg.com/aigent-hive@0.
|
|
57
|
+
irm https://unpkg.com/aigent-hive@0.10.0/install.ps1 | iex
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
### Windows Command Prompt
|
|
61
61
|
|
|
62
62
|
```bat
|
|
63
|
-
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.
|
|
63
|
+
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.10.0/install.cmd && install-aigent-hive.cmd
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
The direct installers fetch the same native package bytes from npm, verify the
|
|
@@ -77,7 +77,7 @@ setup steps below. It is optional: the four-step setup remains the predictable m
|
|
|
77
77
|
I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
|
|
78
78
|
initialize, or change any project, repository, folder, or current working directory.
|
|
79
79
|
|
|
80
|
-
Install the current stable release 0.
|
|
80
|
+
Install the current stable release 0.10.0. The stable install guidance is
|
|
81
81
|
https://github.com/gvm1229/aigent-hive#install-the-current-stable-release.
|
|
82
82
|
Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
|
|
83
83
|
me if either is unclear. Check whether Node.js and npm are available. If they are missing,
|
|
@@ -95,17 +95,17 @@ an optional third-party Skill.
|
|
|
95
95
|
|
|
96
96
|
This option installs only the current stable release.
|
|
97
97
|
|
|
98
|
-
## What changed in 0.
|
|
98
|
+
## What changed in 0.10.0
|
|
99
99
|
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
100
|
+
- Optional vector search finds related knowledge even when the exact words differ, while SQLite keyword search stays available.
|
|
101
|
+
- Knowledge transfer restores Markdown knowledge across computers, prepares direct search, and can combine several `.hivekb` files safely.
|
|
102
|
+
- Knowledge graph search follows documented relationships between related material.
|
|
103
|
+
- Korean writing is clearer by default, with `humanize-kor` available for existing Korean text.
|
|
104
|
+
- Complex work can continue with saved verification evidence and request an independent agent review.
|
|
105
105
|
|
|
106
106
|
## Supported targets
|
|
107
107
|
|
|
108
|
-
| Platform | Native target | 0.
|
|
108
|
+
| Platform | Native target | 0.10.0 evidence |
|
|
109
109
|
| --- | --- | --- |
|
|
110
110
|
| macOS Apple Silicon | `aarch64-apple-darwin` | Public stable install acceptance |
|
|
111
111
|
| macOS Intel | `x86_64-apple-darwin` | Candidate runtime qualified |
|
|
@@ -115,7 +115,7 @@ This option installs only the current stable release.
|
|
|
115
115
|
|
|
116
116
|
Codex and Antigravity have real-host qualification evidence. Claude Code packaging and
|
|
117
117
|
projection are covered by fixtures, but a real subscription-backed session remains
|
|
118
|
-
unverified. Stable `0.
|
|
118
|
+
unverified. Stable `0.10.0` uses explicit macOS ad-hoc signing and publishes Windows as
|
|
119
119
|
unsigned unless free SignPath Foundation signing is approved. See the
|
|
120
120
|
[code signing policy](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/code-signing-policy.md) for the exact trust boundary.
|
|
121
121
|
|
|
@@ -194,7 +194,7 @@ hive update
|
|
|
194
194
|
This performs an immediate version check. If a newer version exists, Hive explains the
|
|
195
195
|
exact update and asks before invoking the authenticated install owner. Declining,
|
|
196
196
|
closing stdin, or running non-interactively causes no installation.
|
|
197
|
-
An existing installation keeps its owner evidence and may update to exact stable `0.
|
|
197
|
+
An existing installation keeps its owner evidence and may update to exact stable `0.10.0`
|
|
198
198
|
through the same confirmation flow.
|
|
199
199
|
|
|
200
200
|
When daily checks are enabled, a successful check is throttled for 24 hours. An offline
|
package/install.cmd
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@echo off
|
|
2
2
|
setlocal EnableExtensions DisableDelayedExpansion
|
|
3
|
-
set "HIVE_INSTALL_PACKAGE_VERSION=0.10.0
|
|
3
|
+
set "HIVE_INSTALL_PACKAGE_VERSION=0.10.0"
|
|
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.10.0",
|
|
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.10.0
|
|
5
|
+
[string]$PackageVersion = "0.10.0",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "6d909831606c2fa1b73acb392f2fd9f80e85819e77c291f3ce002d1d6d78646d"
|
|
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.10.0'
|
|
5
|
-
embedded_package_version='0.10.0
|
|
5
|
+
embedded_package_version='0.10.0'
|
|
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='c4c74fc24af593582addcfefa3559c5ccc50d8353b945d1916e6a18b5e3218e7'
|
|
11
|
+
sha_x86_64_apple_darwin='6d892dbd7ca4976cd6f89e07b0a0c385fe35a2197f8f894fb417bf9d629004f7'
|
|
12
|
+
sha_aarch64_linux_musl='96b789dfa0b2c48d291bd6416b1c3a06ae2a8d701dd11117ffb27600d4a3c6ff'
|
|
13
|
+
sha_x86_64_linux_musl='54edd95f265e174c145a8a27c0fbc18284e0ed9130f4076ad0d267384bf12fa0'
|
|
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.10.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"aigentHive": {
|
|
5
5
|
"productVersion": "0.10.0"
|
|
6
6
|
},
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@aigent-hive/darwin-arm64": "0.10.0
|
|
35
|
-
"@aigent-hive/darwin-x64": "0.10.0
|
|
36
|
-
"@aigent-hive/linux-arm64": "0.10.0
|
|
37
|
-
"@aigent-hive/linux-x64": "0.10.0
|
|
38
|
-
"@aigent-hive/win32-x64": "0.10.0
|
|
34
|
+
"@aigent-hive/darwin-arm64": "0.10.0",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.10.0",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.10.0",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.10.0",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.10.0"
|
|
39
39
|
}
|
|
40
40
|
}
|