stratagem-x7 0.3.15 → 0.3.17

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 +16 -10
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -227940,7 +227940,7 @@ function getDefaultAppState() {
227940
227940
  settings: getInitialSettings(),
227941
227941
  tasks: {},
227942
227942
  agentNameRegistry: new Map,
227943
- verbose: false,
227943
+ verbose: true,
227944
227944
  mainLoopModel: null,
227945
227945
  mainLoopModelForSession: null,
227946
227946
  statusLineText: undefined,
@@ -292643,7 +292643,7 @@ function AssistantThinkingMessage(t0) {
292643
292643
  if (hideInTranscript) {
292644
292644
  return null;
292645
292645
  }
292646
- const shouldShowFullThinking = true;
292646
+ const shouldShowFullThinking = isTranscriptMode || verbose;
292647
292647
  if (!shouldShowFullThinking) {
292648
292648
  const t42 = addMargin ? 1 : 0;
292649
292649
  let t52;
@@ -300773,6 +300773,9 @@ function AssistantMessageBlock(t0) {
300773
300773
  return t1;
300774
300774
  }
300775
300775
  case "redacted_thinking": {
300776
+ if (!isTranscriptMode && !verbose) {
300777
+ return null;
300778
+ }
300776
300779
  let t1;
300777
300780
  if ($2[29] !== addMargin) {
300778
300781
  t1 = /* @__PURE__ */ jsx_dev_runtime117.jsxDEV(AssistantRedactedThinkingMessage, {
@@ -300786,6 +300789,9 @@ function AssistantMessageBlock(t0) {
300786
300789
  return t1;
300787
300790
  }
300788
300791
  case "thinking": {
300792
+ if (!isTranscriptMode && !verbose) {
300793
+ return null;
300794
+ }
300789
300795
  const isLastThinking = !lastThinkingBlockId || thinkingBlockId === lastThinkingBlockId;
300790
300796
  const t1 = isTranscriptMode && !isLastThinking;
300791
300797
  let t2;
@@ -382886,7 +382892,7 @@ function getAnthropicEnvMetadata() {
382886
382892
  function getBuildAgeMinutes() {
382887
382893
  if (false)
382888
382894
  ;
382889
- const buildTime = new Date("2026-04-25T07:10:04.765Z").getTime();
382895
+ const buildTime = new Date("2026-04-25T08:53:51.909Z").getTime();
382890
382896
  if (isNaN(buildTime))
382891
382897
  return;
382892
382898
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -410063,7 +410069,7 @@ function buildPrimarySection() {
410063
410069
  }, undefined, false, undefined, this);
410064
410070
  return [{
410065
410071
  label: "Version",
410066
- value: "0.3.15"
410072
+ value: "0.3.17"
410067
410073
  }, {
410068
410074
  label: "Session name",
410069
410075
  value: nameValue
@@ -449689,7 +449695,7 @@ function getStartupLines(termWidth) {
449689
449695
  const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
449690
449696
  out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
449691
449697
  out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
449692
- out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.15"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
449698
+ out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.17"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
449693
449699
  out.push("");
449694
449700
  return out;
449695
449701
  }
@@ -478238,7 +478244,7 @@ var init_bridge_kick = __esm(() => {
478238
478244
  var call60 = async () => {
478239
478245
  return {
478240
478246
  type: "text",
478241
- value: `${"99.0.0"} (built ${"2026-04-25T07:10:04.765Z"})`
478247
+ value: `${"99.0.0"} (built ${"2026-04-25T08:53:51.909Z"})`
478242
478248
  };
478243
478249
  }, version2, version_default;
478244
478250
  var init_version = __esm(() => {
@@ -553650,7 +553656,7 @@ function WelcomeV2() {
553650
553656
  dimColor: true,
553651
553657
  children: [
553652
553658
  "v",
553653
- "0.3.15",
553659
+ "0.3.17",
553654
553660
  " "
553655
553661
  ]
553656
553662
  }, undefined, true, undefined, this)
@@ -573667,7 +573673,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
573667
573673
  pendingHookMessages
573668
573674
  }, renderAndRun);
573669
573675
  }
573670
- }).version("0.3.15 (STRATAGEM X7)", "-v, --version", "Output the version number");
573676
+ }).version("0.3.17 (STRATAGEM X7)", "-v, --version", "Output the version number");
573671
573677
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
573672
573678
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
573673
573679
  if (canUserConfigureAdvisor()) {
@@ -574195,7 +574201,7 @@ if (false) {}
574195
574201
  async function main2() {
574196
574202
  const args = process.argv.slice(2);
574197
574203
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
574198
- console.log(`${"0.3.15"} (STRATAGEM X7)`);
574204
+ console.log(`${"0.3.17"} (STRATAGEM X7)`);
574199
574205
  return;
574200
574206
  }
574201
574207
  if (args.includes("--provider")) {
@@ -574317,4 +574323,4 @@ async function main2() {
574317
574323
  }
574318
574324
  main2();
574319
574325
 
574320
- //# debugId=D1F9839AF963269B64756E2164756E21
574326
+ //# debugId=28BF1484CF094D2664756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stratagem-x7",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "description": "STRATAGEM X7 is a cyberpunk coding-agent CLI for cloud and local model providers",
5
5
  "type": "module",
6
6
  "bin": {