stratagem-x7 0.3.48 → 0.3.49
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 -11
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -188593,7 +188593,7 @@ function getAvailableEffortLevels(model) {
|
|
|
188593
188593
|
}
|
|
188594
188594
|
const levels = ["low", "medium", "high"];
|
|
188595
188595
|
if (modelSupportsMaxEffort(model)) {
|
|
188596
|
-
levels.push("
|
|
188596
|
+
levels.push("max");
|
|
188597
188597
|
}
|
|
188598
188598
|
return levels;
|
|
188599
188599
|
}
|
|
@@ -188628,7 +188628,7 @@ function toPersistableEffort(value) {
|
|
|
188628
188628
|
if (value === "low" || value === "medium" || value === "high") {
|
|
188629
188629
|
return value;
|
|
188630
188630
|
}
|
|
188631
|
-
if (value === "max"
|
|
188631
|
+
if (value === "max") {
|
|
188632
188632
|
return value;
|
|
188633
188633
|
}
|
|
188634
188634
|
return;
|
|
@@ -188760,7 +188760,6 @@ var init_effort = __esm(() => {
|
|
|
188760
188760
|
"low",
|
|
188761
188761
|
"medium",
|
|
188762
188762
|
"high",
|
|
188763
|
-
"xhigh",
|
|
188764
188763
|
"max"
|
|
188765
188764
|
];
|
|
188766
188765
|
OPENAI_EFFORT_LEVELS = [
|
|
@@ -350504,7 +350503,7 @@ function getAnthropicEnvMetadata() {
|
|
|
350504
350503
|
function getBuildAgeMinutes() {
|
|
350505
350504
|
if (false)
|
|
350506
350505
|
;
|
|
350507
|
-
const buildTime = new Date("2026-05-
|
|
350506
|
+
const buildTime = new Date("2026-05-07T14:11:14.906Z").getTime();
|
|
350508
350507
|
if (isNaN(buildTime))
|
|
350509
350508
|
return;
|
|
350510
350509
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -417836,7 +417835,7 @@ function buildPrimarySection() {
|
|
|
417836
417835
|
}, undefined, false, undefined, this);
|
|
417837
417836
|
return [{
|
|
417838
417837
|
label: "Version",
|
|
417839
|
-
value: "0.3.
|
|
417838
|
+
value: "0.3.49"
|
|
417840
417839
|
}, {
|
|
417841
417840
|
label: "Session name",
|
|
417842
417841
|
value: nameValue
|
|
@@ -457530,7 +457529,7 @@ function getStartupLines(termWidth) {
|
|
|
457530
457529
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
457531
457530
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
457532
457531
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
457533
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
457532
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.49"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
457534
457533
|
out.push("");
|
|
457535
457534
|
return out;
|
|
457536
457535
|
}
|
|
@@ -486203,7 +486202,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
486203
486202
|
var call60 = async () => {
|
|
486204
486203
|
return {
|
|
486205
486204
|
type: "text",
|
|
486206
|
-
value: `${"99.0.0"} (built ${"2026-05-
|
|
486205
|
+
value: `${"99.0.0"} (built ${"2026-05-07T14:11:14.906Z"})`
|
|
486207
486206
|
};
|
|
486208
486207
|
}, version2, version_default;
|
|
486209
486208
|
var init_version = __esm(() => {
|
|
@@ -554936,7 +554935,7 @@ function WelcomeV2() {
|
|
|
554936
554935
|
dimColor: true,
|
|
554937
554936
|
children: [
|
|
554938
554937
|
"v",
|
|
554939
|
-
"0.3.
|
|
554938
|
+
"0.3.49",
|
|
554940
554939
|
" "
|
|
554941
554940
|
]
|
|
554942
554941
|
}, undefined, true, undefined, this)
|
|
@@ -574394,7 +574393,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
574394
574393
|
pendingHookMessages
|
|
574395
574394
|
}, renderAndRun);
|
|
574396
574395
|
}
|
|
574397
|
-
}).version("0.3.
|
|
574396
|
+
}).version("0.3.49 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
574398
574397
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
574399
574398
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
574400
574399
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574855,7 +574854,7 @@ if (false) {}
|
|
|
574855
574854
|
async function main2() {
|
|
574856
574855
|
const args = process.argv.slice(2);
|
|
574857
574856
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574858
|
-
console.log(`${"0.3.
|
|
574857
|
+
console.log(`${"0.3.49"} (STRATAGEM X7)`);
|
|
574859
574858
|
return;
|
|
574860
574859
|
}
|
|
574861
574860
|
if (args.includes("--provider")) {
|
|
@@ -574977,4 +574976,4 @@ async function main2() {
|
|
|
574977
574976
|
}
|
|
574978
574977
|
main2();
|
|
574979
574978
|
|
|
574980
|
-
//# debugId=
|
|
574979
|
+
//# debugId=49DB170D5232B35164756E2164756E21
|