@boxcrew/cli 0.1.11 → 0.1.12
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.js +3 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -518,13 +518,8 @@ function runDaemon(agentName) {
|
|
|
518
518
|
const childEnv = { ...process.env };
|
|
519
519
|
delete childEnv.CLAUDECODE;
|
|
520
520
|
delete childEnv.CLAUDE_CODE_ENTRYPOINT;
|
|
521
|
-
const
|
|
522
|
-
|
|
523
|
-
if (proxyToken) {
|
|
524
|
-
childEnv.ANTHROPIC_API_KEY = proxyToken;
|
|
525
|
-
if (proxyBaseUrl) {
|
|
526
|
-
childEnv.ANTHROPIC_BASE_URL = proxyBaseUrl;
|
|
527
|
-
}
|
|
521
|
+
for (const key of Object.keys(childEnv)) {
|
|
522
|
+
if (key.startsWith("_BX_")) delete childEnv[key];
|
|
528
523
|
}
|
|
529
524
|
let cmd;
|
|
530
525
|
let args;
|
|
@@ -697,9 +692,7 @@ function registerConnectCommand(program2) {
|
|
|
697
692
|
_BX_WS_URL: config2.websocket_url,
|
|
698
693
|
_BX_CLAUDE_PATH: options.claudePath,
|
|
699
694
|
_BX_AGENT_NAME: config2.agent_name,
|
|
700
|
-
_BX_RUNTIME: config2.runtime
|
|
701
|
-
_BX_PROXY_TOKEN: config2.proxy_token,
|
|
702
|
-
_BX_PROXY_BASE_URL: config2.proxy_base_url
|
|
695
|
+
_BX_RUNTIME: config2.runtime
|
|
703
696
|
};
|
|
704
697
|
delete daemonEnv.CLAUDECODE;
|
|
705
698
|
delete daemonEnv.CLAUDE_CODE_ENTRYPOINT;
|