stratagem-x7 0.3.39 → 0.3.40
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
|
@@ -112286,7 +112286,7 @@ var init_configs = __esm(() => {
|
|
|
112286
112286
|
opencode: "gpt-5.4"
|
|
112287
112287
|
};
|
|
112288
112288
|
CLAUDE_OPUS_4_7_CONFIG = {
|
|
112289
|
-
firstParty: "claude-opus-4-7
|
|
112289
|
+
firstParty: "claude-opus-4-7",
|
|
112290
112290
|
bedrock: "us.anthropic.claude-opus-4-7-v1",
|
|
112291
112291
|
vertex: "claude-opus-4-7",
|
|
112292
112292
|
foundry: "claude-opus-4-7",
|
|
@@ -350470,7 +350470,7 @@ function getAnthropicEnvMetadata() {
|
|
|
350470
350470
|
function getBuildAgeMinutes() {
|
|
350471
350471
|
if (false)
|
|
350472
350472
|
;
|
|
350473
|
-
const buildTime = new Date("2026-05-07T03:
|
|
350473
|
+
const buildTime = new Date("2026-05-07T03:07:21.890Z").getTime();
|
|
350474
350474
|
if (isNaN(buildTime))
|
|
350475
350475
|
return;
|
|
350476
350476
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -417613,7 +417613,7 @@ function buildPrimarySection() {
|
|
|
417613
417613
|
}, undefined, false, undefined, this);
|
|
417614
417614
|
return [{
|
|
417615
417615
|
label: "Version",
|
|
417616
|
-
value: "0.3.
|
|
417616
|
+
value: "0.3.40"
|
|
417617
417617
|
}, {
|
|
417618
417618
|
label: "Session name",
|
|
417619
417619
|
value: nameValue
|
|
@@ -457307,7 +457307,7 @@ function getStartupLines(termWidth) {
|
|
|
457307
457307
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
457308
457308
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
457309
457309
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
457310
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
457310
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.40"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
457311
457311
|
out.push("");
|
|
457312
457312
|
return out;
|
|
457313
457313
|
}
|
|
@@ -485980,7 +485980,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
485980
485980
|
var call60 = async () => {
|
|
485981
485981
|
return {
|
|
485982
485982
|
type: "text",
|
|
485983
|
-
value: `${"99.0.0"} (built ${"2026-05-07T03:
|
|
485983
|
+
value: `${"99.0.0"} (built ${"2026-05-07T03:07:21.890Z"})`
|
|
485984
485984
|
};
|
|
485985
485985
|
}, version2, version_default;
|
|
485986
485986
|
var init_version = __esm(() => {
|
|
@@ -554713,7 +554713,7 @@ function WelcomeV2() {
|
|
|
554713
554713
|
dimColor: true,
|
|
554714
554714
|
children: [
|
|
554715
554715
|
"v",
|
|
554716
|
-
"0.3.
|
|
554716
|
+
"0.3.40",
|
|
554717
554717
|
" "
|
|
554718
554718
|
]
|
|
554719
554719
|
}, undefined, true, undefined, this)
|
|
@@ -574170,7 +574170,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
574170
574170
|
pendingHookMessages
|
|
574171
574171
|
}, renderAndRun);
|
|
574172
574172
|
}
|
|
574173
|
-
}).version("0.3.
|
|
574173
|
+
}).version("0.3.40 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
574174
574174
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
574175
574175
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
574176
574176
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574631,7 +574631,7 @@ if (false) {}
|
|
|
574631
574631
|
async function main2() {
|
|
574632
574632
|
const args = process.argv.slice(2);
|
|
574633
574633
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574634
|
-
console.log(`${"0.3.
|
|
574634
|
+
console.log(`${"0.3.40"} (STRATAGEM X7)`);
|
|
574635
574635
|
return;
|
|
574636
574636
|
}
|
|
574637
574637
|
if (args.includes("--provider")) {
|
|
@@ -574753,4 +574753,4 @@ async function main2() {
|
|
|
574753
574753
|
}
|
|
574754
574754
|
main2();
|
|
574755
574755
|
|
|
574756
|
-
//# debugId=
|
|
574756
|
+
//# debugId=6941673D185E2EF664756E2164756E21
|