stratagem-x7 0.3.18 → 0.3.20
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.mjs +10 -13
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -120781,7 +120781,7 @@ function isFullscreenEnvEnabled() {
|
|
|
120781
120781
|
const configValue = getGlobalConfig().flickerFreeMode;
|
|
120782
120782
|
if (configValue !== undefined)
|
|
120783
120783
|
return configValue;
|
|
120784
|
-
return
|
|
120784
|
+
return true;
|
|
120785
120785
|
}
|
|
120786
120786
|
function isMouseTrackingEnabled() {
|
|
120787
120787
|
return !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_MOUSE);
|
|
@@ -382892,7 +382892,7 @@ function getAnthropicEnvMetadata() {
|
|
|
382892
382892
|
function getBuildAgeMinutes() {
|
|
382893
382893
|
if (false)
|
|
382894
382894
|
;
|
|
382895
|
-
const buildTime = new Date("2026-04-
|
|
382895
|
+
const buildTime = new Date("2026-04-28T12:09:31.454Z").getTime();
|
|
382896
382896
|
if (isNaN(buildTime))
|
|
382897
382897
|
return;
|
|
382898
382898
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -410069,7 +410069,7 @@ function buildPrimarySection() {
|
|
|
410069
410069
|
}, undefined, false, undefined, this);
|
|
410070
410070
|
return [{
|
|
410071
410071
|
label: "Version",
|
|
410072
|
-
value: "0.3.
|
|
410072
|
+
value: "0.3.20"
|
|
410073
410073
|
}, {
|
|
410074
410074
|
label: "Session name",
|
|
410075
410075
|
value: nameValue
|
|
@@ -449695,7 +449695,7 @@ function getStartupLines(termWidth) {
|
|
|
449695
449695
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
449696
449696
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
449697
449697
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
449698
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
449698
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.20"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
449699
449699
|
out.push("");
|
|
449700
449700
|
return out;
|
|
449701
449701
|
}
|
|
@@ -449741,14 +449741,11 @@ function BreachHeader() {
|
|
|
449741
449741
|
const protocolLines = lines.slice(13, 23);
|
|
449742
449742
|
return /* @__PURE__ */ jsx_dev_runtime252.jsxDEV(ThemedBox_default, {
|
|
449743
449743
|
flexDirection: "column",
|
|
449744
|
-
paddingTop:
|
|
449744
|
+
paddingTop: 1,
|
|
449745
449745
|
children: [
|
|
449746
449746
|
logoLines.map((line, i3) => /* @__PURE__ */ jsx_dev_runtime252.jsxDEV(ThemedText, {
|
|
449747
449747
|
children: line
|
|
449748
449748
|
}, i3, false, undefined, this)),
|
|
449749
|
-
/* @__PURE__ */ jsx_dev_runtime252.jsxDEV(ThemedBox_default, {
|
|
449750
|
-
height: 1
|
|
449751
|
-
}, undefined, false, undefined, this),
|
|
449752
449749
|
taglineLines.map((line, i3) => /* @__PURE__ */ jsx_dev_runtime252.jsxDEV(ThemedText, {
|
|
449753
449750
|
children: line
|
|
449754
449751
|
}, `tag-${i3}`, false, undefined, this)),
|
|
@@ -478244,7 +478241,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
478244
478241
|
var call60 = async () => {
|
|
478245
478242
|
return {
|
|
478246
478243
|
type: "text",
|
|
478247
|
-
value: `${"99.0.0"} (built ${"2026-04-
|
|
478244
|
+
value: `${"99.0.0"} (built ${"2026-04-28T12:09:31.454Z"})`
|
|
478248
478245
|
};
|
|
478249
478246
|
}, version2, version_default;
|
|
478250
478247
|
var init_version = __esm(() => {
|
|
@@ -553656,7 +553653,7 @@ function WelcomeV2() {
|
|
|
553656
553653
|
dimColor: true,
|
|
553657
553654
|
children: [
|
|
553658
553655
|
"v",
|
|
553659
|
-
"0.3.
|
|
553656
|
+
"0.3.20",
|
|
553660
553657
|
" "
|
|
553661
553658
|
]
|
|
553662
553659
|
}, undefined, true, undefined, this)
|
|
@@ -573673,7 +573670,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
573673
573670
|
pendingHookMessages
|
|
573674
573671
|
}, renderAndRun);
|
|
573675
573672
|
}
|
|
573676
|
-
}).version("0.3.
|
|
573673
|
+
}).version("0.3.20 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
573677
573674
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
573678
573675
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
573679
573676
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574201,7 +574198,7 @@ if (false) {}
|
|
|
574201
574198
|
async function main2() {
|
|
574202
574199
|
const args = process.argv.slice(2);
|
|
574203
574200
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574204
|
-
console.log(`${"0.3.
|
|
574201
|
+
console.log(`${"0.3.20"} (STRATAGEM X7)`);
|
|
574205
574202
|
return;
|
|
574206
574203
|
}
|
|
574207
574204
|
if (args.includes("--provider")) {
|
|
@@ -574323,4 +574320,4 @@ async function main2() {
|
|
|
574323
574320
|
}
|
|
574324
574321
|
main2();
|
|
574325
574322
|
|
|
574326
|
-
//# debugId=
|
|
574323
|
+
//# debugId=268D2D98E951A17E64756E2164756E21
|