@wrongstack/cli 0.313.0 → 0.313.1
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.
|
@@ -1709,6 +1709,7 @@ function createSettingsAdapter(ctx) {
|
|
|
1709
1709
|
breakerAutoKillResetMs: cfg.circuitBreaker?.autoKillResetMs ?? 6e4,
|
|
1710
1710
|
showModelReasoning: autonomy?.showModelReasoning ?? true,
|
|
1711
1711
|
showAgentSwarmPanel: coerceAgentSwarmMode(autonomy?.showAgentSwarmPanel),
|
|
1712
|
+
showSidebar: autonomy?.showSidebar ?? true,
|
|
1712
1713
|
// Migrate the legacy `autonomy.showAgentSwarmPanel: 'sidebar'` into
|
|
1713
1714
|
// the new per-panel `panelPositions.fleet` map at the read boundary
|
|
1714
1715
|
// so users with old configs (no `panelPositions` key on disk) get
|
|
@@ -1733,7 +1734,7 @@ function createSettingsAdapter(ctx) {
|
|
|
1733
1734
|
}
|
|
1734
1735
|
async function saveSettings(s) {
|
|
1735
1736
|
try {
|
|
1736
|
-
if (s.mode !== void 0 || s.delayMs !== void 0 || s.titleAnimation !== void 0 || s.yolo !== void 0 || s.fleetChatVerbosity !== void 0 || s.chime !== void 0 || s.confirmExit !== void 0 || s.mouseMode !== void 0 || s.featureMcp !== void 0 || s.featurePlugins !== void 0 || s.featureMemory !== void 0 || s.featureSkills !== void 0 || s.featureModelsRegistry !== void 0 || s.featureTokenSaving !== void 0 || s.allowOutsideProjectRoot !== void 0 || s.contextAutoCompact !== void 0 || s.contextStrategy !== void 0 || s.contextMode !== void 0 || s.maxConcurrent !== void 0 || s.logLevel !== void 0 || s.auditLevel !== void 0 || s.indexOnStart !== void 0 || s.maxIterations !== void 0 || s.nextStepsTool !== void 0 || s.restrictFsToRoot !== void 0 || s.nextPrediction !== void 0 || s.debugStream !== void 0 || s.shellBangWarningDontShowAgain !== void 0 || s.configScope !== void 0 || s.enhanceDelayMs !== void 0 || s.enhanceEnabled !== void 0 || s.enhanceLanguage !== void 0 || s.midRunSendPicker !== void 0 || s.statuslineMode !== void 0 || s.thinkingWord !== void 0 || s.animationStyle !== void 0 || s.autonomyNextPrompt !== void 0 || s.autoProceedMaxIterations !== void 0 || s.reasoningMode !== void 0 || s.reasoningEffort !== void 0 || s.reasoningPreserve !== void 0 || s.cacheTtl !== void 0 || s.breakerEnabled !== void 0 || s.breakerAutoKillResetMs !== void 0 || s.showModelReasoning !== void 0 || s.showAgentSwarmPanel !== void 0 || s.panelPositions !== void 0 || s.showSageMemoryInject !== void 0 || s.sageMemoryInjectThreshold !== void 0 || s.readSymbols !== void 0 || // WrongProxy / WrongTrace: gate the persisted-section write on
|
|
1737
|
+
if (s.mode !== void 0 || s.delayMs !== void 0 || s.titleAnimation !== void 0 || s.yolo !== void 0 || s.fleetChatVerbosity !== void 0 || s.chime !== void 0 || s.confirmExit !== void 0 || s.mouseMode !== void 0 || s.featureMcp !== void 0 || s.featurePlugins !== void 0 || s.featureMemory !== void 0 || s.featureSkills !== void 0 || s.featureModelsRegistry !== void 0 || s.featureTokenSaving !== void 0 || s.allowOutsideProjectRoot !== void 0 || s.contextAutoCompact !== void 0 || s.contextStrategy !== void 0 || s.contextMode !== void 0 || s.maxConcurrent !== void 0 || s.logLevel !== void 0 || s.auditLevel !== void 0 || s.indexOnStart !== void 0 || s.maxIterations !== void 0 || s.nextStepsTool !== void 0 || s.restrictFsToRoot !== void 0 || s.nextPrediction !== void 0 || s.debugStream !== void 0 || s.shellBangWarningDontShowAgain !== void 0 || s.configScope !== void 0 || s.enhanceDelayMs !== void 0 || s.enhanceEnabled !== void 0 || s.enhanceLanguage !== void 0 || s.midRunSendPicker !== void 0 || s.statuslineMode !== void 0 || s.thinkingWord !== void 0 || s.animationStyle !== void 0 || s.autonomyNextPrompt !== void 0 || s.autoProceedMaxIterations !== void 0 || s.reasoningMode !== void 0 || s.reasoningEffort !== void 0 || s.reasoningPreserve !== void 0 || s.cacheTtl !== void 0 || s.breakerEnabled !== void 0 || s.breakerAutoKillResetMs !== void 0 || s.showModelReasoning !== void 0 || s.showAgentSwarmPanel !== void 0 || s.showSidebar !== void 0 || s.panelPositions !== void 0 || s.showSageMemoryInject !== void 0 || s.sageMemoryInjectThreshold !== void 0 || s.readSymbols !== void 0 || // WrongProxy / WrongTrace: gate the persisted-section write on
|
|
1737
1738
|
// either key being present in the live patch. Without this, a
|
|
1738
1739
|
// picker toggle round-trip would silently no-op the persistence
|
|
1739
1740
|
// layer (the runtime probe would never read the change).
|
|
@@ -1789,6 +1790,7 @@ function createSettingsAdapter(ctx) {
|
|
|
1789
1790
|
if (s.showModelReasoning !== void 0) autonomy.showModelReasoning = s.showModelReasoning;
|
|
1790
1791
|
if (s.showAgentSwarmPanel !== void 0)
|
|
1791
1792
|
autonomy.showAgentSwarmPanel = s.showAgentSwarmPanel;
|
|
1793
|
+
if (s.showSidebar !== void 0) autonomy.showSidebar = s.showSidebar;
|
|
1792
1794
|
if (s.panelPositions !== void 0) autonomy.panelPositions = s.panelPositions;
|
|
1793
1795
|
if (s.showSageMemoryInject !== void 0)
|
|
1794
1796
|
autonomy.showSageMemoryInject = s.showSageMemoryInject;
|
|
@@ -6303,4 +6305,4 @@ export {
|
|
|
6303
6305
|
execute,
|
|
6304
6306
|
resolveReviewerFallbackModels
|
|
6305
6307
|
};
|
|
6306
|
-
//# sourceMappingURL=execution-
|
|
6308
|
+
//# sourceMappingURL=execution-L4CXQEND.js.map
|
package/dist/index.js
CHANGED
|
@@ -4481,7 +4481,7 @@ async function initializeCli(argv) {
|
|
|
4481
4481
|
async function main(argv) {
|
|
4482
4482
|
const cliCtx = await initializeCli(argv);
|
|
4483
4483
|
if (typeof cliCtx === "number") return cliCtx;
|
|
4484
|
-
const { runInteractive } = await import("./cli-main-
|
|
4484
|
+
const { runInteractive } = await import("./cli-main-UOQ2ICUO.js");
|
|
4485
4485
|
return runInteractive(cliCtx);
|
|
4486
4486
|
}
|
|
4487
4487
|
|
|
@@ -66,6 +66,11 @@ export interface LiveSettingsInput {
|
|
|
66
66
|
/** Agent swarm panel placement: 'bottom' (lower region), 'sidebar' (right sidebar), or 'off' (hidden).
|
|
67
67
|
* Backward-compat: legacy boolean values are coerced by the TUI settings adapter. Default: 'bottom'. */
|
|
68
68
|
showAgentSwarmPanel?: 'bottom' | 'sidebar' | 'off' | boolean | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* Right sidebar visibility: when false, the right sidebar is completely
|
|
71
|
+
* hidden and chat history takes the full terminal width. Default: true.
|
|
72
|
+
*/
|
|
73
|
+
showSidebar?: boolean | undefined;
|
|
69
74
|
/**
|
|
70
75
|
* Per-panel position map (one entry per F-key panel id). Each value is
|
|
71
76
|
* 'bottom' (F-key behavior) or 'sidebar' (right-sidebar twin). Persisted
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/cli",
|
|
3
|
-
"version": "0.313.
|
|
3
|
+
"version": "0.313.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack CLI — terminal AI coding agent with provider catalog from models.dev. Provides `wrongstack` and `wstack` binaries.",
|
|
6
6
|
"keywords": [
|
|
@@ -42,35 +42,35 @@
|
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"ws": "^8.21.3",
|
|
45
|
-
"@wrongstack/
|
|
46
|
-
"@wrongstack/
|
|
47
|
-
"@wrongstack/bench": "0.313.
|
|
48
|
-
"@wrongstack/
|
|
49
|
-
"@wrongstack/
|
|
50
|
-
"@wrongstack/
|
|
51
|
-
"@wrongstack/kanban": "0.313.
|
|
52
|
-
"@wrongstack/plug-lsp": "0.313.
|
|
53
|
-
"@wrongstack/
|
|
54
|
-
"@wrongstack/
|
|
55
|
-
"@wrongstack/
|
|
56
|
-
"@wrongstack/runtime": "0.313.
|
|
57
|
-
"@wrongstack/sage": "0.313.
|
|
58
|
-
"@wrongstack/
|
|
59
|
-
"@wrongstack/
|
|
60
|
-
"@wrongstack/
|
|
61
|
-
"@wrongstack/
|
|
62
|
-
"@wrongstack/
|
|
63
|
-
"@wrongstack/
|
|
64
|
-
"@wrongstack/
|
|
65
|
-
"@wrongstack/
|
|
66
|
-
"@wrongstack/webui
|
|
67
|
-
"@wrongstack/webui": "0.313.
|
|
68
|
-
"@wrongstack/webui-hq": "0.313.
|
|
69
|
-
"@wrongstack/wrongtrace": "0.313.
|
|
70
|
-
"@wrongstack/webui-server": "0.313.
|
|
45
|
+
"@wrongstack/core": "0.313.1",
|
|
46
|
+
"@wrongstack/primitives": "0.313.1",
|
|
47
|
+
"@wrongstack/bench": "0.313.1",
|
|
48
|
+
"@wrongstack/acp": "0.313.1",
|
|
49
|
+
"@wrongstack/persistence": "0.313.1",
|
|
50
|
+
"@wrongstack/mcp": "0.313.1",
|
|
51
|
+
"@wrongstack/kanban": "0.313.1",
|
|
52
|
+
"@wrongstack/plug-lsp": "0.313.1",
|
|
53
|
+
"@wrongstack/requirement-intake": "0.313.1",
|
|
54
|
+
"@wrongstack/plugins": "0.313.1",
|
|
55
|
+
"@wrongstack/providers": "0.313.1",
|
|
56
|
+
"@wrongstack/runtime": "0.313.1",
|
|
57
|
+
"@wrongstack/sage": "0.313.1",
|
|
58
|
+
"@wrongstack/sdd": "0.313.1",
|
|
59
|
+
"@wrongstack/security-scanner": "0.313.1",
|
|
60
|
+
"@wrongstack/techstack": "0.313.1",
|
|
61
|
+
"@wrongstack/simpleui": "0.313.1",
|
|
62
|
+
"@wrongstack/tui": "0.313.1",
|
|
63
|
+
"@wrongstack/vector-memory": "0.313.1",
|
|
64
|
+
"@wrongstack/telegram": "0.313.1",
|
|
65
|
+
"@wrongstack/tools": "0.313.1",
|
|
66
|
+
"@wrongstack/webui": "0.313.1",
|
|
67
|
+
"@wrongstack/webui-protocol": "0.313.1",
|
|
68
|
+
"@wrongstack/webui-hq": "0.313.1",
|
|
69
|
+
"@wrongstack/wrongtrace": "0.313.1",
|
|
70
|
+
"@wrongstack/webui-server": "0.313.1"
|
|
71
71
|
},
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"@wrongstack/desktop": "0.313.
|
|
73
|
+
"@wrongstack/desktop": "0.313.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@types/node": "^26.2.0",
|