@openape/apes 1.1.0 → 1.1.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
|
@@ -1909,7 +1909,11 @@ function buildBridgeBootstrapBlock(bridge, name) {
|
|
|
1909
1909
|
echo "==> Installing bridge stack as ${name} via bun (one-time)\u2026"
|
|
1910
1910
|
su - ${shQuote(name)} -c '
|
|
1911
1911
|
set -euo pipefail
|
|
1912
|
-
|
|
1912
|
+
if ! command -v bun >/dev/null 2>&1 && [ ! -x "$HOME/.bun/bin/bun" ]; then
|
|
1913
|
+
echo "==> bun not found \u2014 installing via official installer"
|
|
1914
|
+
curl -fsSL https://bun.sh/install | bash
|
|
1915
|
+
fi
|
|
1916
|
+
export PATH="$HOME/.bun/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:$HOME/.bun/install/global/bin"
|
|
1913
1917
|
bun add -g @openape/chat-bridge @openape/apes
|
|
1914
1918
|
'
|
|
1915
1919
|
|
|
@@ -5275,7 +5279,7 @@ var mcpCommand = defineCommand36({
|
|
|
5275
5279
|
if (transport !== "stdio" && transport !== "sse") {
|
|
5276
5280
|
throw new Error('Transport must be "stdio" or "sse"');
|
|
5277
5281
|
}
|
|
5278
|
-
const { startMcpServer } = await import("./server-
|
|
5282
|
+
const { startMcpServer } = await import("./server-PZEAFXN6.js");
|
|
5279
5283
|
await startMcpServer(transport, port);
|
|
5280
5284
|
}
|
|
5281
5285
|
});
|
|
@@ -5913,7 +5917,7 @@ async function bestEffortGrantCount(idp) {
|
|
|
5913
5917
|
}
|
|
5914
5918
|
}
|
|
5915
5919
|
async function runHealth(args) {
|
|
5916
|
-
const version = true ? "1.1.
|
|
5920
|
+
const version = true ? "1.1.1" : "0.0.0";
|
|
5917
5921
|
const auth = loadAuth();
|
|
5918
5922
|
if (!auth) {
|
|
5919
5923
|
throw new CliError("Not logged in. Run `apes login` first.", 1);
|
|
@@ -6186,10 +6190,10 @@ if (shellRewrite) {
|
|
|
6186
6190
|
if (shellRewrite.action === "rewrite") {
|
|
6187
6191
|
process.argv = shellRewrite.argv;
|
|
6188
6192
|
} else if (shellRewrite.action === "version") {
|
|
6189
|
-
console.log(`ape-shell ${"1.1.
|
|
6193
|
+
console.log(`ape-shell ${"1.1.1"} (OpenApe DDISA shell wrapper)`);
|
|
6190
6194
|
process.exit(0);
|
|
6191
6195
|
} else if (shellRewrite.action === "help") {
|
|
6192
|
-
console.log(`ape-shell ${"1.1.
|
|
6196
|
+
console.log(`ape-shell ${"1.1.1"} \u2014 OpenApe DDISA shell wrapper`);
|
|
6193
6197
|
console.log("");
|
|
6194
6198
|
console.log("Usage:");
|
|
6195
6199
|
console.log(" ape-shell Start interactive grant-mediated REPL");
|
|
@@ -6247,7 +6251,7 @@ var configCommand = defineCommand48({
|
|
|
6247
6251
|
var main = defineCommand48({
|
|
6248
6252
|
meta: {
|
|
6249
6253
|
name: "apes",
|
|
6250
|
-
version: "1.1.
|
|
6254
|
+
version: "1.1.1",
|
|
6251
6255
|
description: "Unified CLI for OpenApe"
|
|
6252
6256
|
},
|
|
6253
6257
|
subCommands: {
|
|
@@ -6302,7 +6306,7 @@ async function maybeRefreshAuth() {
|
|
|
6302
6306
|
}
|
|
6303
6307
|
}
|
|
6304
6308
|
await maybeRefreshAuth();
|
|
6305
|
-
await maybeWarnStaleVersion("1.1.
|
|
6309
|
+
await maybeWarnStaleVersion("1.1.1").catch(() => {
|
|
6306
6310
|
});
|
|
6307
6311
|
runMain(main).catch((err) => {
|
|
6308
6312
|
if (err instanceof CliExit) {
|