stratagem-x7 0.3.64 → 0.3.65

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +10 -9
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -288967,7 +288967,8 @@ function getCandidateLocalBinaryPaths(localInstallDir) {
288967
288967
  ];
288968
288968
  }
288969
288969
  function isManagedLocalInstallationPath(execPath2) {
288970
- return execPath2.includes("/.openclaude/local/node_modules/") || execPath2.includes("/.claude/local/node_modules/");
288970
+ const normalized = execPath2.replace(/\\/g, "/");
288971
+ return normalized.includes("/.openclaude/local/node_modules/") || normalized.includes("/.claude/local/node_modules/");
288971
288972
  }
288972
288973
  function getLocalClaudePath() {
288973
288974
  return join75(getLocalInstallDir(), "openclaude");
@@ -350260,7 +350261,7 @@ function getAnthropicEnvMetadata() {
350260
350261
  function getBuildAgeMinutes() {
350261
350262
  if (false)
350262
350263
  ;
350263
- const buildTime = new Date("2026-05-08T03:06:27.228Z").getTime();
350264
+ const buildTime = new Date("2026-05-08T03:20:29.631Z").getTime();
350264
350265
  if (isNaN(buildTime))
350265
350266
  return;
350266
350267
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -418073,7 +418074,7 @@ function buildPrimarySection() {
418073
418074
  }, undefined, false, undefined, this);
418074
418075
  return [{
418075
418076
  label: "Version",
418076
- value: "0.3.64"
418077
+ value: "0.3.65"
418077
418078
  }, {
418078
418079
  label: "Session name",
418079
418080
  value: nameValue
@@ -457760,7 +457761,7 @@ function getStartupLines(termWidth) {
457760
457761
  const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
457761
457762
  out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
457762
457763
  out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
457763
- out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.64"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
457764
+ out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.65"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
457764
457765
  out.push("");
457765
457766
  return out;
457766
457767
  }
@@ -486511,7 +486512,7 @@ var init_bridge_kick = __esm(() => {
486511
486512
  var call61 = async () => {
486512
486513
  return {
486513
486514
  type: "text",
486514
- value: `${"99.0.0"} (built ${"2026-05-08T03:06:27.228Z"})`
486515
+ value: `${"99.0.0"} (built ${"2026-05-08T03:20:29.631Z"})`
486515
486516
  };
486516
486517
  }, version2, version_default;
486517
486518
  var init_version = __esm(() => {
@@ -555337,7 +555338,7 @@ function WelcomeV2() {
555337
555338
  dimColor: true,
555338
555339
  children: [
555339
555340
  "v",
555340
- "0.3.64",
555341
+ "0.3.65",
555341
555342
  " "
555342
555343
  ]
555343
555344
  }, undefined, true, undefined, this)
@@ -574795,7 +574796,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
574795
574796
  pendingHookMessages
574796
574797
  }, renderAndRun);
574797
574798
  }
574798
- }).version("0.3.64 (STRATAGEM X7)", "-v, --version", "Output the version number");
574799
+ }).version("0.3.65 (STRATAGEM X7)", "-v, --version", "Output the version number");
574799
574800
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
574800
574801
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
574801
574802
  if (canUserConfigureAdvisor()) {
@@ -575256,7 +575257,7 @@ if (false) {}
575256
575257
  async function main2() {
575257
575258
  const args = process.argv.slice(2);
575258
575259
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
575259
- console.log(`${"0.3.64"} (STRATAGEM X7)`);
575260
+ console.log(`${"0.3.65"} (STRATAGEM X7)`);
575260
575261
  return;
575261
575262
  }
575262
575263
  if (args.includes("--provider")) {
@@ -575378,4 +575379,4 @@ async function main2() {
575378
575379
  }
575379
575380
  main2();
575380
575381
 
575381
- //# debugId=EEB242CFD6483B7864756E2164756E21
575382
+ //# debugId=D4A1DCC2CF02BD5264756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stratagem-x7",
3
- "version": "0.3.64",
3
+ "version": "0.3.65",
4
4
  "description": "STRATAGEM X7 is a cyberpunk coding-agent CLI for cloud and local model providers",
5
5
  "type": "module",
6
6
  "bin": {