@openape/apes 0.26.0 → 0.26.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
@@ -2584,7 +2584,7 @@ function buildBridgeStartScript() {
2584
2584
  # Slim launcher \u2014 install stack lives in spawn, not here.
2585
2585
  set -euo pipefail
2586
2586
 
2587
- export PATH="$HOME/.bun/install/global/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
2587
+ export PATH="$HOME/.bun/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
2588
2588
 
2589
2589
  # Refresh IdP token. Agents auth via SSH-key signing \u2014 the cached IdP
2590
2590
  # token has no refresh_token and expires after ~1h. Re-running apes
@@ -2681,7 +2681,7 @@ function buildBridgePlist(agentName, homeDir) {
2681
2681
  <key>HOME</key>
2682
2682
  <string>${homeDir}</string>
2683
2683
  <key>PATH</key>
2684
- <string>${homeDir}/.bun/install/global/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
2684
+ <string>${homeDir}/.bun/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
2685
2685
  </dict>
2686
2686
  </dict>
2687
2687
  </plist>
@@ -4155,7 +4155,7 @@ var mcpCommand = defineCommand32({
4155
4155
  if (transport !== "stdio" && transport !== "sse") {
4156
4156
  throw new Error('Transport must be "stdio" or "sse"');
4157
4157
  }
4158
- const { startMcpServer } = await import("./server-M55Z6QYF.js");
4158
+ const { startMcpServer } = await import("./server-L2XZEQY3.js");
4159
4159
  await startMcpServer(transport, port);
4160
4160
  }
4161
4161
  });
@@ -4793,7 +4793,7 @@ async function bestEffortGrantCount(idp) {
4793
4793
  }
4794
4794
  }
4795
4795
  async function runHealth(args) {
4796
- const version = true ? "0.26.0" : "0.0.0";
4796
+ const version = true ? "0.26.1" : "0.0.0";
4797
4797
  const auth = loadAuth();
4798
4798
  if (!auth) {
4799
4799
  throw new CliError("Not logged in. Run `apes login` first.", 1);
@@ -5066,10 +5066,10 @@ if (shellRewrite) {
5066
5066
  if (shellRewrite.action === "rewrite") {
5067
5067
  process.argv = shellRewrite.argv;
5068
5068
  } else if (shellRewrite.action === "version") {
5069
- console.log(`ape-shell ${"0.26.0"} (OpenApe DDISA shell wrapper)`);
5069
+ console.log(`ape-shell ${"0.26.1"} (OpenApe DDISA shell wrapper)`);
5070
5070
  process.exit(0);
5071
5071
  } else if (shellRewrite.action === "help") {
5072
- console.log(`ape-shell ${"0.26.0"} \u2014 OpenApe DDISA shell wrapper`);
5072
+ console.log(`ape-shell ${"0.26.1"} \u2014 OpenApe DDISA shell wrapper`);
5073
5073
  console.log("");
5074
5074
  console.log("Usage:");
5075
5075
  console.log(" ape-shell Start interactive grant-mediated REPL");
@@ -5127,7 +5127,7 @@ var configCommand = defineCommand44({
5127
5127
  var main = defineCommand44({
5128
5128
  meta: {
5129
5129
  name: "apes",
5130
- version: "0.26.0",
5130
+ version: "0.26.1",
5131
5131
  description: "Unified CLI for OpenApe"
5132
5132
  },
5133
5133
  subCommands: {
@@ -5182,7 +5182,7 @@ async function maybeRefreshAuth() {
5182
5182
  }
5183
5183
  }
5184
5184
  await maybeRefreshAuth();
5185
- await maybeWarnStaleVersion("0.26.0").catch(() => {
5185
+ await maybeWarnStaleVersion("0.26.1").catch(() => {
5186
5186
  });
5187
5187
  runMain(main).catch((err) => {
5188
5188
  if (err instanceof CliExit) {