stratagem-x7 0.3.7 → 0.3.8
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 +8 -11
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -18231,9 +18231,6 @@ function getAdditionalModelOptionsCacheScope() {
|
|
|
18231
18231
|
if (request.transport !== "chat_completions") {
|
|
18232
18232
|
return null;
|
|
18233
18233
|
}
|
|
18234
|
-
if (!isLocalProviderUrl(request.baseUrl)) {
|
|
18235
|
-
return null;
|
|
18236
|
-
}
|
|
18237
18234
|
return `openai:${request.baseUrl.toLowerCase()}`;
|
|
18238
18235
|
}
|
|
18239
18236
|
function resolveCodexAuthPath(env2 = process.env) {
|
|
@@ -382821,7 +382818,7 @@ function getAnthropicEnvMetadata() {
|
|
|
382821
382818
|
function getBuildAgeMinutes() {
|
|
382822
382819
|
if (false)
|
|
382823
382820
|
;
|
|
382824
|
-
const buildTime = new Date("2026-04-25T02:
|
|
382821
|
+
const buildTime = new Date("2026-04-25T02:59:14.373Z").getTime();
|
|
382825
382822
|
if (isNaN(buildTime))
|
|
382826
382823
|
return;
|
|
382827
382824
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -410000,7 +409997,7 @@ function buildPrimarySection() {
|
|
|
410000
409997
|
}, undefined, false, undefined, this);
|
|
410001
409998
|
return [{
|
|
410002
409999
|
label: "Version",
|
|
410003
|
-
value: "0.3.
|
|
410000
|
+
value: "0.3.8"
|
|
410004
410001
|
}, {
|
|
410005
410002
|
label: "Session name",
|
|
410006
410003
|
value: nameValue
|
|
@@ -449627,7 +449624,7 @@ function getStartupLines(termWidth) {
|
|
|
449627
449624
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
449628
449625
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
449629
449626
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
449630
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
449627
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.8"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
449631
449628
|
out.push("");
|
|
449632
449629
|
return out;
|
|
449633
449630
|
}
|
|
@@ -478176,7 +478173,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
478176
478173
|
var call60 = async () => {
|
|
478177
478174
|
return {
|
|
478178
478175
|
type: "text",
|
|
478179
|
-
value: `${"99.0.0"} (built ${"2026-04-25T02:
|
|
478176
|
+
value: `${"99.0.0"} (built ${"2026-04-25T02:59:14.373Z"})`
|
|
478180
478177
|
};
|
|
478181
478178
|
}, version2, version_default;
|
|
478182
478179
|
var init_version = __esm(() => {
|
|
@@ -553567,7 +553564,7 @@ function WelcomeV2() {
|
|
|
553567
553564
|
dimColor: true,
|
|
553568
553565
|
children: [
|
|
553569
553566
|
"v",
|
|
553570
|
-
"0.3.
|
|
553567
|
+
"0.3.8",
|
|
553571
553568
|
" "
|
|
553572
553569
|
]
|
|
553573
553570
|
}, undefined, true, undefined, this)
|
|
@@ -573585,7 +573582,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
573585
573582
|
pendingHookMessages
|
|
573586
573583
|
}, renderAndRun);
|
|
573587
573584
|
}
|
|
573588
|
-
}).version("0.3.
|
|
573585
|
+
}).version("0.3.8 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
573589
573586
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
573590
573587
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
573591
573588
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574114,7 +574111,7 @@ if (false) {}
|
|
|
574114
574111
|
async function main2() {
|
|
574115
574112
|
const args = process.argv.slice(2);
|
|
574116
574113
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574117
|
-
console.log(`${"0.3.
|
|
574114
|
+
console.log(`${"0.3.8"} (STRATAGEM X7)`);
|
|
574118
574115
|
return;
|
|
574119
574116
|
}
|
|
574120
574117
|
if (args.includes("--provider")) {
|
|
@@ -574236,4 +574233,4 @@ async function main2() {
|
|
|
574236
574233
|
}
|
|
574237
574234
|
main2();
|
|
574238
574235
|
|
|
574239
|
-
//# debugId=
|
|
574236
|
+
//# debugId=D065746CFBCE51A064756E2164756E21
|