negotium 0.16.0 → 0.16.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.
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env bun
2
+
3
+ // Silence `maestro-agent-sdk`'s login-PATH bootstrap before the bundle loads.
4
+ //
5
+ // `#platform/maestro-bootstrap-env` already sets this, and in the source tree
6
+ // it works: the module is imported ahead of the SDK, so the flag is in place
7
+ // when the SDK evaluates it at module load. The bundle breaks that ordering.
8
+ // Bun emits the flag-setting module as a lazy `__esm` initializer while the
9
+ // SDK stays an external `import` declaration, and ESM hoists every import
10
+ // above the module body — so the SDK always ran first and the CLI printed
11
+ // `[debug] env-bootstrap: …` on every invocation.
12
+ //
13
+ // A statement in `dist/main.js` cannot win that race for the same reason, so
14
+ // the flag has to be set in a module that runs before it. Hence this shim:
15
+ // a plain statement, then a dynamic import, which is ordered.
16
+ process.env.MAESTRO_SDK_SILENT_BOOTSTRAP ??= "1";
17
+
18
+ await import("../dist/main.js");
@@ -3125,7 +3125,7 @@ var init_codex = __esm(async () => {
3125
3125
  });
3126
3126
 
3127
3127
  // ../../packages/core/src/version.ts
3128
- var NEGOTIUM_VERSION = "0.16.0";
3128
+ var NEGOTIUM_VERSION = "0.16.1";
3129
3129
 
3130
3130
  // ../../packages/core/src/agents/codex-native-multi-agent.ts
3131
3131
  import { spawn as spawn2 } from "child_process";
@@ -20804,4 +20804,4 @@ export {
20804
20804
  DEFAULT_SELF_CONFIG_PRODUCT
20805
20805
  };
20806
20806
 
20807
- //# debugId=2A0102E7CDE47D4B64756E2164756E21
20807
+ //# debugId=DA785970F26205EF64756E2164756E21