stratagem-x7 0.3.14 → 0.3.15
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 +9 -9
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -292643,7 +292643,7 @@ function AssistantThinkingMessage(t0) {
|
|
|
292643
292643
|
if (hideInTranscript) {
|
|
292644
292644
|
return null;
|
|
292645
292645
|
}
|
|
292646
|
-
const shouldShowFullThinking =
|
|
292646
|
+
const shouldShowFullThinking = true;
|
|
292647
292647
|
if (!shouldShowFullThinking) {
|
|
292648
292648
|
const t42 = addMargin ? 1 : 0;
|
|
292649
292649
|
let t52;
|
|
@@ -382886,7 +382886,7 @@ function getAnthropicEnvMetadata() {
|
|
|
382886
382886
|
function getBuildAgeMinutes() {
|
|
382887
382887
|
if (false)
|
|
382888
382888
|
;
|
|
382889
|
-
const buildTime = new Date("2026-04-25T07:
|
|
382889
|
+
const buildTime = new Date("2026-04-25T07:10:04.765Z").getTime();
|
|
382890
382890
|
if (isNaN(buildTime))
|
|
382891
382891
|
return;
|
|
382892
382892
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -410063,7 +410063,7 @@ function buildPrimarySection() {
|
|
|
410063
410063
|
}, undefined, false, undefined, this);
|
|
410064
410064
|
return [{
|
|
410065
410065
|
label: "Version",
|
|
410066
|
-
value: "0.3.
|
|
410066
|
+
value: "0.3.15"
|
|
410067
410067
|
}, {
|
|
410068
410068
|
label: "Session name",
|
|
410069
410069
|
value: nameValue
|
|
@@ -449689,7 +449689,7 @@ function getStartupLines(termWidth) {
|
|
|
449689
449689
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
449690
449690
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
449691
449691
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
449692
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
449692
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.15"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
449693
449693
|
out.push("");
|
|
449694
449694
|
return out;
|
|
449695
449695
|
}
|
|
@@ -478238,7 +478238,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
478238
478238
|
var call60 = async () => {
|
|
478239
478239
|
return {
|
|
478240
478240
|
type: "text",
|
|
478241
|
-
value: `${"99.0.0"} (built ${"2026-04-25T07:
|
|
478241
|
+
value: `${"99.0.0"} (built ${"2026-04-25T07:10:04.765Z"})`
|
|
478242
478242
|
};
|
|
478243
478243
|
}, version2, version_default;
|
|
478244
478244
|
var init_version = __esm(() => {
|
|
@@ -553650,7 +553650,7 @@ function WelcomeV2() {
|
|
|
553650
553650
|
dimColor: true,
|
|
553651
553651
|
children: [
|
|
553652
553652
|
"v",
|
|
553653
|
-
"0.3.
|
|
553653
|
+
"0.3.15",
|
|
553654
553654
|
" "
|
|
553655
553655
|
]
|
|
553656
553656
|
}, undefined, true, undefined, this)
|
|
@@ -573667,7 +573667,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
573667
573667
|
pendingHookMessages
|
|
573668
573668
|
}, renderAndRun);
|
|
573669
573669
|
}
|
|
573670
|
-
}).version("0.3.
|
|
573670
|
+
}).version("0.3.15 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
573671
573671
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
573672
573672
|
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
573673
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574195,7 +574195,7 @@ if (false) {}
|
|
|
574195
574195
|
async function main2() {
|
|
574196
574196
|
const args = process.argv.slice(2);
|
|
574197
574197
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574198
|
-
console.log(`${"0.3.
|
|
574198
|
+
console.log(`${"0.3.15"} (STRATAGEM X7)`);
|
|
574199
574199
|
return;
|
|
574200
574200
|
}
|
|
574201
574201
|
if (args.includes("--provider")) {
|
|
@@ -574317,4 +574317,4 @@ async function main2() {
|
|
|
574317
574317
|
}
|
|
574318
574318
|
main2();
|
|
574319
574319
|
|
|
574320
|
-
//# debugId=
|
|
574320
|
+
//# debugId=D1F9839AF963269B64756E2164756E21
|