claude-use 2.5.0 → 2.5.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/dist/cli.cjs +4 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -221824,7 +221824,7 @@ var program = new Command();
|
|
|
221824
221824
|
// package.json
|
|
221825
221825
|
var package_default = {
|
|
221826
221826
|
name: "claude-use",
|
|
221827
|
-
version: "2.5.
|
|
221827
|
+
version: "2.5.2",
|
|
221828
221828
|
description: "A profile manager and launcher for Claude Code that lets one person run multiple logins from one machine while controlling what gets shared between them.",
|
|
221829
221829
|
license: "Apache-2.0",
|
|
221830
221830
|
author: "Joseph Mearman <joseph@mearman.co.uk>",
|
|
@@ -241707,7 +241707,7 @@ var HeadroomGlobalConfigSchema = external_exports.strictObject({
|
|
|
241707
241707
|
/** How long the daemon may sit with no registered sessions before the supervisor stops it. Defaults to HEADROOM_DEFAULT_IDLE_SHUTDOWN_MINUTES. */
|
|
241708
241708
|
idleShutdownMinutes: external_exports.number().int().positive().optional()
|
|
241709
241709
|
});
|
|
241710
|
-
var HEADROOM_DEFAULT_SOURCE = "headroom[proxy] @ git+https://github.com/ExaDev/headroom";
|
|
241710
|
+
var HEADROOM_DEFAULT_SOURCE = "headroom-ai[proxy] @ git+https://github.com/ExaDev/headroom@feat/per-session-savings";
|
|
241711
241711
|
var HEADROOM_DEFAULT_IDLE_SHUTDOWN_MINUTES = 15;
|
|
241712
241712
|
var GlobalConfigSchema = external_exports.strictObject({
|
|
241713
241713
|
$schema: external_exports.string().optional(),
|
|
@@ -248374,6 +248374,8 @@ function runLauncher(params) {
|
|
|
248374
248374
|
result.noOp ? `claude-use: farm at ${result.farmRoot} already matches the resolved cascade` : `claude-use: farm at ${result.farmRoot} resynced (${String(result.manifest.links.length)} link(s), ${String(result.manifest.materialised.length)} built director(ies)${result.adopted.length === 0 ? "" : `, ${String(result.adopted.length)} adopted into ${resyncFarmRuntime.claudeHome}`})`
|
|
248375
248375
|
);
|
|
248376
248376
|
cascadeLaunch = result.resolved.flattened.launch;
|
|
248377
|
+
} else if (params.farm !== void 0) {
|
|
248378
|
+
cascadeLaunch = flattenLayers(assembleCascade(params.farm.loadCascade(configProfileDecision.name, cliOverride)).layers, { home: params.farm.home }).launch;
|
|
248377
248379
|
}
|
|
248378
248380
|
const discovered = params.resolveClaudeBinary();
|
|
248379
248381
|
const resolvedFlags = resolveLaunchFlags({ env, ...cascadeLaunch === void 0 ? {} : { cascade: cascadeLaunch } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-use",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"description": "A profile manager and launcher for Claude Code that lets one person run multiple logins from one machine while controlling what gets shared between them.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Joseph Mearman <joseph@mearman.co.uk>",
|