aigent-hive 0.9.5 → 0.10.0-test.1
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 +1 -1
- 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
|
|
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.1"
|
|
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.1",
|
|
6
6
|
[string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
|
|
7
7
|
)
|
|
8
8
|
|
|
9
9
|
$ErrorActionPreference = "Stop"
|
|
10
10
|
$AuthorizedSignerThumbprint = ""
|
|
11
|
-
$ExpectedArchiveSha256 = "
|
|
11
|
+
$ExpectedArchiveSha256 = "c7af4928c4e2644a9897ba481e349f3b06b865df72bfacf213a57496d0c35d3b"
|
|
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.1'
|
|
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='c5cd4d70361ac6aa52a3b975d3a748d132f60443b13c767ab5743ee3fdcee1fa'
|
|
11
|
+
sha_x86_64_apple_darwin='dd3bcd760d875fc8b7dfe68083f56d267115e5aaf8c321ff63561d169cd86c54'
|
|
12
|
+
sha_aarch64_linux_musl='233f09eed99ad7a1a45847d67d4150dc2553cc3ccb98e63d61c66d19049047fc'
|
|
13
|
+
sha_x86_64_linux_musl='9a47087d0916abf6b5981e64f67d4a08853f54638f57e0cd91f285eef1e1001d'
|
|
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.1",
|
|
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.1",
|
|
35
|
+
"@aigent-hive/darwin-x64": "0.10.0-test.1",
|
|
36
|
+
"@aigent-hive/linux-arm64": "0.10.0-test.1",
|
|
37
|
+
"@aigent-hive/linux-x64": "0.10.0-test.1",
|
|
38
|
+
"@aigent-hive/win32-x64": "0.10.0-test.1"
|
|
39
39
|
}
|
|
40
40
|
}
|