aigent-hive 0.9.0-test.6 → 0.9.0-test.7

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 CHANGED
@@ -1,3 +1,3 @@
1
1
  # aigent-hive
2
2
 
3
- Aigent Hive 0.9.0 package 0.9.0-test.6. Install the CLI with `npm install -g aigent-hive`.
3
+ Aigent Hive 0.9.0 package 0.9.0-test.7. Install the CLI with `npm install -g aigent-hive`.
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.0-test.6"
3
+ set "HIVE_INSTALL_PACKAGE_VERSION=0.9.0-test.7"
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.9.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.9.0-test.6",
5
+ [string]$PackageVersion = "0.9.0-test.7",
6
6
  [string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
7
7
  )
8
8
 
9
9
  $ErrorActionPreference = "Stop"
10
10
  $AuthorizedSignerThumbprint = ""
11
- $ExpectedArchiveSha256 = "28580ef6390f65d88ce8bfa424054a011a4efef9b7e41733e7419e47a77128c6"
11
+ $ExpectedArchiveSha256 = "853d72c1ace296c113d73d3f70a802567d0eeae0ae2f70b785b5d5eb28d588fe"
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.9.0'
5
- embedded_package_version='0.9.0-test.6'
5
+ embedded_package_version='0.9.0-test.7'
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='5739493fc3e494be81969a0a26e56212c3b42cc279b7a703ed2c9eedfe491d46'
11
- sha_x86_64_apple_darwin='332f23c2caae2ef7c269ceb850518bf08ef09f5f97e3de0dd06c0d4a6efac1ca'
12
- sha_aarch64_linux_musl='27725e268d565390e69d12a1c1b63fef01ae7294bb8d9c2b094b5e4d9686dc97'
13
- sha_x86_64_linux_musl='ed0e3632b6bd09246eb7cd53912ce3b7b65c557879d257228598a0f3ef2c645c'
10
+ sha_aarch64_apple_darwin='a0d1c1d035c0b393d9e57a4a05baebe9aed0302a9b390868da074b51cbd000a7'
11
+ sha_x86_64_apple_darwin='0357f60f1990b56bab5a2e0c2a767487325421331bd883e58adb72c00091b232'
12
+ sha_aarch64_linux_musl='38174a7582dbe55423e0be5f5ca16ca2a34a7ebe7581ca77699471b49812c593'
13
+ sha_x86_64_linux_musl='b4120c0e3774d5fff02fb052cc8130a9dd4b011ce86ac5026dffee4c987191cb'
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.9.0-test.6",
3
+ "version": "0.9.0-test.7",
4
4
  "aigentHive": {
5
5
  "productVersion": "0.9.0"
6
6
  },
@@ -31,10 +31,10 @@
31
31
  "node": ">=18"
32
32
  },
33
33
  "optionalDependencies": {
34
- "@aigent-hive/darwin-arm64": "0.9.0-test.6",
35
- "@aigent-hive/darwin-x64": "0.9.0-test.6",
36
- "@aigent-hive/linux-arm64": "0.9.0-test.6",
37
- "@aigent-hive/linux-x64": "0.9.0-test.6",
38
- "@aigent-hive/win32-x64": "0.9.0-test.6"
34
+ "@aigent-hive/darwin-arm64": "0.9.0-test.7",
35
+ "@aigent-hive/darwin-x64": "0.9.0-test.7",
36
+ "@aigent-hive/linux-arm64": "0.9.0-test.7",
37
+ "@aigent-hive/linux-x64": "0.9.0-test.7",
38
+ "@aigent-hive/win32-x64": "0.9.0-test.7"
39
39
  }
40
40
  }