@openape/apes 1.0.0 → 1.0.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
@@ -1906,7 +1906,7 @@ chmod 644 ${shQuote(bridge.plistPath)}
1906
1906
  function buildBridgeBootstrapBlock(bridge) {
1907
1907
  if (!bridge) return "";
1908
1908
  return `
1909
- echo "==> Installing bridge stack as $NAME via bun (one-time)\u2026"
1909
+ echo "==> Installing bridge stack as \${NAME} via bun (one-time)\u2026"
1910
1910
  su - "$NAME" -c '
1911
1911
  set -euo pipefail
1912
1912
  export PATH="/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:$HOME/.bun/install/global/bin"
@@ -1936,7 +1936,7 @@ function buildTroopBootstrapBlock(troop) {
1936
1936
  # starts firing every 5 minutes. RunAtLoad in the plist also kicks
1937
1937
  # off an immediate first sync so the agent registers + appears in
1938
1938
  # the troop SP within seconds of spawn finishing.
1939
- echo "==> Installing troop sync launchd as $NAME\u2026"
1939
+ echo "==> Installing troop sync launchd as \${NAME}\u2026"
1940
1940
  su - "$NAME" -c '
1941
1941
  set -euo pipefail
1942
1942
  NAME_UID="$(id -u)"
@@ -5263,7 +5263,7 @@ var mcpCommand = defineCommand36({
5263
5263
  if (transport !== "stdio" && transport !== "sse") {
5264
5264
  throw new Error('Transport must be "stdio" or "sse"');
5265
5265
  }
5266
- const { startMcpServer } = await import("./server-75ZP2KCO.js");
5266
+ const { startMcpServer } = await import("./server-F6CJ5B5O.js");
5267
5267
  await startMcpServer(transport, port);
5268
5268
  }
5269
5269
  });
@@ -5901,7 +5901,7 @@ async function bestEffortGrantCount(idp) {
5901
5901
  }
5902
5902
  }
5903
5903
  async function runHealth(args) {
5904
- const version = true ? "1.0.0" : "0.0.0";
5904
+ const version = true ? "1.0.1" : "0.0.0";
5905
5905
  const auth = loadAuth();
5906
5906
  if (!auth) {
5907
5907
  throw new CliError("Not logged in. Run `apes login` first.", 1);
@@ -6174,10 +6174,10 @@ if (shellRewrite) {
6174
6174
  if (shellRewrite.action === "rewrite") {
6175
6175
  process.argv = shellRewrite.argv;
6176
6176
  } else if (shellRewrite.action === "version") {
6177
- console.log(`ape-shell ${"1.0.0"} (OpenApe DDISA shell wrapper)`);
6177
+ console.log(`ape-shell ${"1.0.1"} (OpenApe DDISA shell wrapper)`);
6178
6178
  process.exit(0);
6179
6179
  } else if (shellRewrite.action === "help") {
6180
- console.log(`ape-shell ${"1.0.0"} \u2014 OpenApe DDISA shell wrapper`);
6180
+ console.log(`ape-shell ${"1.0.1"} \u2014 OpenApe DDISA shell wrapper`);
6181
6181
  console.log("");
6182
6182
  console.log("Usage:");
6183
6183
  console.log(" ape-shell Start interactive grant-mediated REPL");
@@ -6235,7 +6235,7 @@ var configCommand = defineCommand48({
6235
6235
  var main = defineCommand48({
6236
6236
  meta: {
6237
6237
  name: "apes",
6238
- version: "1.0.0",
6238
+ version: "1.0.1",
6239
6239
  description: "Unified CLI for OpenApe"
6240
6240
  },
6241
6241
  subCommands: {
@@ -6290,7 +6290,7 @@ async function maybeRefreshAuth() {
6290
6290
  }
6291
6291
  }
6292
6292
  await maybeRefreshAuth();
6293
- await maybeWarnStaleVersion("1.0.0").catch(() => {
6293
+ await maybeWarnStaleVersion("1.0.1").catch(() => {
6294
6294
  });
6295
6295
  runMain(main).catch((err) => {
6296
6296
  if (err instanceof CliExit) {