replicas-cli 0.2.198 → 0.2.200
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/index.mjs +6 -5
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9428,8 +9428,9 @@ function removeReplicasInstructions(text) {
|
|
|
9428
9428
|
var import_yaml = __toESM(require_dist());
|
|
9429
9429
|
|
|
9430
9430
|
// ../shared/src/warm-hooks.ts
|
|
9431
|
-
var DEFAULT_WARM_HOOK_TIMEOUT_MS =
|
|
9432
|
-
var MAX_WARM_HOOK_TIMEOUT_MS =
|
|
9431
|
+
var DEFAULT_WARM_HOOK_TIMEOUT_MS = 60 * 60 * 1e3;
|
|
9432
|
+
var MAX_WARM_HOOK_TIMEOUT_MS = 120 * 60 * 1e3;
|
|
9433
|
+
var DEFAULT_START_HOOK_TIMEOUT_MS = 5 * 60 * 1e3;
|
|
9433
9434
|
var HOOK_EXEC_MAX_BUFFER_BYTES = 10 * 1024 * 1024;
|
|
9434
9435
|
|
|
9435
9436
|
// ../shared/src/replicas-config.ts
|
|
@@ -11351,7 +11352,7 @@ function getDefaultConfig() {
|
|
|
11351
11352
|
return {
|
|
11352
11353
|
systemPrompt: "",
|
|
11353
11354
|
startHook: {
|
|
11354
|
-
timeout:
|
|
11355
|
+
timeout: DEFAULT_START_HOOK_TIMEOUT_MS,
|
|
11355
11356
|
commands: []
|
|
11356
11357
|
}
|
|
11357
11358
|
};
|
|
@@ -11364,7 +11365,7 @@ systemPrompt: |
|
|
|
11364
11365
|
Add custom instructions for coding agents here.
|
|
11365
11366
|
|
|
11366
11367
|
startHook:
|
|
11367
|
-
timeout:
|
|
11368
|
+
timeout: ${DEFAULT_START_HOOK_TIMEOUT_MS}
|
|
11368
11369
|
commands: []
|
|
11369
11370
|
`;
|
|
11370
11371
|
}
|
|
@@ -16601,7 +16602,7 @@ Deleted file ${pathOrId}.
|
|
|
16601
16602
|
}
|
|
16602
16603
|
|
|
16603
16604
|
// src/index.ts
|
|
16604
|
-
var CLI_VERSION = "0.2.
|
|
16605
|
+
var CLI_VERSION = "0.2.200";
|
|
16605
16606
|
function parseBooleanOption(value) {
|
|
16606
16607
|
if (value === "true") return true;
|
|
16607
16608
|
if (value === "false") return false;
|