aigent-hive 0.9.5 → 0.10.0-test.10
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 +25 -17
- package/install.cmd +1 -1
- package/install.ps1 +3 -3
- package/install.sh +6 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -12,16 +12,18 @@
|
|
|
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.9.5 release-date=2026-08-16 -->
|
|
16
|
+
|
|
15
17
|
Hive gives subscription-authenticated agent hosts one consistent setup, Skill routing,
|
|
16
18
|
project knowledge, durable role/run state, usage safeguards, and safe update contracts.
|
|
17
19
|
It never asks for model-provider API keys, calls model-provider APIs, or replaces the
|
|
18
20
|
host's own model runtime.
|
|
19
21
|
|
|
20
|
-
Stable `0.9.
|
|
22
|
+
Stable `0.9.5` is the current public release.
|
|
21
23
|
|
|
22
24
|
## Install the current stable release
|
|
23
25
|
|
|
24
|
-
`0.9.
|
|
26
|
+
`0.9.5` is published on npm as `latest`, with a normal GitHub Release and annotated Git tag.
|
|
25
27
|
|
|
26
28
|
```console
|
|
27
29
|
npm install -g aigent-hive
|
|
@@ -30,7 +32,7 @@ npm install -g aigent-hive
|
|
|
30
32
|
Or pin the exact version:
|
|
31
33
|
|
|
32
34
|
```console
|
|
33
|
-
npm install -g aigent-hive@0.9.
|
|
35
|
+
npm install -g aigent-hive@0.9.5
|
|
34
36
|
```
|
|
35
37
|
|
|
36
38
|
The npm installer requires Node.js and npm. The installed `hive` runtime is a native
|
|
@@ -39,26 +41,26 @@ Rust binary and does not require Node.js.
|
|
|
39
41
|
Expected stable version label:
|
|
40
42
|
|
|
41
43
|
```text
|
|
42
|
-
AIgent Hive v0.9.
|
|
44
|
+
AIgent Hive v0.9.5 (released 2026-08-16)
|
|
43
45
|
```
|
|
44
46
|
|
|
45
47
|
### macOS and Linux with curl
|
|
46
48
|
|
|
47
49
|
```sh
|
|
48
50
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
49
|
-
https://unpkg.com/aigent-hive@0.9.
|
|
51
|
+
https://unpkg.com/aigent-hive@0.9.5/install.sh | sh
|
|
50
52
|
```
|
|
51
53
|
|
|
52
54
|
### Windows PowerShell 5.1+
|
|
53
55
|
|
|
54
56
|
```powershell
|
|
55
|
-
irm https://unpkg.com/aigent-hive@0.9.
|
|
57
|
+
irm https://unpkg.com/aigent-hive@0.9.5/install.ps1 | iex
|
|
56
58
|
```
|
|
57
59
|
|
|
58
60
|
### Windows Command Prompt
|
|
59
61
|
|
|
60
62
|
```bat
|
|
61
|
-
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.9.
|
|
63
|
+
curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.9.5/install.cmd && install-aigent-hive.cmd
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
The direct installers fetch the same native package bytes from npm, verify the
|
|
@@ -75,7 +77,7 @@ setup steps below. It is optional: the four-step setup remains the predictable m
|
|
|
75
77
|
I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
|
|
76
78
|
initialize, or change any project, repository, folder, or current working directory.
|
|
77
79
|
|
|
78
|
-
Install the current stable release 0.9.
|
|
80
|
+
Install the current stable release 0.9.5. The stable install guidance is
|
|
79
81
|
https://github.com/gvm1229/aigent-hive#install-the-current-stable-release.
|
|
80
82
|
Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
|
|
81
83
|
me if either is unclear. Check whether Node.js and npm are available. If they are missing,
|
|
@@ -93,21 +95,27 @@ an optional third-party Skill.
|
|
|
93
95
|
|
|
94
96
|
This option installs only the current stable release.
|
|
95
97
|
|
|
96
|
-
|
|
98
|
+
## What changed in 0.9.5
|
|
99
|
+
|
|
100
|
+
- Native account recovery uses one verified account without CodexBar.
|
|
101
|
+
- Global knowledge bundles use separate macOS/Linux and Windows transfer commands.
|
|
102
|
+
- An authenticated update refreshes valid selected user projections.
|
|
103
|
+
- Project upgrades verify the declared same-major source and preserve compatible local overrides.
|
|
104
|
+
- Markdown remains canonical knowledge and SQLite remains a rebuildable index.
|
|
97
105
|
|
|
98
106
|
## Supported targets
|
|
99
107
|
|
|
100
|
-
| Platform | Native target | 0.9.
|
|
108
|
+
| Platform | Native target | 0.9.5 evidence |
|
|
101
109
|
| --- | --- | --- |
|
|
102
|
-
| macOS Apple Silicon | `aarch64-apple-darwin` |
|
|
110
|
+
| macOS Apple Silicon | `aarch64-apple-darwin` | Public stable install acceptance |
|
|
103
111
|
| macOS Intel | `x86_64-apple-darwin` | Candidate runtime qualified |
|
|
104
|
-
| Linux x86_64 | `x86_64-unknown-linux-musl` |
|
|
105
|
-
| Linux arm64 | `aarch64-unknown-linux-musl` |
|
|
106
|
-
| Windows x86_64 | `x86_64-pc-windows-msvc` |
|
|
112
|
+
| Linux x86_64 | `x86_64-unknown-linux-musl` | Native candidate qualification |
|
|
113
|
+
| Linux arm64 | `aarch64-unknown-linux-musl` | Native candidate qualification |
|
|
114
|
+
| Windows x86_64 | `x86_64-pc-windows-msvc` | Public stable install acceptance |
|
|
107
115
|
|
|
108
116
|
Codex and Antigravity have real-host qualification evidence. Claude Code packaging and
|
|
109
117
|
projection are covered by fixtures, but a real subscription-backed session remains
|
|
110
|
-
unverified. Stable `0.9.
|
|
118
|
+
unverified. Stable `0.9.5` uses explicit macOS ad-hoc signing and publishes Windows as
|
|
111
119
|
unsigned unless free SignPath Foundation signing is approved. See the
|
|
112
120
|
[code signing policy](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/code-signing-policy.md) for the exact trust boundary.
|
|
113
121
|
|
|
@@ -186,8 +194,8 @@ hive update
|
|
|
186
194
|
This performs an immediate version check. If a newer version exists, Hive explains the
|
|
187
195
|
exact update and asks before invoking the authenticated install owner. Declining,
|
|
188
196
|
closing stdin, or running non-interactively causes no installation.
|
|
189
|
-
An existing
|
|
190
|
-
|
|
197
|
+
An existing installation keeps its owner evidence and may update to exact stable `0.9.5`
|
|
198
|
+
through the same confirmation flow.
|
|
191
199
|
|
|
192
200
|
When daily checks are enabled, a successful check is throttled for 24 hours. An offline
|
|
193
201
|
or failed check is not recorded as successful, so the next Codex, Claude Code, or
|
package/install.cmd
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@echo off
|
|
2
2
|
setlocal EnableExtensions DisableDelayedExpansion
|
|
3
|
-
set "HIVE_INSTALL_PACKAGE_VERSION=0.
|
|
3
|
+
set "HIVE_INSTALL_PACKAGE_VERSION=0.10.0-test.10"
|
|
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.
|
|
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.
|
|
5
|
+
[string]$PackageVersion = "0.10.0-test.10",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "df261cf43be763652a2977ffdedcd8f5f5b616533ec923ff9ac49bc4ca056707"
|
|
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.
|
|
5
|
-
embedded_package_version='0.
|
|
4
|
+
embedded_product_version='0.10.0'
|
|
5
|
+
embedded_package_version='0.10.0-test.10'
|
|
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='4296058a2ebed8c9e154dffb5ac43bb425f661087093471c743a594ef8a2f262'
|
|
11
|
+
sha_x86_64_apple_darwin='a781ac9d16d0490430c45931ad679b455cabb93815ae1de393eca610ab6c4e2a'
|
|
12
|
+
sha_aarch64_linux_musl='4165846f05d72b899438932ec15f4f6c72a6923aa7d48d38fb176497d3e8399c'
|
|
13
|
+
sha_x86_64_linux_musl='3c972e78823dd18ee35e08ef3b0d42baea20d6ed29fc305f27b11678fb50af66'
|
|
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.
|
|
3
|
+
"version": "0.10.0-test.10",
|
|
4
4
|
"aigentHive": {
|
|
5
|
-
"productVersion": "0.
|
|
5
|
+
"productVersion": "0.10.0"
|
|
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.
|
|
35
|
-
"@aigent-hive/darwin-x64": "0.
|
|
36
|
-
"@aigent-hive/linux-arm64": "0.
|
|
37
|
-
"@aigent-hive/linux-x64": "0.
|
|
38
|
-
"@aigent-hive/win32-x64": "0.
|
|
34
|
+
"@aigent-hive/darwin-arm64": "0.10.0-test.10",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.10.0-test.10",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.10.0-test.10",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.10.0-test.10",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.10.0-test.10"
|
|
39
39
|
}
|
|
40
40
|
}
|