@wrongstack/core 0.250.0 → 0.255.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.
Files changed (37) hide show
  1. package/dist/{agent-bridge-4gc0vfW2.d.ts → agent-bridge-l_DsFEbr.d.ts} +1 -1
  2. package/dist/{agent-subagent-runner-Dz-9kiE6.d.ts → agent-subagent-runner-DhYLgAJo.d.ts} +3 -3
  3. package/dist/{brain-sCZ3lCjq.d.ts → brain-BaQsRNka.d.ts} +17 -0
  4. package/dist/coordination/index.d.ts +10 -10
  5. package/dist/coordination/index.js +132 -0
  6. package/dist/coordination/index.js.map +1 -1
  7. package/dist/defaults/index.d.ts +11 -11
  8. package/dist/execution/index.d.ts +7 -7
  9. package/dist/extension/index.d.ts +3 -3
  10. package/dist/{goal-preamble-BjJpnLW4.d.ts → goal-preamble-BgoPmZ8l.d.ts} +4 -4
  11. package/dist/{index-Dy8OwfBD.d.ts → index-BilZMsOK.d.ts} +3 -3
  12. package/dist/{index-IehiNryU.d.ts → index-Csoc_bKs.d.ts} +2 -2
  13. package/dist/index.d.ts +21 -21
  14. package/dist/index.js +150 -3
  15. package/dist/index.js.map +1 -1
  16. package/dist/infrastructure/index.d.ts +2 -2
  17. package/dist/infrastructure/index.js +12 -0
  18. package/dist/infrastructure/index.js.map +1 -1
  19. package/dist/kernel/index.d.ts +4 -4
  20. package/dist/kernel/index.js.map +1 -1
  21. package/dist/{multi-agent-coordinator-CnbEqpv0.d.ts → multi-agent-coordinator-Bs-M0Mo6.d.ts} +1 -1
  22. package/dist/{null-fleet-bus-Do1OLYpj.d.ts → null-fleet-bus-CWdU1_cO.d.ts} +4 -4
  23. package/dist/observability/index.d.ts +1 -1
  24. package/dist/{package-outdated-watcher-CA5GGB4C.d.ts → package-outdated-watcher-Dz-eNZlQ.d.ts} +23 -2
  25. package/dist/{parallel-eternal-engine-UZg1xOzE.d.ts → parallel-eternal-engine-CAMabk-X.d.ts} +4 -4
  26. package/dist/{path-resolver-BaP06Owy.d.ts → path-resolver-B7VjhUHq.d.ts} +1 -1
  27. package/dist/{pipeline-D1n-gQI-.d.ts → pipeline-Bxa3wDcy.d.ts} +41 -1
  28. package/dist/{plan-templates-BUVRY0pU.d.ts → plan-templates-D3guWwTi.d.ts} +1 -1
  29. package/dist/{provider-runner-D0HgUqwV.d.ts → provider-runner-C8_e4Lo1.d.ts} +1 -1
  30. package/dist/sdd/index.d.ts +4 -4
  31. package/dist/storage/index.d.ts +5 -5
  32. package/dist/types/index.d.ts +10 -10
  33. package/dist/types/index.js +12 -0
  34. package/dist/types/index.js.map +1 -1
  35. package/dist/utils/index.js +2 -0
  36. package/dist/utils/index.js.map +1 -1
  37. package/package.json +2 -2
@@ -838,8 +838,10 @@ function buildChildEnv(optsOrSessionId) {
838
838
  );
839
839
  }
840
840
  const out = {};
841
+ const nodeEnvDefaulted = process.env["WRONGSTACK_NODE_ENV_DEFAULTED"] === "1";
841
842
  for (const [k, v] of Object.entries(process.env)) {
842
843
  if (v === void 0) continue;
844
+ if (nodeEnvDefaulted && (k === "NODE_ENV" || k === "WRONGSTACK_NODE_ENV_DEFAULTED")) continue;
843
845
  if (passthrough) {
844
846
  out[k] = v;
845
847
  continue;