stratagem-x7 0.3.63 → 0.3.64
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 +16 -12
- 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(() => {
|
|
@@ -350256,7 +350260,7 @@ function getAnthropicEnvMetadata() {
|
|
|
350256
350260
|
function getBuildAgeMinutes() {
|
|
350257
350261
|
if (false)
|
|
350258
350262
|
;
|
|
350259
|
-
const buildTime = new Date("2026-05-08T03:
|
|
350263
|
+
const buildTime = new Date("2026-05-08T03:06:27.228Z").getTime();
|
|
350260
350264
|
if (isNaN(buildTime))
|
|
350261
350265
|
return;
|
|
350262
350266
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -418069,7 +418073,7 @@ function buildPrimarySection() {
|
|
|
418069
418073
|
}, undefined, false, undefined, this);
|
|
418070
418074
|
return [{
|
|
418071
418075
|
label: "Version",
|
|
418072
|
-
value: "0.3.
|
|
418076
|
+
value: "0.3.64"
|
|
418073
418077
|
}, {
|
|
418074
418078
|
label: "Session name",
|
|
418075
418079
|
value: nameValue
|
|
@@ -457756,7 +457760,7 @@ function getStartupLines(termWidth) {
|
|
|
457756
457760
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
457757
457761
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
457758
457762
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
457759
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
457763
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.64"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
457760
457764
|
out.push("");
|
|
457761
457765
|
return out;
|
|
457762
457766
|
}
|
|
@@ -486507,7 +486511,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
486507
486511
|
var call61 = async () => {
|
|
486508
486512
|
return {
|
|
486509
486513
|
type: "text",
|
|
486510
|
-
value: `${"99.0.0"} (built ${"2026-05-08T03:
|
|
486514
|
+
value: `${"99.0.0"} (built ${"2026-05-08T03:06:27.228Z"})`
|
|
486511
486515
|
};
|
|
486512
486516
|
}, version2, version_default;
|
|
486513
486517
|
var init_version = __esm(() => {
|
|
@@ -535367,9 +535371,9 @@ function buildBorderText(showFastIcon, showFastIconHint, fastModeCooldown) {
|
|
|
535367
535371
|
align: "start",
|
|
535368
535372
|
offset: 1
|
|
535369
535373
|
};
|
|
535370
|
-
const fastSeg = showFastIconHint ? `${getFastIconString(true, fastModeCooldown)} ${source_default.
|
|
535374
|
+
const fastSeg = showFastIconHint ? `${getFastIconString(true, fastModeCooldown)} ${source_default.gray("/fast")}` : getFastIconString(true, fastModeCooldown);
|
|
535371
535375
|
return {
|
|
535372
|
-
content: `${baseSeg}${source_default.
|
|
535376
|
+
content: `${baseSeg}${source_default.gray("//")} ${fastSeg} `,
|
|
535373
535377
|
position: "top",
|
|
535374
535378
|
align: "start",
|
|
535375
535379
|
offset: 1
|
|
@@ -555333,7 +555337,7 @@ function WelcomeV2() {
|
|
|
555333
555337
|
dimColor: true,
|
|
555334
555338
|
children: [
|
|
555335
555339
|
"v",
|
|
555336
|
-
"0.3.
|
|
555340
|
+
"0.3.64",
|
|
555337
555341
|
" "
|
|
555338
555342
|
]
|
|
555339
555343
|
}, undefined, true, undefined, this)
|
|
@@ -574791,7 +574795,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
574791
574795
|
pendingHookMessages
|
|
574792
574796
|
}, renderAndRun);
|
|
574793
574797
|
}
|
|
574794
|
-
}).version("0.3.
|
|
574798
|
+
}).version("0.3.64 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
574795
574799
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
574796
574800
|
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
574801
|
if (canUserConfigureAdvisor()) {
|
|
@@ -575252,7 +575256,7 @@ if (false) {}
|
|
|
575252
575256
|
async function main2() {
|
|
575253
575257
|
const args = process.argv.slice(2);
|
|
575254
575258
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
575255
|
-
console.log(`${"0.3.
|
|
575259
|
+
console.log(`${"0.3.64"} (STRATAGEM X7)`);
|
|
575256
575260
|
return;
|
|
575257
575261
|
}
|
|
575258
575262
|
if (args.includes("--provider")) {
|
|
@@ -575374,4 +575378,4 @@ async function main2() {
|
|
|
575374
575378
|
}
|
|
575375
575379
|
main2();
|
|
575376
575380
|
|
|
575377
|
-
//# debugId=
|
|
575381
|
+
//# debugId=EEB242CFD6483B7864756E2164756E21
|