claude-use 2.4.1 → 2.4.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.
Files changed (2) hide show
  1. package/dist/cli.cjs +11 -6
  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.4.1",
221827
+ version: "2.4.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>",
@@ -247105,6 +247105,15 @@ function registerDoctorCommand(program2, paths) {
247105
247105
  });
247106
247106
  }
247107
247107
 
247108
+ // src/runCommand.ts
247109
+ function registerRunCommand(program2, handler) {
247110
+ program2.command("run").description(
247111
+ "Run the launcher pipeline directly, without needing a `claude`-named binary on PATH. Every argument is forwarded exactly as `claude` would receive it."
247112
+ ).allowUnknownOption().passThroughOptions().helpOption(false).argument("[args...]", "Arguments to forward, e.g. @<name>, --config-profile <name>, or any Claude Code flag.").action(async (args) => {
247113
+ await handler(args);
247114
+ });
247115
+ }
247116
+
247108
247117
  // src/launcher/argv.ts
247109
247118
  var VALUED_FLAGS = ["--config-profile", "--category", "--share", "--hide"];
247110
247119
  function matchValuedFlag(token) {
@@ -247450,11 +247459,7 @@ function buildClaudeUseProgram() {
247450
247459
  registerConfigureCommand(program2, paths);
247451
247460
  registerDoctorCommand(program2, paths);
247452
247461
  registerShimCommand(program2, paths);
247453
- program2.command("run").description(
247454
- "Run the launcher pipeline directly, without needing a `claude`-named binary on PATH. Every argument is forwarded exactly as `claude` would receive it."
247455
- ).allowUnknownOption().helpOption(false).argument("[args...]", "Arguments to forward, e.g. @<name>, --config-profile <name>, or any Claude Code flag.").action(async (args) => {
247456
- await runClaude(args);
247457
- });
247462
+ registerRunCommand(program2, runClaude);
247458
247463
  return program2;
247459
247464
  }
247460
247465
  function buildFarmRuntime(paths) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-use",
3
- "version": "2.4.1",
3
+ "version": "2.4.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>",