aigent-hive 0.10.1 → 0.10.2-test.2

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
@@ -6,24 +6,24 @@
6
6
 
7
7
  > A provider-neutral local harness for Codex, Claude Code, and Gemini Antigravity.
8
8
 
9
- [![Version](https://img.shields.io/badge/version-0.10.1-4C1)](https://github.com/gvm1229/aigent-hive/blob/main/Cargo.toml)
9
+ [![Version](https://img.shields.io/badge/version-0.10.2-4C1)](https://github.com/gvm1229/aigent-hive/blob/main/Cargo.toml)
10
10
  [![Rust](https://img.shields.io/badge/Rust-stable-000000?logo=rust)](https://github.com/gvm1229/aigent-hive/blob/main/rust-toolchain.toml)
11
11
  [![License](https://img.shields.io/badge/license-Apache--2.0-green)](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.10.1 release-date=2026-09-06 -->
15
+ <!-- AIGENT-HIVE:PUBLIC-STABLE version=0.10.2 release-date=2026-09-07 -->
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.10.1` is the current public release.
22
+ Stable `0.10.2` is the current public release.
23
23
 
24
24
  ## Install the current stable release
25
25
 
26
- `0.10.1` is published on npm as `latest`, with a normal GitHub Release and annotated Git tag.
26
+ `0.10.2` 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.10.1
35
+ npm install -g aigent-hive@0.10.2
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.10.1 (released 2026-09-06)
44
+ AIgent Hive v0.10.2 (released 2026-09-07)
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.10.1/install.sh | sh
51
+ https://unpkg.com/aigent-hive@0.10.2/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.10.1/install.ps1 | iex
57
+ irm https://unpkg.com/aigent-hive@0.10.2/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.10.1/install.cmd && install-aigent-hive.cmd
63
+ curl.exe -fLo install-aigent-hive.cmd https://unpkg.com/aigent-hive@0.10.2/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
@@ -70,21 +70,20 @@ require npm, Node.js, or PowerShell 7.
70
70
  ## Optional one-prompt setup
71
71
 
72
72
  If you want Codex, Claude Code, or Gemini Antigravity to guide the entire user-level
73
- installation, paste the following prompt instead of manually following the first three
74
- setup steps below. It is optional: the four-step setup remains the predictable manual path.
73
+ installation, paste the following prompt instead of following the manual steps below.
75
74
 
76
75
  ```text
77
76
  I want the optional one-prompt Aigent Hive setup. Work only at user scope; do not inspect,
78
77
  initialize, or change any project, repository, folder, or current working directory.
79
78
 
80
- Install the current stable release 0.10.1. The stable install guidance is
79
+ Install the current stable release 0.10.2. The stable install guidance is
81
80
  https://github.com/gvm1229/aigent-hive#install-the-current-stable-release.
82
81
  Detect my operating system and active host (Codex, Claude Code, or Gemini Antigravity), asking
83
82
  me if either is unclear. Check whether Node.js and npm are available. If they are missing,
84
83
  give me the official OS-specific Node.js installation command and request any approval the host
85
84
  requires before installing it. Then install the exact Hive release I selected using the official
86
- method in the linked guidance, verify `hive --version`, and activate only my host with
87
- `hive install --scope user --host <detected-host> --apply --output json`.
85
+ method in the linked guidance, verify `hive --version`, then run `hive update` once and select
86
+ the active host when prompted.
88
87
 
89
88
  Then begin interactive global setup in this conversation. For a first setup, ask only whether I
90
89
  want English or Korean first; continue one question at a time. For existing settings, first ask
@@ -95,17 +94,17 @@ an optional third-party Skill.
95
94
 
96
95
  This option installs only the current stable release.
97
96
 
98
- ## What changed in 0.10.1
97
+ ## What changed in 0.10.2
99
98
 
100
- - Project harness upgrades authenticate the installed release before migration, including exact `0.9.5` and `0.10.0` bases.
101
- - Declared Skill renames and merges converge safely; duplicates, unknown names, collisions, and modified managed files stop without writes.
102
- - Changing the usage threshold rechecks the same session immediately while the guard stays active.
103
- - Upgrade scans report the source version, snapshot digest, migration ID, normalized fields, and declared Skill merges.
104
- - Project settings, user documents, local markers, external bytes, rollback, and recovery boundaries remain preserved.
99
+ - `hive update` now reconciles authenticated global user settings and selected-host projections even when the executable is already current.
100
+ - A first npm installation selects one or more hosts through `hive update`; npm itself still installs executable packages only.
101
+ - Newly introduced global questions pause ordinary Hive work until answered, then resume the same digest-bound update automatically.
102
+ - Exact `0.9.5` through `0.10.1` user installations can migrate directly while foreign, modified, and project files stay outside the transaction.
103
+ - Prompt-authoring requests and implementation requests route separately, while scoped investigation keeps already authorized work moving.
105
104
 
106
105
  ## Supported targets
107
106
 
108
- | Platform | Native target | 0.10.1 evidence |
107
+ | Platform | Native target | 0.10.2 evidence |
109
108
  | --- | --- | --- |
110
109
  | macOS Apple Silicon | `aarch64-apple-darwin` | Public stable install acceptance |
111
110
  | macOS Intel | `x86_64-apple-darwin` | Candidate runtime qualified |
@@ -115,50 +114,41 @@ This option installs only the current stable release.
115
114
 
116
115
  Codex and Antigravity have real-host qualification evidence. Claude Code packaging and
117
116
  projection are covered by fixtures, but a real subscription-backed session remains
118
- unverified. Stable `0.10.1` uses explicit macOS ad-hoc signing and publishes Windows as
117
+ unverified. Stable `0.10.2` uses explicit macOS ad-hoc signing and publishes Windows as
119
118
  unsigned unless free SignPath Foundation signing is approved. See the
120
119
  [code signing policy](https://github.com/gvm1229/aigent-hive/blob/main/docs/guides/code-signing-policy.md) for the exact trust boundary.
121
120
 
122
121
  ## First setup
123
122
 
124
- Follow these four steps in order. Repeat step 2 for each host, step 4 for each project,
125
- and step 3 whenever global preferences change.
123
+ First install the executable, then run one global update command. Project setup remains a
124
+ separate, explicit action for each project.
126
125
 
127
126
  ### 1. Install the Hive CLI
128
127
 
129
128
  Use one command from [Install the current stable release](#install-the-current-stable-release) above. The npm installation provides the
130
- `hive` command; it does not yet activate Hive inside a host.
129
+ `hive` command only. It does not create user settings, host projections, or a project harness.
131
130
 
132
- ### 2. Activate Hive for this host
131
+ ### 2. Initialize or update the global Hive installation
133
132
 
134
- In a terminal, activate the host projection:
133
+ In an interactive terminal, run:
135
134
 
136
135
  ```console
137
- hive install --scope user --host codex --apply --output json
136
+ hive update
138
137
  ```
139
138
 
140
- Replace `codex` with `claude` or `antigravity` for that host. This operation restores an
141
- authenticated known prior user installation before updating it to the current projection;
142
- it still refuses unknown or modified ownership manifests.
143
-
144
- ### 3. Configure global preferences
145
-
146
- Open Codex, Claude Code, or Gemini Antigravity and paste this shared prompt:
139
+ For a first npm installation, choose one or more hosts when prompted. Hive installs only its
140
+ owned minimum user projection. For an existing installation, it refreshes and validates only
141
+ the authenticated saved hosts; it does not inspect or change projects.
147
142
 
148
- ```text
149
- Configure or reconfigure my global Aigent Hive preferences for this host. Do not inspect or configure a project, repository, folder, or current working directory. Start the interactive user-scope setup.
150
- ```
143
+ ### 3. Answer any new global question
151
144
 
152
- Use this prompt for the first setup and later preference changes. It configures only your
153
- user-scope language, Wiki, user contexts, persona, Skills, and update preferences; it never inspects the
154
- current folder or creates a project harness.
145
+ Open a selected host. If the release introduced a new global choice, Hive asks it before ordinary
146
+ work. This is intentional: choosing whether to enable a feature such as semantic search can
147
+ change storage, downloads, or future behavior. `yes` and `no` are both valid answers; cancelling
148
+ or leaving it unanswered keeps ordinary Hive work blocked.
155
149
 
156
- All built-in Skills are active by default. If you prefer a smaller set, choose Skills one by
157
- one during setup; `setup-hive` always remains active. You may select multiple user contexts and
158
- add a short description. They help Hive understand you globally, but never choose a project
159
- workflow, implementation approach, delivery priority, or active Skill set. Your persona and
160
- selected host also never change the active Skill set. Users with an earlier recommended-suite
161
- setting keep its exact existing Skill set until they review and approve a new preview.
150
+ After the final answer, Hive automatically reapplies and validates its global user projection.
151
+ You do not need to run `hive install` or a separate setup command.
162
152
 
163
153
  ### 4. Configure one project
164
154
 
@@ -191,11 +181,11 @@ canonical knowledge in Markdown.
191
181
  hive update
192
182
  ```
193
183
 
194
- This performs an immediate version check. If a newer version exists, Hive explains the
195
- exact update and asks before invoking the authenticated install owner. Declining,
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.10.1`
198
- through the same confirmation flow.
184
+ This performs an immediate version check and reconciles Hive-owned global user files even when
185
+ the executable is already current. If a newer version exists, Hive explains the exact update and
186
+ asks before invoking the authenticated install owner. Declining, closing stdin, or running
187
+ non-interactively causes no installation. The first initialization requires an interactive host
188
+ selection.
199
189
 
200
190
  When daily checks are enabled, a successful check is throttled for 24 hours. An offline
201
191
  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.10.1"
3
+ set "HIVE_INSTALL_PACKAGE_VERSION=0.10.2-test.2"
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.10.1",
3
+ [string]$Version = "0.10.2",
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.1",
5
+ [string]$PackageVersion = "0.10.2-test.2",
6
6
  [string]$Prefix = "$env:LOCALAPPDATA\AigentHive"
7
7
  )
8
8
 
9
9
  $ErrorActionPreference = "Stop"
10
10
  $AuthorizedSignerThumbprint = ""
11
- $ExpectedArchiveSha256 = "c72934b7579e2ad073572ec6ad5e382415ac5c804758f09efda2b784b0788e0f"
11
+ $ExpectedArchiveSha256 = "c18fbee7d3a0811c8a0908f7d1742520f9fdbbd5b8a91efd7de67f146d6a876d"
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.10.1'
5
- embedded_package_version='0.10.1'
4
+ embedded_product_version='0.10.2'
5
+ embedded_package_version='0.10.2-test.2'
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='730553ce28f6581cbec726fd9b4f14669ef34bfeb92771132eff9f137dfe89d5'
11
- sha_x86_64_apple_darwin='7265c20a54d6156a5b9dea99519478ed0f64834f836ac1772080ca6c465f4c17'
12
- sha_aarch64_linux_musl='e0efab7fc182f0645830bc135989f906584528c534f7083f5049f4c199288898'
13
- sha_x86_64_linux_musl='ccdfb39808aab5e9dba4e2ffaad1e9fef3d9d1e75918756f61f854edc345b93b'
10
+ sha_aarch64_apple_darwin='72434d8ba35a24d3a8ac4cf78736f13a104fb1537813e5fef440494521c2d3e6'
11
+ sha_x86_64_apple_darwin='0e53f454255748896668b533bc1c1bff3156829caa85e3ca4ac4dbca5f02e574'
12
+ sha_aarch64_linux_musl='1936e267e3e978baf6660f745dbe31627425c7f7223b1f6e194e051e21f584ac'
13
+ sha_x86_64_linux_musl='c556180ab22b5ecd55566220198b5dedd5e70c934467614cd81896ee5a896dd6'
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.10.1",
3
+ "version": "0.10.2-test.2",
4
4
  "aigentHive": {
5
- "productVersion": "0.10.1"
5
+ "productVersion": "0.10.2"
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.10.1",
35
- "@aigent-hive/darwin-x64": "0.10.1",
36
- "@aigent-hive/linux-arm64": "0.10.1",
37
- "@aigent-hive/linux-x64": "0.10.1",
38
- "@aigent-hive/win32-x64": "0.10.1"
34
+ "@aigent-hive/darwin-arm64": "0.10.2-test.2",
35
+ "@aigent-hive/darwin-x64": "0.10.2-test.2",
36
+ "@aigent-hive/linux-arm64": "0.10.2-test.2",
37
+ "@aigent-hive/linux-x64": "0.10.2-test.2",
38
+ "@aigent-hive/win32-x64": "0.10.2-test.2"
39
39
  }
40
40
  }