@tt-a1i/hive 1.1.4 → 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 CHANGED
@@ -2,6 +2,21 @@
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
+
5
20
  ## 1.1.4 - 2026-05-17
6
21
 
7
22
  Update guidance 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 to use for the initial orchestrator launch. */
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, this overrides command_preset_id. */
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, this overrides command_preset_id. */
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tt-a1i/hive",
3
- "version": "1.1.4",
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",