@tt-a1i/hive 1.1.3 → 1.1.5
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/CHANGELOG.md +23 -0
- package/dist/bin/team.cmd +0 -0
- package/dist/src/server/route-types.d.ts +3 -3
- package/dist/src/server/version-service.js +1 -1
- package/package.json +1 -1
- package/web/dist/assets/index-BHCSrZ_0.js +66 -0
- package/web/dist/assets/index-BUjVAMN8.css +1 -0
- package/web/dist/index.html +2 -2
- package/web/dist/assets/index-B048NECd.js +0 -66
- package/web/dist/assets/index-DUlPKsEn.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable user-facing changes will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.1.5 - 2026-05-18
|
|
6
|
+
|
|
7
|
+
Custom startup command and close-guard fixes.
|
|
8
|
+
|
|
9
|
+
- Keeps the selected CLI interaction driver when a custom startup command is
|
|
10
|
+
provided. This lets aliases such as `ccs --continue` start Claude Code while
|
|
11
|
+
Hive still submits messages using Claude Code's bracketed-paste flow.
|
|
12
|
+
- Adds an explicit "Generic command" option for unknown CLIs such as Qwen or
|
|
13
|
+
custom agent shells that should use only the provided startup command.
|
|
14
|
+
- Covers both directions of the shell-wrapper path: `team send` into a custom
|
|
15
|
+
worker command and `team report` back into a custom orchestrator command.
|
|
16
|
+
- Prompts with the browser's native confirmation dialog before closing or
|
|
17
|
+
refreshing the Hive tab while the active workspace still has running terminal
|
|
18
|
+
sessions.
|
|
19
|
+
|
|
20
|
+
## 1.1.4 - 2026-05-17
|
|
21
|
+
|
|
22
|
+
Update guidance polish.
|
|
23
|
+
|
|
24
|
+
- Shows `npm install -g @tt-a1i/hive@latest` in update prompts instead of
|
|
25
|
+
`npm update -g @tt-a1i/hive`, making the upgrade command explicit and
|
|
26
|
+
deterministic across npm versions.
|
|
27
|
+
|
|
5
28
|
## 1.1.3 - 2026-05-17
|
|
6
29
|
|
|
7
30
|
Brand polish.
|
package/dist/bin/team.cmd
CHANGED
|
File without changes
|
|
@@ -26,9 +26,9 @@ export interface CreateWorkspaceBody {
|
|
|
26
26
|
name: string;
|
|
27
27
|
/** Default true. When false, skip orchestrator PTY spawn after creation. */
|
|
28
28
|
autostart_orchestrator?: boolean;
|
|
29
|
-
/** Optional command preset
|
|
29
|
+
/** Optional command preset. With startup_command, this selects the CLI interaction driver. */
|
|
30
30
|
command_preset_id?: string | null;
|
|
31
|
-
/** Optional full startup command. When set,
|
|
31
|
+
/** Optional full startup command. When set, it overrides the executable only. */
|
|
32
32
|
startup_command?: string | null;
|
|
33
33
|
}
|
|
34
34
|
export interface CreateWorkerBody {
|
|
@@ -37,7 +37,7 @@ export interface CreateWorkerBody {
|
|
|
37
37
|
description?: string;
|
|
38
38
|
name: string;
|
|
39
39
|
role: WorkerRole;
|
|
40
|
-
/** Optional full startup command. When set,
|
|
40
|
+
/** Optional full startup command. When set, it overrides the executable only. */
|
|
41
41
|
startup_command?: string | null;
|
|
42
42
|
}
|
|
43
43
|
export interface UserInputBody {
|
|
@@ -27,7 +27,7 @@ export const compareVersions = (left, right) => {
|
|
|
27
27
|
};
|
|
28
28
|
const buildVersionInfo = (currentVersion, latestVersion) => ({
|
|
29
29
|
current_version: currentVersion,
|
|
30
|
-
install_hint: `npm
|
|
30
|
+
install_hint: `npm install -g ${PACKAGE_NAME}@latest`,
|
|
31
31
|
latest_version: latestVersion,
|
|
32
32
|
package_name: PACKAGE_NAME,
|
|
33
33
|
release_url: `https://www.npmjs.com/package/${PACKAGE_NAME}/v/${latestVersion}`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tt-a1i/hive",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Browser-native hive-mind for CLI coding agents — Claude Code, Codex, Gemini, and OpenCode collaborate as real PTY processes via a team protocol.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.30.3",
|