@openape/apes 0.13.0 → 0.13.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.
package/dist/cli.js
CHANGED
|
@@ -2625,11 +2625,18 @@ var proxyCommand = defineCommand22({
|
|
|
2625
2625
|
close = ephemeral.close;
|
|
2626
2626
|
consola20.info(`[apes proxy] started ephemeral proxy at ${proxyUrl}`);
|
|
2627
2627
|
}
|
|
2628
|
+
const noProxy = process.env.NO_PROXY ?? process.env.no_proxy ?? "127.0.0.1,localhost";
|
|
2628
2629
|
const childEnv = {
|
|
2629
2630
|
...process.env,
|
|
2630
2631
|
HTTPS_PROXY: proxyUrl,
|
|
2632
|
+
https_proxy: proxyUrl,
|
|
2631
2633
|
HTTP_PROXY: proxyUrl,
|
|
2632
|
-
|
|
2634
|
+
http_proxy: proxyUrl,
|
|
2635
|
+
ALL_PROXY: proxyUrl,
|
|
2636
|
+
all_proxy: proxyUrl,
|
|
2637
|
+
NO_PROXY: noProxy,
|
|
2638
|
+
no_proxy: noProxy,
|
|
2639
|
+
NODE_USE_ENV_PROXY: "1"
|
|
2633
2640
|
};
|
|
2634
2641
|
const exitCode = await new Promise((resolveExit) => {
|
|
2635
2642
|
const child = spawn2(wrapped[0], wrapped.slice(1), {
|
|
@@ -2929,7 +2936,7 @@ var mcpCommand = defineCommand27({
|
|
|
2929
2936
|
if (transport !== "stdio" && transport !== "sse") {
|
|
2930
2937
|
throw new Error('Transport must be "stdio" or "sse"');
|
|
2931
2938
|
}
|
|
2932
|
-
const { startMcpServer } = await import("./server-
|
|
2939
|
+
const { startMcpServer } = await import("./server-6RPIR76X.js");
|
|
2933
2940
|
await startMcpServer(transport, port);
|
|
2934
2941
|
}
|
|
2935
2942
|
});
|
|
@@ -3421,7 +3428,7 @@ async function bestEffortGrantCount(idp) {
|
|
|
3421
3428
|
}
|
|
3422
3429
|
}
|
|
3423
3430
|
async function runHealth(args) {
|
|
3424
|
-
const version = true ? "0.13.
|
|
3431
|
+
const version = true ? "0.13.1" : "0.0.0";
|
|
3425
3432
|
const auth = loadAuth();
|
|
3426
3433
|
if (!auth) {
|
|
3427
3434
|
throw new CliError("Not logged in. Run `apes login` first.", 1);
|
|
@@ -3623,10 +3630,10 @@ if (shellRewrite) {
|
|
|
3623
3630
|
if (shellRewrite.action === "rewrite") {
|
|
3624
3631
|
process.argv = shellRewrite.argv;
|
|
3625
3632
|
} else if (shellRewrite.action === "version") {
|
|
3626
|
-
console.log(`ape-shell ${"0.13.
|
|
3633
|
+
console.log(`ape-shell ${"0.13.1"} (OpenApe DDISA shell wrapper)`);
|
|
3627
3634
|
process.exit(0);
|
|
3628
3635
|
} else if (shellRewrite.action === "help") {
|
|
3629
|
-
console.log(`ape-shell ${"0.13.
|
|
3636
|
+
console.log(`ape-shell ${"0.13.1"} \u2014 OpenApe DDISA shell wrapper`);
|
|
3630
3637
|
console.log("");
|
|
3631
3638
|
console.log("Usage:");
|
|
3632
3639
|
console.log(" ape-shell Start interactive grant-mediated REPL");
|
|
@@ -3684,7 +3691,7 @@ var configCommand = defineCommand34({
|
|
|
3684
3691
|
var main = defineCommand34({
|
|
3685
3692
|
meta: {
|
|
3686
3693
|
name: "apes",
|
|
3687
|
-
version: "0.13.
|
|
3694
|
+
version: "0.13.1",
|
|
3688
3695
|
description: "Unified CLI for OpenApe"
|
|
3689
3696
|
},
|
|
3690
3697
|
subCommands: {
|