very-happy-cli 0.2.94 → 0.2.96
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/dist/{AcpBackend-Ds4mP02F.mjs → AcpBackend-B5Eh8G3W.mjs} +1 -1
- package/dist/{AcpBackend-DoSXb9La.cjs → AcpBackend-BaCt4_zS.cjs} +1 -1
- package/dist/{AcpSessionManager-DQ6j5fp4.cjs → AcpSessionManager-CvgmPlXB.cjs} +1 -1
- package/dist/{AcpSessionManager-B6RqjyQS.mjs → AcpSessionManager-grr_aJEI.mjs} +1 -1
- package/dist/{config-yrZNEia7.mjs → config-B69TZlJj.mjs} +2 -2
- package/dist/{config-IdMPfmwy.cjs → config-BjsUeQPA.cjs} +2 -2
- package/dist/{index-27948eGz.mjs → index-BMmbxCTq.mjs} +210 -47
- package/dist/{index-DXpQrR4U.mjs → index-C-uJXSm3.mjs} +5 -5
- package/dist/{index-BfCdbWQI.cjs → index-DID1FV_n.cjs} +4 -4
- package/dist/{index-bqUSeHWU.cjs → index-uc-dtu-3.cjs} +212 -49
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/{installTerminalHooks-dVZoe8om.mjs → installTerminalHooks-CBHjEQ-a.mjs} +2 -2
- package/dist/{installTerminalHooks-D0gCqzZu.cjs → installTerminalHooks-CepXxAM_.cjs} +2 -2
- package/dist/lib.cjs +1 -1
- package/dist/lib.mjs +1 -1
- package/dist/{mcp-BvDgylsM.mjs → mcp-BdSHqi2d.mjs} +2 -2
- package/dist/{mcp-CRcmpUpX.cjs → mcp-CAtbtTXF.cjs} +2 -2
- package/dist/{runGemini-DIAChFOe.mjs → runGemini-cMZ3_CRf.mjs} +4 -4
- package/dist/{runGemini-BoVDs_V6.cjs → runGemini-qStPY5fH.cjs} +4 -4
- package/dist/{runOpenClaw-Cdsug1sI.cjs → runOpenClaw-B8HR6GnX.cjs} +3 -3
- package/dist/{runOpenClaw-DcC_uOjt.mjs → runOpenClaw-BJ36wEbk.mjs} +3 -3
- package/dist/{send-DoFm4-OB.cjs → send-6eY55o3C.cjs} +2 -2
- package/dist/{send-DvDOKQ4V.mjs → send-TX13v8Xe.mjs} +2 -2
- package/dist/{spawn-CEWzROeD.mjs → spawn-CfCE6JAv.mjs} +2 -2
- package/dist/{spawn-C7QRBKkQ.cjs → spawn-vOZA0kOi.cjs} +2 -2
- package/dist/{types-CSOwbjq5.mjs → types-CLRl0ET3.mjs} +18 -8
- package/dist/{types-CcaZTXxx.cjs → types-okYCRlgl.cjs} +19 -9
- package/package.json +7 -7
|
@@ -29,7 +29,7 @@ import { SandboxManager } from '@anthropic-ai/sandbox-runtime';
|
|
|
29
29
|
import { Expo } from 'expo-server-sdk';
|
|
30
30
|
|
|
31
31
|
var name = "very-happy-cli";
|
|
32
|
-
var version = "0.2.
|
|
32
|
+
var version = "0.2.96";
|
|
33
33
|
var description = "Remote multi-agent workspace CLI with deep Claude integration, native terminal streaming, and self-hosting.";
|
|
34
34
|
var author = "Kirill Dubovitskiy";
|
|
35
35
|
var contributors = [
|
|
@@ -142,12 +142,12 @@ var dependencies = {
|
|
|
142
142
|
zod: "^4.0.0"
|
|
143
143
|
};
|
|
144
144
|
var optionalDependencies = {
|
|
145
|
-
"very-happy-tools-arm64-darwin": "0.2.
|
|
146
|
-
"very-happy-tools-x64-darwin": "0.2.
|
|
147
|
-
"very-happy-tools-arm64-linux": "0.2.
|
|
148
|
-
"very-happy-tools-x64-linux": "0.2.
|
|
149
|
-
"very-happy-tools-arm64-win32": "0.2.
|
|
150
|
-
"very-happy-tools-x64-win32": "0.2.
|
|
145
|
+
"very-happy-tools-arm64-darwin": "0.2.96",
|
|
146
|
+
"very-happy-tools-x64-darwin": "0.2.96",
|
|
147
|
+
"very-happy-tools-arm64-linux": "0.2.96",
|
|
148
|
+
"very-happy-tools-x64-linux": "0.2.96",
|
|
149
|
+
"very-happy-tools-arm64-win32": "0.2.96",
|
|
150
|
+
"very-happy-tools-x64-win32": "0.2.96"
|
|
151
151
|
};
|
|
152
152
|
var devDependencies = {
|
|
153
153
|
"@slopus/happy-wire": "workspace:*",
|
|
@@ -10346,8 +10346,18 @@ function resolveDefaultShell(platform, env, isExecutable = (path) => {
|
|
|
10346
10346
|
function defaultShell() {
|
|
10347
10347
|
return resolveDefaultShell(process.platform, process.env);
|
|
10348
10348
|
}
|
|
10349
|
+
const VH_SESSION_OPTION_OVERRIDES = [
|
|
10350
|
+
["session", "destroy-unattached", "off"],
|
|
10351
|
+
["window", "remain-on-exit", "off"],
|
|
10352
|
+
["window", "window-size", "latest"],
|
|
10353
|
+
["window", "pane-border-status", "off"]
|
|
10354
|
+
];
|
|
10349
10355
|
function tmuxNewSessionArgs(session, cols, rows, cwd, envFlags, shell) {
|
|
10350
|
-
|
|
10356
|
+
const args = ["new-session", "-d", ...envFlags, "-s", session, "-x", String(cols), "-y", String(rows), "-c", cwd, shell];
|
|
10357
|
+
for (const [scope, option, value] of VH_SESSION_OPTION_OVERRIDES) {
|
|
10358
|
+
args.push(";", "set-option", ...scope === "window" ? ["-w"] : [], "-q", "-t", `=${session}:`, option, value);
|
|
10359
|
+
}
|
|
10360
|
+
return args;
|
|
10351
10361
|
}
|
|
10352
10362
|
function shouldUseDirectPtyFallback(attachOnly, createdNew, sessionAlive) {
|
|
10353
10363
|
return !attachOnly && !createdNew && !sessionAlive;
|
|
@@ -51,7 +51,7 @@ var z__namespace = /*#__PURE__*/_interopNamespaceDefault(z);
|
|
|
51
51
|
var pty__namespace = /*#__PURE__*/_interopNamespaceDefault(pty);
|
|
52
52
|
|
|
53
53
|
var name = "very-happy-cli";
|
|
54
|
-
var version = "0.2.
|
|
54
|
+
var version = "0.2.96";
|
|
55
55
|
var description = "Remote multi-agent workspace CLI with deep Claude integration, native terminal streaming, and self-hosting.";
|
|
56
56
|
var author = "Kirill Dubovitskiy";
|
|
57
57
|
var contributors = [
|
|
@@ -164,12 +164,12 @@ var dependencies = {
|
|
|
164
164
|
zod: "^4.0.0"
|
|
165
165
|
};
|
|
166
166
|
var optionalDependencies = {
|
|
167
|
-
"very-happy-tools-arm64-darwin": "0.2.
|
|
168
|
-
"very-happy-tools-x64-darwin": "0.2.
|
|
169
|
-
"very-happy-tools-arm64-linux": "0.2.
|
|
170
|
-
"very-happy-tools-x64-linux": "0.2.
|
|
171
|
-
"very-happy-tools-arm64-win32": "0.2.
|
|
172
|
-
"very-happy-tools-x64-win32": "0.2.
|
|
167
|
+
"very-happy-tools-arm64-darwin": "0.2.96",
|
|
168
|
+
"very-happy-tools-x64-darwin": "0.2.96",
|
|
169
|
+
"very-happy-tools-arm64-linux": "0.2.96",
|
|
170
|
+
"very-happy-tools-x64-linux": "0.2.96",
|
|
171
|
+
"very-happy-tools-arm64-win32": "0.2.96",
|
|
172
|
+
"very-happy-tools-x64-win32": "0.2.96"
|
|
173
173
|
};
|
|
174
174
|
var devDependencies = {
|
|
175
175
|
"@slopus/happy-wire": "workspace:*",
|
|
@@ -1545,7 +1545,7 @@ class RpcHandlerManager {
|
|
|
1545
1545
|
}
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
|
-
const __dirname$1 = path$1.dirname(url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('types-
|
|
1548
|
+
const __dirname$1 = path$1.dirname(url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('types-okYCRlgl.cjs', document.baseURI).href))));
|
|
1549
1549
|
function projectPath() {
|
|
1550
1550
|
const path = path$1.resolve(__dirname$1, "..");
|
|
1551
1551
|
return path;
|
|
@@ -10368,8 +10368,18 @@ function resolveDefaultShell(platform, env, isExecutable = (path) => {
|
|
|
10368
10368
|
function defaultShell() {
|
|
10369
10369
|
return resolveDefaultShell(process.platform, process.env);
|
|
10370
10370
|
}
|
|
10371
|
+
const VH_SESSION_OPTION_OVERRIDES = [
|
|
10372
|
+
["session", "destroy-unattached", "off"],
|
|
10373
|
+
["window", "remain-on-exit", "off"],
|
|
10374
|
+
["window", "window-size", "latest"],
|
|
10375
|
+
["window", "pane-border-status", "off"]
|
|
10376
|
+
];
|
|
10371
10377
|
function tmuxNewSessionArgs(session, cols, rows, cwd, envFlags, shell) {
|
|
10372
|
-
|
|
10378
|
+
const args = ["new-session", "-d", ...envFlags, "-s", session, "-x", String(cols), "-y", String(rows), "-c", cwd, shell];
|
|
10379
|
+
for (const [scope, option, value] of VH_SESSION_OPTION_OVERRIDES) {
|
|
10380
|
+
args.push(";", "set-option", ...scope === "window" ? ["-w"] : [], "-q", "-t", `=${session}:`, option, value);
|
|
10381
|
+
}
|
|
10382
|
+
return args;
|
|
10373
10383
|
}
|
|
10374
10384
|
function shouldUseDirectPtyFallback(attachOnly, createdNew, sessionAlive) {
|
|
10375
10385
|
return !attachOnly && !createdNew && !sessionAlive;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "very-happy-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.96",
|
|
4
4
|
"description": "Remote multi-agent workspace CLI with deep Claude integration, native terminal streaming, and self-hosting.",
|
|
5
5
|
"author": "Kirill Dubovitskiy",
|
|
6
6
|
"contributors": [
|
|
@@ -113,12 +113,12 @@
|
|
|
113
113
|
"zod": "^4.0.0"
|
|
114
114
|
},
|
|
115
115
|
"optionalDependencies": {
|
|
116
|
-
"very-happy-tools-arm64-darwin": "0.2.
|
|
117
|
-
"very-happy-tools-x64-darwin": "0.2.
|
|
118
|
-
"very-happy-tools-arm64-linux": "0.2.
|
|
119
|
-
"very-happy-tools-x64-linux": "0.2.
|
|
120
|
-
"very-happy-tools-arm64-win32": "0.2.
|
|
121
|
-
"very-happy-tools-x64-win32": "0.2.
|
|
116
|
+
"very-happy-tools-arm64-darwin": "0.2.96",
|
|
117
|
+
"very-happy-tools-x64-darwin": "0.2.96",
|
|
118
|
+
"very-happy-tools-arm64-linux": "0.2.96",
|
|
119
|
+
"very-happy-tools-x64-linux": "0.2.96",
|
|
120
|
+
"very-happy-tools-arm64-win32": "0.2.96",
|
|
121
|
+
"very-happy-tools-x64-win32": "0.2.96"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"@slopus/happy-wire": "workspace:*",
|