@llmist/cli 9.6.0 → 9.7.0

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.6.0",
82
+ version: "9.7.0",
83
83
  description: "CLI for llmist - run LLM agents from the command line",
84
84
  type: "module",
85
85
  main: "dist/cli.js",
@@ -6234,6 +6234,13 @@ function validateSingleSubagentConfig(value, subagentName, section) {
6234
6234
  );
6235
6235
  }
6236
6236
  result.maxIterations = val;
6237
+ } else if (key === "timeoutMs") {
6238
+ if (typeof val !== "number" || !Number.isInteger(val) || val < 0) {
6239
+ throw new ConfigError(
6240
+ `[${section}].${subagentName}.timeoutMs must be a non-negative integer`
6241
+ );
6242
+ }
6243
+ result.timeoutMs = val;
6237
6244
  } else {
6238
6245
  result[key] = val;
6239
6246
  }