stratagem-x7 0.3.10 → 0.3.11
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 -19
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -217089,19 +217089,9 @@ function isAgentTeamsFlagSet() {
|
|
|
217089
217089
|
return process.argv.includes("--agent-teams");
|
|
217090
217090
|
}
|
|
217091
217091
|
function isAgentSwarmsEnabled() {
|
|
217092
|
-
|
|
217093
|
-
return true;
|
|
217094
|
-
}
|
|
217095
|
-
if (!isEnvTruthy(process.env.CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS) && !isAgentTeamsFlagSet()) {
|
|
217096
|
-
return false;
|
|
217097
|
-
}
|
|
217098
|
-
if (!getFeatureValue_CACHED_MAY_BE_STALE("tengu_amber_flint", true)) {
|
|
217099
|
-
return false;
|
|
217100
|
-
}
|
|
217101
|
-
return true;
|
|
217092
|
+
return isEnvTruthy(process.env.CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS) || isAgentTeamsFlagSet();
|
|
217102
217093
|
}
|
|
217103
217094
|
var init_agentSwarmsEnabled = __esm(() => {
|
|
217104
|
-
init_growthbook();
|
|
217105
217095
|
init_envUtils();
|
|
217106
217096
|
});
|
|
217107
217097
|
|
|
@@ -382918,7 +382908,7 @@ function getAnthropicEnvMetadata() {
|
|
|
382918
382908
|
function getBuildAgeMinutes() {
|
|
382919
382909
|
if (false)
|
|
382920
382910
|
;
|
|
382921
|
-
const buildTime = new Date("2026-04-
|
|
382911
|
+
const buildTime = new Date("2026-04-25T04:18:15.797Z").getTime();
|
|
382922
382912
|
if (isNaN(buildTime))
|
|
382923
382913
|
return;
|
|
382924
382914
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -410097,7 +410087,7 @@ function buildPrimarySection() {
|
|
|
410097
410087
|
}, undefined, false, undefined, this);
|
|
410098
410088
|
return [{
|
|
410099
410089
|
label: "Version",
|
|
410100
|
-
value: "0.3.
|
|
410090
|
+
value: "0.3.11"
|
|
410101
410091
|
}, {
|
|
410102
410092
|
label: "Session name",
|
|
410103
410093
|
value: nameValue
|
|
@@ -449724,7 +449714,7 @@ function getStartupLines(termWidth) {
|
|
|
449724
449714
|
const sLen = ` ● ${sL} buffer ready — /help for breach controls`.length;
|
|
449725
449715
|
out.push(centerAnsiLine(boxRow(sRow, W2, sLen), tw));
|
|
449726
449716
|
out.push(centerAnsiLine(`${rgb3(...BORDER)}└${"─".repeat(W2 - 2)}┘${RESET2}`, tw));
|
|
449727
|
-
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.
|
|
449717
|
+
out.push(centerAnsiLine(`${rgb3(...DIMCOL)}STRATAGEM X7${RESET2} ${rgb3(...ACCENT)}v${"0.3.11"}${RESET2} ${rgb3(...CYAN)}// breach link stable${RESET2}`, tw));
|
|
449728
449718
|
out.push("");
|
|
449729
449719
|
return out;
|
|
449730
449720
|
}
|
|
@@ -478273,7 +478263,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
478273
478263
|
var call60 = async () => {
|
|
478274
478264
|
return {
|
|
478275
478265
|
type: "text",
|
|
478276
|
-
value: `${"99.0.0"} (built ${"2026-04-
|
|
478266
|
+
value: `${"99.0.0"} (built ${"2026-04-25T04:18:15.797Z"})`
|
|
478277
478267
|
};
|
|
478278
478268
|
}, version2, version_default;
|
|
478279
478269
|
var init_version = __esm(() => {
|
|
@@ -553664,7 +553654,7 @@ function WelcomeV2() {
|
|
|
553664
553654
|
dimColor: true,
|
|
553665
553655
|
children: [
|
|
553666
553656
|
"v",
|
|
553667
|
-
"0.3.
|
|
553657
|
+
"0.3.11",
|
|
553668
553658
|
" "
|
|
553669
553659
|
]
|
|
553670
553660
|
}, undefined, true, undefined, this)
|
|
@@ -573682,7 +573672,7 @@ Usage: stx7 --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
573682
573672
|
pendingHookMessages
|
|
573683
573673
|
}, renderAndRun);
|
|
573684
573674
|
}
|
|
573685
|
-
}).version("0.3.
|
|
573675
|
+
}).version("0.3.11 (STRATAGEM X7)", "-v, --version", "Output the version number");
|
|
573686
573676
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
573687
573677
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
573688
573678
|
if (canUserConfigureAdvisor()) {
|
|
@@ -574211,7 +574201,7 @@ if (false) {}
|
|
|
574211
574201
|
async function main2() {
|
|
574212
574202
|
const args = process.argv.slice(2);
|
|
574213
574203
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
574214
|
-
console.log(`${"0.3.
|
|
574204
|
+
console.log(`${"0.3.11"} (STRATAGEM X7)`);
|
|
574215
574205
|
return;
|
|
574216
574206
|
}
|
|
574217
574207
|
if (args.includes("--provider")) {
|
|
@@ -574333,4 +574323,4 @@ async function main2() {
|
|
|
574333
574323
|
}
|
|
574334
574324
|
main2();
|
|
574335
574325
|
|
|
574336
|
-
//# debugId=
|
|
574326
|
+
//# debugId=AD29159858C1C98464756E2164756E21
|