@llmist/cli 9.5.0 → 9.5.1

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.js CHANGED
@@ -79,7 +79,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
79
79
  // package.json
80
80
  var package_default = {
81
81
  name: "@llmist/cli",
82
- version: "9.5.0",
82
+ version: "9.5.1",
83
83
  description: "CLI for llmist - run LLM agents from the command line",
84
84
  type: "module",
85
85
  main: "dist/cli.js",
@@ -1056,7 +1056,7 @@ async function installNpmPackage(spec, cacheDir) {
1056
1056
  const installCmd = pm === "bun" ? `bun add "${packageSpec}"` : `npm install "${packageSpec}"`;
1057
1057
  try {
1058
1058
  execSync(installCmd, {
1059
- stdio: "pipe",
1059
+ stdio: "inherit",
1060
1060
  cwd: cacheDir
1061
1061
  });
1062
1062
  } catch (error) {