replicas-engine 0.1.415 → 0.1.416

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/src/index.js CHANGED
@@ -490,7 +490,7 @@ var WORKSPACE_SIZES = ["small", "large"];
490
490
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
491
491
 
492
492
  // ../shared/src/e2b.ts
493
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-09-v4";
493
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-09-v5";
494
494
 
495
495
  // ../shared/src/runtime-env.ts
496
496
  function parsePosixEnvFile(content) {
@@ -8225,7 +8225,7 @@ var AspClient = class {
8225
8225
  // src/managers/codex-asp/app-server-process.ts
8226
8226
  var DEFAULT_CODEX_BINARY = "codex";
8227
8227
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
8228
- var ENGINE_PACKAGE_VERSION = "0.1.415";
8228
+ var ENGINE_PACKAGE_VERSION = "0.1.416";
8229
8229
  var INITIALIZE_METHOD = "initialize";
8230
8230
  var INITIALIZED_NOTIFICATION = "initialized";
8231
8231
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
@@ -8485,7 +8485,7 @@ var SKILLS_LIST_METHOD = "skills/list";
8485
8485
  var MAX_CODEX_ASP_TRANSCRIPT_OUTPUT_CHARS = DEFAULT_HOOK_OUTPUT_PREVIEW_CHARS;
8486
8486
  function codexApprovalPolicyOverrides() {
8487
8487
  if (!ENGINE_ENV.REPLICAS_DISABLE_GH_PR_MERGE) {
8488
- return {};
8488
+ return { approvalPolicy: "never" };
8489
8489
  }
8490
8490
  return {
8491
8491
  approvalPolicy: "untrusted",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.415",
3
+ "version": "0.1.416",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",