specsmd 0.1.50 → 0.1.51
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/lib/dashboard/tui/app.js +1 -14
- package/package.json +1 -1
package/lib/dashboard/tui/app.js
CHANGED
|
@@ -2415,9 +2415,6 @@ function buildQuickHelpText(view, options = {}) {
|
|
|
2415
2415
|
parts.push('b worktrees', 'u others');
|
|
2416
2416
|
}
|
|
2417
2417
|
parts.push('a current', 'f files');
|
|
2418
|
-
if (hasWorktrees) {
|
|
2419
|
-
parts.push('w worktree');
|
|
2420
|
-
}
|
|
2421
2418
|
}
|
|
2422
2419
|
parts.push(`tab1 ${activeLabel}`);
|
|
2423
2420
|
|
|
@@ -2457,7 +2454,6 @@ function buildHelpOverlayLines(options = {}) {
|
|
|
2457
2454
|
...(hasWorktrees ? ['b focus worktrees section', 'u focus other-worktrees section'] : []),
|
|
2458
2455
|
`a focus active ${itemLabel}`,
|
|
2459
2456
|
`f focus ${itemLabel} files`,
|
|
2460
|
-
...(hasWorktrees ? ['w open worktree switcher'] : []),
|
|
2461
2457
|
'up/down or j/k move selection',
|
|
2462
2458
|
'enter expand/collapse selected folder row',
|
|
2463
2459
|
'v or space preview selected file',
|
|
@@ -2960,9 +2956,7 @@ function createDashboardApp(deps) {
|
|
|
2960
2956
|
const previewVisibleRows = Number.isFinite(terminalSize.rows) ? terminalSize.rows : (process.stdout.rows || 40);
|
|
2961
2957
|
const showErrorPanelForSections = Boolean(error) && previewVisibleRows >= 18;
|
|
2962
2958
|
const worktreeSectionEnabled = hasMultipleWorktrees(snapshot);
|
|
2963
|
-
const otherWorktreesSectionEnabled = worktreeSectionEnabled
|
|
2964
|
-
&& isSelectedWorktreeMain(snapshot)
|
|
2965
|
-
&& getEffectiveFlow(activeFlow, snapshot) !== 'simple';
|
|
2959
|
+
const otherWorktreesSectionEnabled = worktreeSectionEnabled;
|
|
2966
2960
|
|
|
2967
2961
|
const getAvailableSections = useCallback((viewId) => {
|
|
2968
2962
|
const base = getSectionOrderForView(viewId, {
|
|
@@ -3275,13 +3269,6 @@ function createDashboardApp(deps) {
|
|
|
3275
3269
|
return;
|
|
3276
3270
|
}
|
|
3277
3271
|
|
|
3278
|
-
if (ui.view === 'runs' && input === 'w' && worktreeSectionEnabled) {
|
|
3279
|
-
setWorktreeOverlayIndex(clampIndex(worktreeItems.findIndex((item) => item.id === selectedWorktreeId), worktreeItems.length || 1));
|
|
3280
|
-
setWorktreeOverlayOpen(true);
|
|
3281
|
-
setPaneFocus('main');
|
|
3282
|
-
return;
|
|
3283
|
-
}
|
|
3284
|
-
|
|
3285
3272
|
if ((input === ']' || input === 'm') && availableFlowIds.length > 1) {
|
|
3286
3273
|
snapshotHashRef.current = safeJsonHash(null);
|
|
3287
3274
|
errorHashRef.current = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.51",
|
|
4
4
|
"description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|