stratagem-x7 0.3.63 → 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.
- package/dist/cli.mjs +18 -13
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -120510,7 +120510,11 @@ function applyTextStyles(text, styles3) {
|
|
|
120510
120510
|
result = source_default.bold(result);
|
|
120511
120511
|
}
|
|
120512
120512
|
if (styles3.dim) {
|
|
120513
|
-
|
|
120513
|
+
if (styles3.color) {
|
|
120514
|
+
result = source_default.dim(result);
|
|
120515
|
+
} else {
|
|
120516
|
+
result = source_default.gray(result);
|
|
120517
|
+
}
|
|
120514
120518
|
}
|
|
120515
120519
|
if (styles3.color) {
|
|
120516
120520
|
result = colorize(result, styles3.color, "foreground");
|
|
@@ -201021,7 +201025,7 @@ function CtrlOToExpand() {
|
|
|
201021
201025
|
}
|
|
201022
201026
|
function ctrlOToExpand() {
|
|
201023
201027
|
const shortcut = getShortcutDisplay("app:toggleTranscript", "Global", "ctrl+o");
|
|
201024
|
-
return source_default.
|
|
201028
|
+
return source_default.gray(`(${shortcut} to expand)`);
|
|
201025
201029
|
}
|
|
201026
201030
|
var import_react_compiler_runtime20, import_react34, jsx_dev_runtime23, SubAgentContext;
|
|
201027
201031
|
var init_CtrlOToExpand = __esm(() => {
|
|
@@ -288963,7 +288967,8 @@ function getCandidateLocalBinaryPaths(localInstallDir) {
|
|
|
288963
288967
|
];
|
|
288964
288968
|
}
|
|
288965
288969
|
function isManagedLocalInstallationPath(execPath2) {
|
|
288966
|
-
|
|
288970
|
+
const normalized = execPath2.replace(/\\/g, "/");
|
|
288971
|
+
return normalized.includes("/.openclaude/local/node_modules/") || normalized.includes("/.claude/local/node_modules/");
|
|
288967
288972
|
}
|
|
288968
288973
|
function getLocalClaudePath() {
|
|
288969
288974
|
return join75(getLocalInstallDir(), "openclaude");
|
|
@@ -350256,7 +350261,7 @@ function getAnthropicEnvMetadata() {
|
|
|
350256
350261
|
function getBuildAgeMinutes() {
|
|
350257
350262
|
if (false)
|
|
350258
350263
|
;
|
|
350259
|
-
const buildTime = new Date("2026-05-08T03:
|
|
350264
|
+
const buildTime = new Date("2026-05-08T03:20:29.631Z").getTime();
|
|
350260
350265
|
if (isNaN(buildTime))
|
|
350261
350266
|
return;
|
|
350262
350267
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -418069,7 +418074,7 @@ function buildPrimarySection() {
|
|
|
418069
418074
|
}, undefined, false, undefined, this);
|
|
418070
418075
|
return [{
|
|
418071
418076
|
label: "Version",
|
|
418072
|
-
value: "0.3.
|
|
418077
|
+
value: "0.3.65"
|
|
418073
418078
|
}, {
|
|
418074
418079
|
label: "Session name",
|
|
418075
418080
|
value: nameValue
|
|
@@ -457756,7 +457761,7 @@ function getStartupLines(termWidth) {
|
|
|
457756
457761
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
457757
457762
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
457758
457763
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
457759
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
457764
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.65"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
457760
457765
|
out.push("");
|
|
457761
457766
|
return out;
|
|
457762
457767
|
}
|
|
@@ -486507,7 +486512,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
486507
486512
|
var call61 = async () => {
|
|
486508
486513
|
return {
|
|
486509
486514
|
type: "text",
|
|
486510
|
-
value: `${"99.0.0"} (built ${"2026-05-08T03:
|
|
486515
|
+
value: `${"99.0.0"} (built ${"2026-05-08T03:20:29.631Z"})`
|
|
486511
486516
|
};
|
|
486512
486517
|
}, version2, version_default;
|
|
486513
486518
|
var init_version = __esm(() => {
|
|
@@ -535367,9 +535372,9 @@ function buildBorderText(showFastIcon, showFastIconHint, fastModeCooldown) {
|
|
|
535367
535372
|
align: "start",
|
|
535368
535373
|
offset: 1
|
|
535369
535374
|
};
|
|
535370
|
-
const fastSeg = showFastIconHint ? `${getFastIconString(true, fastModeCooldown)} ${source_default.
|
|
535375
|
+
const fastSeg = showFastIconHint ? `${getFastIconString(true, fastModeCooldown)} ${source_default.gray("/fast")}` : getFastIconString(true, fastModeCooldown);
|
|
535371
535376
|
return {
|
|
535372
|
-
content: `${baseSeg}${source_default.
|
|
535377
|
+
content: `${baseSeg}${source_default.gray("//")} ${fastSeg} `,
|
|
535373
535378
|
position: "top",
|
|
535374
535379
|
align: "start",
|
|
535375
535380
|
offset: 1
|
|
@@ -555333,7 +555338,7 @@ function WelcomeV2() {
|
|
|
555333
555338
|
dimColor: true,
|
|
555334
555339
|
children: [
|
|
555335
555340
|
"v",
|
|
555336
|
-
"0.3.
|
|
555341
|
+
"0.3.65",
|
|
555337
555342
|
" "
|
|
555338
555343
|
]
|
|
555339
555344
|
}, undefined, true, undefined, this)
|
|
@@ -574791,7 +574796,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
574791
574796
|
pendingHookMessages
|
|
574792
574797
|
}, renderAndRun);
|
|
574793
574798
|
}
|
|
574794
|
-
}).version("0.3.
|
|
574799
|
+
}).version("0.3.65 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
574795
574800
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
574796
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.");
|
|
574797
574802
|
if (canUserConfigureAdvisor()) {
|
|
@@ -575252,7 +575257,7 @@ if (false) {}
|
|
|
575252
575257
|
async function main2() {
|
|
575253
575258
|
const args = process.argv.slice(2);
|
|
575254
575259
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
575255
|
-
console.log(`${"0.3.
|
|
575260
|
+
console.log(`${"0.3.65"} (STRATAGEM X7)`);
|
|
575256
575261
|
return;
|
|
575257
575262
|
}
|
|
575258
575263
|
if (args.includes("--provider")) {
|
|
@@ -575374,4 +575379,4 @@ async function main2() {
|
|
|
575374
575379
|
}
|
|
575375
575380
|
main2();
|
|
575376
575381
|
|
|
575377
|
-
//# debugId=
|
|
575382
|
+
//# debugId=D4A1DCC2CF02BD5264756E2164756E21
|