stratagem-x7 0.3.42 → 0.3.43

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 +12 -12
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -188553,7 +188553,7 @@ function modelSupportsEffort(model) {
188553
188553
  if (modelUsesOpenAIEffort(model) && supportsCodexReasoningEffort(model)) {
188554
188554
  return true;
188555
188555
  }
188556
- if (m.includes("opus-4-6") || m.includes("sonnet-4-6")) {
188556
+ if (m.includes("opus-4-7") || m.includes("opus-4-6") || m.includes("sonnet-4-6")) {
188557
188557
  return true;
188558
188558
  }
188559
188559
  if (m.includes("haiku") || m.includes("sonnet") || m.includes("opus")) {
@@ -188566,7 +188566,7 @@ function modelSupportsMaxEffort(model) {
188566
188566
  if (supported3P !== undefined) {
188567
188567
  return supported3P;
188568
188568
  }
188569
- if (model.toLowerCase().includes("opus-4-6")) {
188569
+ if (model.toLowerCase().includes("opus-4-7") || model.toLowerCase().includes("opus-4-6")) {
188570
188570
  return true;
188571
188571
  }
188572
188572
  if (process.env.USER_TYPE === "ant" && resolveAntModel(model)) {
@@ -188694,7 +188694,7 @@ function getEffortLevelDescription(level) {
188694
188694
  case "high":
188695
188695
  return "Comprehensive implementation with extensive testing and documentation";
188696
188696
  case "max":
188697
- return "Maximum capability with deepest reasoning (Opus 4.6 only)";
188697
+ return "Maximum capability with deepest reasoning (Opus 4.7 / 4.6)";
188698
188698
  case "xhigh":
188699
188699
  return "Extra high reasoning effort for complex tasks (OpenAI/Codex)";
188700
188700
  }
@@ -188733,7 +188733,7 @@ function getDefaultEffortForModel(model) {
188733
188733
  }
188734
188734
  return;
188735
188735
  }
188736
- if (model.toLowerCase().includes("opus-4-6")) {
188736
+ if (model.toLowerCase().includes("opus-4-7") || model.toLowerCase().includes("opus-4-6")) {
188737
188737
  if (isProSubscriber()) {
188738
188738
  return "medium";
188739
188739
  }
@@ -350491,7 +350491,7 @@ function getAnthropicEnvMetadata() {
350491
350491
  function getBuildAgeMinutes() {
350492
350492
  if (false)
350493
350493
  ;
350494
- const buildTime = new Date("2026-05-07T03:40:41.435Z").getTime();
350494
+ const buildTime = new Date("2026-05-07T03:54:01.498Z").getTime();
350495
350495
  if (isNaN(buildTime))
350496
350496
  return;
350497
350497
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -417634,7 +417634,7 @@ function buildPrimarySection() {
417634
417634
  }, undefined, false, undefined, this);
417635
417635
  return [{
417636
417636
  label: "Version",
417637
- value: "0.3.42"
417637
+ value: "0.3.43"
417638
417638
  }, {
417639
417639
  label: "Session name",
417640
417640
  value: nameValue
@@ -457328,7 +457328,7 @@ function getStartupLines(termWidth) {
457328
457328
  const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
457329
457329
  out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
457330
457330
  out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
457331
- out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.42"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
457331
+ out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.43"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
457332
457332
  out.push("");
457333
457333
  return out;
457334
457334
  }
@@ -486001,7 +486001,7 @@ var init_bridge_kick = __esm(() => {
486001
486001
  var call60 = async () => {
486002
486002
  return {
486003
486003
  type: "text",
486004
- value: `${"99.0.0"} (built ${"2026-05-07T03:40:41.435Z"})`
486004
+ value: `${"99.0.0"} (built ${"2026-05-07T03:54:01.498Z"})`
486005
486005
  };
486006
486006
  }, version2, version_default;
486007
486007
  var init_version = __esm(() => {
@@ -554734,7 +554734,7 @@ function WelcomeV2() {
554734
554734
  dimColor: true,
554735
554735
  children: [
554736
554736
  "v",
554737
- "0.3.42",
554737
+ "0.3.43",
554738
554738
  " "
554739
554739
  ]
554740
554740
  }, undefined, true, undefined, this)
@@ -574191,7 +574191,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
574191
574191
  pendingHookMessages
574192
574192
  }, renderAndRun);
574193
574193
  }
574194
- }).version("0.3.42 (STRATAGEM X7)", "-v, --version", "Output the version number");
574194
+ }).version("0.3.43 (STRATAGEM X7)", "-v, --version", "Output the version number");
574195
574195
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
574196
574196
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
574197
574197
  if (canUserConfigureAdvisor()) {
@@ -574652,7 +574652,7 @@ if (false) {}
574652
574652
  async function main2() {
574653
574653
  const args = process.argv.slice(2);
574654
574654
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
574655
- console.log(`${"0.3.42"} (STRATAGEM X7)`);
574655
+ console.log(`${"0.3.43"} (STRATAGEM X7)`);
574656
574656
  return;
574657
574657
  }
574658
574658
  if (args.includes("--provider")) {
@@ -574774,4 +574774,4 @@ async function main2() {
574774
574774
  }
574775
574775
  main2();
574776
574776
 
574777
- //# debugId=1C00024DF388332D64756E2164756E21
574777
+ //# debugId=2D4BC3585696E52D64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stratagem-x7",
3
- "version": "0.3.42",
3
+ "version": "0.3.43",
4
4
  "description": "STRATAGEM X7 is a cyberpunk coding-agent CLI for cloud and local model providers",
5
5
  "type": "module",
6
6
  "bin": {