@pellux/goodvibes-tui 0.19.59 → 0.19.61
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/CHANGELOG.md +52 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +2398 -2086
- package/package.json +2 -2
- package/src/audio/player.ts +1 -1
- package/src/audio/spoken-turn-controller.ts +5 -5
- package/src/audio/spoken-turn-model-routing.ts +3 -3
- package/src/audio/spoken-turn-wiring.ts +3 -3
- package/src/cli/bundle-command.ts +3 -3
- package/src/cli/entrypoint.ts +9 -8
- package/src/cli/management-commands.ts +6 -6
- package/src/cli/management.ts +17 -16
- package/src/cli/provider-auth-routes.ts +1 -1
- package/src/cli/service-posture.ts +2 -2
- package/src/cli/status.ts +4 -3
- package/src/cli/surface-command.ts +1 -1
- package/src/config/index.ts +12 -11
- package/src/config/provider-model.ts +23 -0
- package/src/config/secret-config.ts +1 -1
- package/src/config/secrets.ts +3 -3
- package/src/core/composer-state.ts +1 -1
- package/src/core/conversation-rendering.ts +3 -3
- package/src/core/conversation.ts +10 -10
- package/src/core/orchestrator.ts +1 -1
- package/src/core/system-message-router.ts +3 -3
- package/src/daemon/cli.ts +19 -19
- package/src/daemon/safe-serve.ts +2 -2
- package/src/input/bookmark-modal.ts +1 -1
- package/src/input/command-registry.ts +31 -31
- package/src/input/commands/control-room-runtime.ts +3 -3
- package/src/input/commands/conversation-runtime.ts +1 -1
- package/src/input/commands/diff-runtime.ts +1 -1
- package/src/input/commands/discovery-runtime.ts +2 -2
- package/src/input/commands/eval.ts +6 -6
- package/src/input/commands/git-runtime.ts +2 -2
- package/src/input/commands/guidance-runtime.ts +3 -3
- package/src/input/commands/health-runtime.ts +10 -10
- package/src/input/commands/incident-runtime.ts +1 -1
- package/src/input/commands/integration-runtime.ts +2 -2
- package/src/input/commands/intelligence-runtime.ts +3 -3
- package/src/input/commands/knowledge.ts +1 -1
- package/src/input/commands/local-auth-runtime.ts +1 -1
- package/src/input/commands/local-provider-runtime.ts +3 -4
- package/src/input/commands/local-runtime.ts +6 -6
- package/src/input/commands/local-setup-review.ts +3 -3
- package/src/input/commands/local-setup.ts +3 -3
- package/src/input/commands/managed-runtime.ts +9 -8
- package/src/input/commands/marketplace-runtime.ts +1 -1
- package/src/input/commands/mcp-runtime.ts +1 -1
- package/src/input/commands/operator-panel-runtime.ts +1 -1
- package/src/input/commands/operator-runtime.ts +5 -5
- package/src/input/commands/platform-access-runtime.ts +2 -2
- package/src/input/commands/platform-sandbox-qemu.ts +2 -2
- package/src/input/commands/platform-sandbox-runtime.ts +6 -6
- package/src/input/commands/platform-sandbox-session.ts +2 -2
- package/src/input/commands/policy-dispatch.ts +6 -6
- package/src/input/commands/product-runtime.ts +2 -2
- package/src/input/commands/profile-sync-runtime.ts +2 -2
- package/src/input/commands/provider-accounts-runtime.ts +1 -1
- package/src/input/commands/provider.ts +3 -3
- package/src/input/commands/quit-shared.ts +2 -2
- package/src/input/commands/recall-bundle.ts +2 -2
- package/src/input/commands/recall-capture.ts +2 -2
- package/src/input/commands/recall-query.ts +2 -2
- package/src/input/commands/recall-shared.ts +2 -2
- package/src/input/commands/remote-runtime-setup.ts +2 -2
- package/src/input/commands/remote-runtime.ts +1 -1
- package/src/input/commands/replay-runtime.ts +1 -1
- package/src/input/commands/runtime-services.ts +11 -11
- package/src/input/commands/schedule-runtime.ts +6 -6
- package/src/input/commands/services-runtime.ts +1 -1
- package/src/input/commands/session-content.ts +5 -5
- package/src/input/commands/session-workflow.ts +5 -5
- package/src/input/commands/session.ts +2 -2
- package/src/input/commands/settings-sync-runtime.ts +5 -4
- package/src/input/commands/share-runtime.ts +3 -3
- package/src/input/commands/shell-core.ts +4 -5
- package/src/input/commands/skills-runtime.ts +1 -1
- package/src/input/commands/subscription-runtime.ts +7 -7
- package/src/input/commands/tasks-runtime.ts +5 -5
- package/src/input/commands/teamwork-runtime.ts +3 -3
- package/src/input/commands/teleport-runtime.ts +1 -1
- package/src/input/commands/worktree-runtime.ts +3 -3
- package/src/input/feed-context-factory.ts +1 -1
- package/src/input/file-picker.ts +1 -1
- package/src/input/handler-command-route.ts +2 -2
- package/src/input/handler-content-actions.ts +7 -7
- package/src/input/handler-feed-routes.ts +3 -3
- package/src/input/handler-feed.ts +2 -2
- package/src/input/handler-interactions.ts +1 -1
- package/src/input/handler-modal-routes.ts +1 -2
- package/src/input/handler-modal-token-routes.ts +1 -1
- package/src/input/handler-onboarding.ts +9 -6
- package/src/input/handler-picker-routes.ts +3 -3
- package/src/input/handler-shortcuts.ts +1 -1
- package/src/input/handler-ui-state.ts +1 -1
- package/src/input/handler.ts +5 -5
- package/src/input/input-history.ts +2 -2
- package/src/input/keybindings.ts +3 -3
- package/src/input/model-picker-types.ts +1 -1
- package/src/input/model-picker.ts +6 -6
- package/src/input/onboarding/handler-onboarding-routes.ts +1 -1
- package/src/input/onboarding/onboarding-runtime-status.ts +1 -1
- package/src/input/onboarding/onboarding-wizard-apply.ts +2 -2
- package/src/input/onboarding/onboarding-wizard-external-surfaces.ts +1 -1
- package/src/input/panel-integration-actions.ts +1 -1
- package/src/input/profile-picker-modal.ts +5 -5
- package/src/input/session-picker-modal.ts +2 -2
- package/src/input/settings-modal-behavior.ts +3 -5
- package/src/input/settings-modal-secrets.ts +4 -4
- package/src/input/settings-modal-subscriptions.ts +3 -3
- package/src/input/settings-modal-types.ts +4 -4
- package/src/input/settings-modal.ts +9 -9
- package/src/input/tts-settings-actions.ts +1 -1
- package/src/main.ts +16 -17
- package/src/panels/agent-inspector-panel.ts +4 -4
- package/src/panels/agent-logs-panel.ts +2 -2
- package/src/panels/approval-panel.ts +2 -2
- package/src/panels/builtin/operations.ts +1 -1
- package/src/panels/builtin/session.ts +2 -2
- package/src/panels/builtin/shared.ts +26 -26
- package/src/panels/context-visualizer-panel.ts +3 -3
- package/src/panels/cost-tracker-panel.ts +1 -1
- package/src/panels/debug-panel.ts +1 -1
- package/src/panels/eval-panel.ts +1 -1
- package/src/panels/forensics-panel.ts +3 -3
- package/src/panels/git-panel.ts +3 -3
- package/src/panels/hooks-panel.ts +7 -7
- package/src/panels/incident-review-panel.ts +2 -2
- package/src/panels/knowledge-panel.ts +1 -1
- package/src/panels/local-auth-panel.ts +1 -1
- package/src/panels/marketplace-panel.ts +2 -2
- package/src/panels/mcp-panel.ts +2 -2
- package/src/panels/memory-panel.ts +2 -2
- package/src/panels/ops-control-panel.ts +1 -1
- package/src/panels/ops-strategy-panel.ts +2 -2
- package/src/panels/orchestration-panel.ts +1 -1
- package/src/panels/panel-list-panel.ts +1 -1
- package/src/panels/plan-dashboard-panel.ts +1 -1
- package/src/panels/plugins-panel.ts +1 -1
- package/src/panels/policy-panel.ts +1 -1
- package/src/panels/project-planning-panel.ts +1 -1
- package/src/panels/provider-account-snapshot.ts +1 -1
- package/src/panels/provider-health-domains.ts +4 -4
- package/src/panels/provider-health-panel.ts +4 -4
- package/src/panels/provider-stats-panel.ts +1 -1
- package/src/panels/qr-panel.ts +1 -1
- package/src/panels/sandbox-panel.ts +3 -3
- package/src/panels/schedule-panel.ts +4 -4
- package/src/panels/security-panel.ts +1 -1
- package/src/panels/services-panel.ts +1 -1
- package/src/panels/session-browser-panel.ts +3 -3
- package/src/panels/settings-sync-panel.ts +1 -1
- package/src/panels/skills-panel.ts +1 -1
- package/src/panels/subscription-panel.ts +2 -2
- package/src/panels/system-messages-panel.ts +1 -1
- package/src/panels/tasks-panel.ts +5 -5
- package/src/panels/thinking-panel.ts +1 -1
- package/src/panels/token-budget-panel.ts +2 -2
- package/src/panels/tool-inspector-panel.ts +1 -1
- package/src/panels/worktree-panel.ts +6 -6
- package/src/panels/wrfc-panel.ts +4 -4
- package/src/permissions/prompt.ts +3 -3
- package/src/planning/project-planning-coordinator.ts +1 -1
- package/src/plugins/loader.ts +2 -2
- package/src/renderer/agent-detail-modal.ts +5 -5
- package/src/renderer/bookmark-modal.ts +1 -1
- package/src/renderer/git-status.ts +3 -3
- package/src/renderer/help-overlay.ts +1 -1
- package/src/renderer/live-tail-modal.ts +2 -2
- package/src/renderer/model-picker-overlay.ts +2 -2
- package/src/renderer/model-workspace.ts +1 -1
- package/src/renderer/process-modal.ts +3 -3
- package/src/renderer/qr-renderer.ts +1 -1
- package/src/renderer/semantic-diff.ts +6 -6
- package/src/renderer/syntax-highlighter.ts +3 -3
- package/src/renderer/tool-call.ts +1 -1
- package/src/runtime/bootstrap-command-context.ts +46 -46
- package/src/runtime/bootstrap-command-parts.ts +46 -47
- package/src/runtime/bootstrap-core.ts +24 -23
- package/src/runtime/bootstrap-hook-bridge.ts +14 -14
- package/src/runtime/bootstrap-shell.ts +15 -15
- package/src/runtime/bootstrap.ts +27 -27
- package/src/runtime/cloudflare-control-plane.ts +1 -1
- package/src/runtime/context.ts +13 -13
- package/src/runtime/diagnostics/panels/index.ts +14 -14
- package/src/runtime/diagnostics/panels/ops.ts +7 -7
- package/src/runtime/diagnostics/panels/panel-resources.ts +1 -1
- package/src/runtime/diagnostics/panels/policy.ts +11 -11
- package/src/runtime/index.ts +625 -163
- package/src/runtime/onboarding/apply.ts +1 -1
- package/src/runtime/onboarding/derivation.ts +3 -2
- package/src/runtime/onboarding/markers.ts +1 -1
- package/src/runtime/onboarding/snapshot.ts +3 -2
- package/src/runtime/onboarding/types.ts +2 -2
- package/src/runtime/onboarding/verify.ts +1 -1
- package/src/runtime/perf/panel-contracts.ts +2 -2
- package/src/runtime/perf/panel-health-monitor.ts +2 -2
- package/src/runtime/sandbox-public-gaps.ts +486 -0
- package/src/runtime/services.ts +114 -67
- package/src/runtime/store/domains/index.ts +50 -50
- package/src/runtime/store/index.ts +21 -20
- package/src/runtime/store/selectors/index.ts +17 -17
- package/src/runtime/store/state.ts +50 -50
- package/src/runtime/surface-feature-flags.ts +1 -3
- package/src/runtime/terminal-output-guard.ts +1 -1
- package/src/runtime/ui/index.ts +7 -7
- package/src/runtime/ui/model-picker/data-provider.ts +7 -7
- package/src/runtime/ui/model-picker/health-enrichment.ts +7 -7
- package/src/runtime/ui/model-picker/index.ts +11 -11
- package/src/runtime/ui/model-picker/types.ts +1 -1
- package/src/runtime/ui/provider-health/data-provider.ts +4 -4
- package/src/runtime/ui/provider-health/fallback-visualizer.ts +5 -3
- package/src/runtime/ui/provider-health/index.ts +7 -7
- package/src/runtime/ui/provider-health/types.ts +1 -1
- package/src/runtime/ui-events.ts +1 -1
- package/src/runtime/ui-read-model-helpers.ts +1 -1
- package/src/runtime/ui-read-models-observability-maintenance.ts +1 -1
- package/src/runtime/ui-read-models-observability-options.ts +1 -1
- package/src/runtime/ui-read-models-observability-remote.ts +1 -1
- package/src/runtime/ui-read-models-observability-security.ts +1 -1
- package/src/runtime/ui-read-models-observability-system.ts +1 -1
- package/src/runtime/ui-read-models-observability.ts +1 -1
- package/src/runtime/ui-read-models.ts +8 -8
- package/src/runtime/ui-service-queries.ts +1 -1
- package/src/runtime/ui-services.ts +8 -8
- package/src/scripts/process-messages.ts +1 -1
- package/src/shell/blocking-input.ts +2 -2
- package/src/shell/ui-openers.ts +8 -7
- package/src/tools/index.ts +1 -1
- package/src/utils/clipboard.ts +3 -3
- package/src/version.ts +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
3
|
-
import { listHookPointContracts } from '@pellux/goodvibes-sdk/platform/hooks
|
|
4
|
-
import type { HookDispatcher } from '@pellux/goodvibes-sdk/platform/hooks
|
|
5
|
-
import type { HookPointContract } from '@pellux/goodvibes-sdk/platform/hooks
|
|
6
|
-
import type { HookActivityRecord, HookActivityTracker } from '@pellux/goodvibes-sdk/platform/hooks
|
|
7
|
-
import type { HookAuthoringAction, HookSimulationResult } from '@pellux/goodvibes-sdk/platform/hooks
|
|
8
|
-
import type { HookChain, HookDefinition } from '@pellux/goodvibes-sdk/platform/hooks
|
|
9
|
-
import type { HookWorkbench } from '@pellux/goodvibes-sdk/platform/hooks
|
|
3
|
+
import { listHookPointContracts } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
4
|
+
import type { HookDispatcher } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
5
|
+
import type { HookPointContract } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
6
|
+
import type { HookActivityRecord, HookActivityTracker } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
7
|
+
import type { HookAuthoringAction, HookSimulationResult } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
8
|
+
import type { HookChain, HookDefinition } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
9
|
+
import type { HookWorkbench } from '@pellux/goodvibes-sdk/platform/hooks';
|
|
10
10
|
import { truncateDisplay } from '../utils/terminal-width.ts';
|
|
11
11
|
import {
|
|
12
12
|
buildPanelLine,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
|
-
import type { ForensicsRegistry } from '
|
|
2
|
+
import type { ForensicsRegistry } from '@/runtime/index.ts';
|
|
3
3
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
4
4
|
import {
|
|
5
5
|
buildBodyText,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
DEFAULT_PANEL_PALETTE,
|
|
13
13
|
type PanelPalette,
|
|
14
14
|
} from './polish.ts';
|
|
15
|
-
import type { FailureReport } from '
|
|
15
|
+
import type { FailureReport } from '@/runtime/index.ts';
|
|
16
16
|
|
|
17
17
|
const C = {
|
|
18
18
|
...DEFAULT_PANEL_PALETTE,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
3
3
|
import { type ConfirmState, handleConfirmInput, renderConfirmLines } from './confirm-state.ts';
|
|
4
|
-
import type { MemoryClass, MemoryRecord, MemoryRegistry, MemoryReviewState } from '@pellux/goodvibes-sdk/platform/state
|
|
4
|
+
import type { MemoryClass, MemoryRecord, MemoryRegistry, MemoryReviewState } from '@pellux/goodvibes-sdk/platform/state';
|
|
5
5
|
import {
|
|
6
6
|
buildBodyText,
|
|
7
7
|
buildEmptyState,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
DEFAULT_PANEL_PALETTE,
|
|
12
12
|
type PanelPalette,
|
|
13
13
|
} from './polish.ts';
|
|
14
|
-
import type { LocalAuthSnapshot } from '@pellux/goodvibes-sdk/platform/security
|
|
14
|
+
import type { LocalAuthSnapshot } from '@pellux/goodvibes-sdk/platform/security';
|
|
15
15
|
import type { LocalAuthInspectionQuery } from '../runtime/ui-service-queries.ts';
|
|
16
16
|
|
|
17
17
|
const C = {
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
reviewEcosystemCatalogEntry,
|
|
17
17
|
type EcosystemCatalogEntry,
|
|
18
18
|
type EcosystemEntryKind,
|
|
19
|
-
} from '
|
|
19
|
+
} from '@/runtime/index.ts';
|
|
20
20
|
import type { UiMarketplaceSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
|
|
21
21
|
|
|
22
22
|
const C = {
|
|
@@ -188,7 +188,7 @@ export class MarketplacePanel extends ScrollableListPanel<MarketplaceRow> {
|
|
|
188
188
|
[selectedRow.entry.source.slice(0, Math.max(0, width - 11)), C.value],
|
|
189
189
|
]));
|
|
190
190
|
selectedLines.push(buildKeyValueLine(width, [
|
|
191
|
-
{ label: 'Compatibility', value: review.compatibility.status, valueColor: review.compatibility.status === '
|
|
191
|
+
{ label: 'Compatibility', value: review.compatibility.status, valueColor: review.compatibility.status === 'supported' ? C.good : C.warn },
|
|
192
192
|
{ label: 'Risk', value: review.riskLevel, valueColor: review.riskLevel === 'low' ? C.good : C.warn },
|
|
193
193
|
{ label: 'State', value: selectedRow.installed ? 'installed' : 'curated', valueColor: statusColor(selectedRow.installed) },
|
|
194
194
|
], C));
|
package/src/panels/mcp-panel.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
3
|
-
import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp
|
|
4
|
-
import type { McpDecisionRecord } from '
|
|
3
|
+
import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp';
|
|
4
|
+
import type { McpDecisionRecord } from '@/runtime/index.ts';
|
|
5
5
|
|
|
6
6
|
type McpServerSecurityEntry = ReturnType<McpRegistry['listServerSecurity']>[number];
|
|
7
7
|
import { truncateDisplay } from '../utils/terminal-width.ts';
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { Line } from '../types/grid.ts';
|
|
8
|
-
import type { MemoryRegistry } from '@pellux/goodvibes-sdk/platform/state
|
|
9
|
-
import type { MemoryRecord, MemoryClass } from '@pellux/goodvibes-sdk/platform/state
|
|
8
|
+
import type { MemoryRegistry } from '@pellux/goodvibes-sdk/platform/state';
|
|
9
|
+
import type { MemoryRecord, MemoryClass } from '@pellux/goodvibes-sdk/platform/state';
|
|
10
10
|
import { SearchableListPanel } from './scrollable-list-panel.ts';
|
|
11
11
|
import {
|
|
12
12
|
buildBodyText,
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* Open via Ctrl+O keybind or `/ops view` command.
|
|
9
9
|
*/
|
|
10
10
|
import type { Line } from '../types/grid.ts';
|
|
11
|
-
import type { OpsEvent } from '
|
|
11
|
+
import type { OpsEvent } from '@/runtime/index.ts';
|
|
12
12
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
13
13
|
import type { OpsAuditEntry } from '../runtime/diagnostics/panels/ops.ts';
|
|
14
14
|
import { OpsPanel } from '../runtime/diagnostics/panels/ops.ts';
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
import { BasePanel } from './base-panel.ts';
|
|
11
11
|
import type { Line } from '../types/grid.ts';
|
|
12
|
-
import type { PlannerDecision, ExecutionStrategy } from '@pellux/goodvibes-sdk/platform/core
|
|
13
|
-
import type { PlannerEvent } from '
|
|
12
|
+
import type { PlannerDecision, ExecutionStrategy } from '@pellux/goodvibes-sdk/platform/core';
|
|
13
|
+
import type { PlannerEvent } from '@/runtime/index.ts';
|
|
14
14
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
15
15
|
import type { OpsStrategyQuery } from '../runtime/ui-service-queries.ts';
|
|
16
16
|
import {
|
|
@@ -10,7 +10,7 @@ import type { Line } from '../types/grid.ts';
|
|
|
10
10
|
import { createEmptyLine } from '../types/grid.ts';
|
|
11
11
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
12
12
|
import type { UiOrchestrationSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
|
|
13
|
-
import type { OrchestrationGraphRecord } from '
|
|
13
|
+
import type { OrchestrationGraphRecord } from '@/runtime/index.ts';
|
|
14
14
|
import {
|
|
15
15
|
buildEmptyState,
|
|
16
16
|
buildGuidanceLine,
|
|
@@ -39,7 +39,7 @@ import {
|
|
|
39
39
|
isPanelSearchCommit,
|
|
40
40
|
isPanelSearchPrintable,
|
|
41
41
|
} from './search-focus.ts';
|
|
42
|
-
import { logger } from '@pellux/goodvibes-sdk/platform/utils
|
|
42
|
+
import { logger } from '@pellux/goodvibes-sdk/platform/utils';
|
|
43
43
|
|
|
44
44
|
// ── Colour palette ────────────────────────────────────────────────────────────
|
|
45
45
|
const C = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
|
-
import type { ExecutionPlan, PlanItem, PlanItemStatus } from '@pellux/goodvibes-sdk/platform/core
|
|
2
|
+
import type { ExecutionPlan, PlanItem, PlanItemStatus } from '@pellux/goodvibes-sdk/platform/core';
|
|
3
3
|
import { BasePanel } from './base-panel.ts';
|
|
4
4
|
import type { PlanDashboardQuery } from '../runtime/ui-service-queries.ts';
|
|
5
5
|
import {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
4
|
-
import type { PluginManagerObserver, PluginStatus } from '@pellux/goodvibes-sdk/platform/plugins
|
|
4
|
+
import type { PluginManagerObserver, PluginStatus } from '@pellux/goodvibes-sdk/platform/plugins';
|
|
5
5
|
import {
|
|
6
6
|
buildEmptyState,
|
|
7
7
|
buildPanelLine,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { BasePanel } from './base-panel.ts';
|
|
4
|
-
import type { PolicyRuntimeState } from '
|
|
4
|
+
import type { PolicyRuntimeState } from '@/runtime/index.ts';
|
|
5
5
|
import type { PolicyPanelSnapshot } from '../runtime/diagnostics/panels/policy.ts';
|
|
6
6
|
import {
|
|
7
7
|
buildPanelLine,
|
|
@@ -5,7 +5,7 @@ import type {
|
|
|
5
5
|
ProjectPlanningService,
|
|
6
6
|
ProjectPlanningState,
|
|
7
7
|
ProjectPlanningStatus,
|
|
8
|
-
} from '@pellux/goodvibes-sdk/platform/knowledge
|
|
8
|
+
} from '@pellux/goodvibes-sdk/platform/knowledge';
|
|
9
9
|
import type { Line } from '../types/grid.ts';
|
|
10
10
|
import { BasePanel } from './base-panel.ts';
|
|
11
11
|
import {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config
|
|
1
|
+
import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config';
|
|
2
2
|
import type {
|
|
3
3
|
ProviderAccountInspectionQuery,
|
|
4
4
|
} from '../runtime/ui-service-queries.ts';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config
|
|
2
|
-
import { evaluateSessionMaintenance } from '
|
|
1
|
+
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
|
|
2
|
+
import { evaluateSessionMaintenance } from '@/runtime/index.ts';
|
|
3
3
|
import type {
|
|
4
4
|
UiContinuitySnapshot,
|
|
5
5
|
UiIntelligenceSnapshot,
|
|
@@ -193,7 +193,7 @@ export function buildProviderHealthDomainSummaries(
|
|
|
193
193
|
});
|
|
194
194
|
|
|
195
195
|
const worktreeSummary = worktrees.summary;
|
|
196
|
-
const worktreeIssues = worktreeSummary.discard + worktreeSummary.
|
|
196
|
+
const worktreeIssues = worktreeSummary.discard + worktreeSummary.pendingCleanup + worktreeSummary.paused;
|
|
197
197
|
summaries.push({
|
|
198
198
|
name: 'worktrees',
|
|
199
199
|
level: worktreeIssues > 0 ? 'warn' : worktreeSummary.total > 0 ? 'good' : 'info',
|
|
@@ -203,7 +203,7 @@ export function buildProviderHealthDomainSummaries(
|
|
|
203
203
|
next: worktreeIssues > 0 ? '/worktree recover <session|task> <id>' : '/worktree review',
|
|
204
204
|
details: [
|
|
205
205
|
worktreeSummary.paused > 0 ? `${worktreeSummary.paused} paused worktree(s)` : '',
|
|
206
|
-
worktreeSummary.
|
|
206
|
+
worktreeSummary.pendingCleanup > 0 ? `${worktreeSummary.pendingCleanup} cleanup pending` : '',
|
|
207
207
|
worktreeSummary.discard > 0 ? `${worktreeSummary.discard} marked discard` : '',
|
|
208
208
|
].filter(Boolean),
|
|
209
209
|
nextSteps: worktreeIssues > 0
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config
|
|
1
|
+
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
|
|
2
2
|
import { BasePanel } from './base-panel.ts';
|
|
3
3
|
import { createEmptyLine, createStyledCell, type Line } from '../types/grid.ts';
|
|
4
|
-
import type { ProviderAuthRouteDescriptor } from '@pellux/goodvibes-sdk/platform/providers
|
|
5
|
-
import type { ProviderEvent, TurnEvent } from '
|
|
4
|
+
import type { ProviderAuthRouteDescriptor } from '@pellux/goodvibes-sdk/platform/providers';
|
|
5
|
+
import type { ProviderEvent, TurnEvent } from '@/runtime/index.ts';
|
|
6
6
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
7
7
|
import {
|
|
8
8
|
type ProviderRuntimeInspectionQuery,
|
|
@@ -24,7 +24,7 @@ import type {
|
|
|
24
24
|
UiSettingsSnapshot,
|
|
25
25
|
UiWorktreeSnapshot,
|
|
26
26
|
} from '../runtime/ui-read-models.ts';
|
|
27
|
-
import { evaluateSessionMaintenance } from '
|
|
27
|
+
import { evaluateSessionMaintenance } from '@/runtime/index.ts';
|
|
28
28
|
import {
|
|
29
29
|
buildBodyText,
|
|
30
30
|
buildDetailBlock,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BasePanel } from './base-panel.ts';
|
|
2
2
|
import type { Line } from '../types/grid.ts';
|
|
3
|
-
import type { ProviderEvent, TurnEvent } from '
|
|
3
|
+
import type { ProviderEvent, TurnEvent } from '@/runtime/index.ts';
|
|
4
4
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
5
5
|
import type { UiProvidersSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
|
|
6
6
|
import {
|
package/src/panels/qr-panel.ts
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
DEFAULT_PANEL_PALETTE,
|
|
7
7
|
} from './polish.ts';
|
|
8
8
|
import { renderQrMatrix, generateQrMatrix } from '../renderer/qr-renderer.ts';
|
|
9
|
-
import { encodeConnectionPayload } from '@pellux/goodvibes-sdk/platform/pairing
|
|
9
|
+
import { encodeConnectionPayload } from '@pellux/goodvibes-sdk/platform/pairing';
|
|
10
10
|
|
|
11
11
|
const C = {
|
|
12
12
|
...DEFAULT_PANEL_PALETTE,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { BasePanel } from './base-panel.ts';
|
|
4
|
-
import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config
|
|
5
|
-
import { buildSandboxReview, listSandboxPresets, listSandboxProfiles } from '
|
|
6
|
-
import type { SandboxSessionRegistry } from '
|
|
4
|
+
import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
|
|
5
|
+
import { buildSandboxReview, listSandboxPresets, listSandboxProfiles } from '@/runtime/index.ts';
|
|
6
|
+
import type { SandboxSessionRegistry } from '@/runtime/index.ts';
|
|
7
7
|
import {
|
|
8
8
|
buildBodyText,
|
|
9
9
|
buildEmptyState,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { BasePanel } from './base-panel.ts';
|
|
2
2
|
import { type Line } from '../types/grid.ts';
|
|
3
|
-
import type { AutomationManager } from '@pellux/goodvibes-sdk/platform/automation
|
|
4
|
-
import type { AutomationJob } from '@pellux/goodvibes-sdk/platform/automation
|
|
5
|
-
import type { AutomationRun } from '@pellux/goodvibes-sdk/platform/automation
|
|
6
|
-
import type { AutomationScheduleDefinition } from '@pellux/goodvibes-sdk/platform/automation
|
|
3
|
+
import type { AutomationManager } from '@pellux/goodvibes-sdk/platform/automation';
|
|
4
|
+
import type { AutomationJob } from '@pellux/goodvibes-sdk/platform/automation';
|
|
5
|
+
import type { AutomationRun } from '@pellux/goodvibes-sdk/platform/automation';
|
|
6
|
+
import type { AutomationScheduleDefinition } from '@pellux/goodvibes-sdk/platform/automation';
|
|
7
7
|
import {
|
|
8
8
|
buildEmptyState,
|
|
9
9
|
buildPanelLine,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
3
|
-
import type { TokenAuditResult } from '@pellux/goodvibes-sdk/platform/security
|
|
3
|
+
import type { TokenAuditResult } from '@pellux/goodvibes-sdk/platform/security';
|
|
4
4
|
import type { UiReadModel, UiSecuritySnapshot } from '../runtime/ui-read-models.ts';
|
|
5
5
|
import {
|
|
6
6
|
buildEmptyState,
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
type ServiceConfig,
|
|
6
6
|
type ServiceInspection,
|
|
7
7
|
type ServiceConnectionTestResult,
|
|
8
|
-
} from '@pellux/goodvibes-sdk/platform/config
|
|
8
|
+
} from '@pellux/goodvibes-sdk/platform/config';
|
|
9
9
|
import type { ServiceInspectionQuery, SubscriptionAccessQuery } from '../runtime/ui-service-queries.ts';
|
|
10
10
|
import {
|
|
11
11
|
buildEmptyState,
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
import type { Line } from '../types/grid.ts';
|
|
6
6
|
import { BasePanel } from './base-panel.ts';
|
|
7
|
-
import type { SessionInfo } from '@pellux/goodvibes-sdk/platform/sessions
|
|
8
|
-
import { logger } from '@pellux/goodvibes-sdk/platform/utils
|
|
7
|
+
import type { SessionInfo } from '@pellux/goodvibes-sdk/platform/sessions';
|
|
8
|
+
import { logger } from '@pellux/goodvibes-sdk/platform/utils';
|
|
9
9
|
import type { SessionBrowserQuery } from '../runtime/ui-service-queries.ts';
|
|
10
10
|
import {
|
|
11
11
|
buildEmptyState,
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
type PanelWorkspaceSection,
|
|
19
19
|
} from './polish.ts';
|
|
20
20
|
import { truncateDisplay } from '../utils/terminal-width.ts';
|
|
21
|
-
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils
|
|
21
|
+
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
|
|
22
22
|
import {
|
|
23
23
|
getPanelSearchFocusTransition,
|
|
24
24
|
isPanelSearchBackspace,
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
DEFAULT_PANEL_PALETTE,
|
|
11
11
|
type PanelPalette,
|
|
12
12
|
} from './polish.ts';
|
|
13
|
-
import { getSettingsControlPlaneSnapshot } from '
|
|
13
|
+
import { getSettingsControlPlaneSnapshot } from '@/runtime/index.ts';
|
|
14
14
|
import type { ConfigManager } from '../config/index.ts';
|
|
15
15
|
|
|
16
16
|
const C = {
|
|
@@ -6,7 +6,7 @@ import { type ConfirmState, handleConfirmInput, renderConfirmLines } from './con
|
|
|
6
6
|
import { getDisplayWidth, truncateDisplay } from '../utils/terminal-width.ts';
|
|
7
7
|
import { SearchableListPanel } from './scrollable-list-panel.ts';
|
|
8
8
|
import type { ComponentHealthMonitor } from '../runtime/perf/panel-health-monitor.ts';
|
|
9
|
-
import type { ShellPathService } from '
|
|
9
|
+
import type { ShellPathService } from '@/runtime/index.ts';
|
|
10
10
|
import {
|
|
11
11
|
buildPanelLine,
|
|
12
12
|
buildPanelWorkspace,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
4
|
-
import type { ProviderSubscription, PendingSubscriptionLogin } from '@pellux/goodvibes-sdk/platform/config
|
|
5
|
-
import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config
|
|
4
|
+
import type { ProviderSubscription, PendingSubscriptionLogin } from '@pellux/goodvibes-sdk/platform/config';
|
|
5
|
+
import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config';
|
|
6
6
|
import type { ServiceInspectionQuery, SubscriptionAccessQuery } from '../runtime/ui-service-queries.ts';
|
|
7
7
|
import {
|
|
8
8
|
buildEmptyState,
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
type PanelPalette,
|
|
25
25
|
type PanelWorkspaceSection,
|
|
26
26
|
} from './polish.ts';
|
|
27
|
-
import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config
|
|
27
|
+
import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
|
|
28
28
|
|
|
29
29
|
const MAX_MESSAGES = 500;
|
|
30
30
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
4
|
-
import type { RuntimeTask, TaskLifecycleState } from '
|
|
5
|
-
import type { ManagedWorktreeMeta } from '
|
|
4
|
+
import type { RuntimeTask, TaskLifecycleState } from '@/runtime/index.ts';
|
|
5
|
+
import type { ManagedWorktreeMeta } from '@/runtime/index.ts';
|
|
6
6
|
import type { UiReadModel, UiTasksSnapshot, UiWorktreeSnapshot } from '../runtime/ui-read-models.ts';
|
|
7
7
|
import {
|
|
8
8
|
buildDetailBlock,
|
|
@@ -118,7 +118,7 @@ interface TaskWorktreeAttachmentReview {
|
|
|
118
118
|
readonly paused: number;
|
|
119
119
|
readonly kept: number;
|
|
120
120
|
readonly discard: number;
|
|
121
|
-
readonly
|
|
121
|
+
readonly pendingCleanup: number;
|
|
122
122
|
readonly records: readonly ManagedWorktreeMeta[];
|
|
123
123
|
}
|
|
124
124
|
|
|
@@ -133,7 +133,7 @@ function reviewTaskWorktreeAttachments(
|
|
|
133
133
|
paused: summary.paused + (record.state === 'paused' ? 1 : 0),
|
|
134
134
|
kept: summary.kept + (record.state === 'kept' ? 1 : 0),
|
|
135
135
|
discard: summary.discard + (record.state === 'discard' ? 1 : 0),
|
|
136
|
-
|
|
136
|
+
pendingCleanup: summary.pendingCleanup + (record.state === 'pending-cleanup' ? 1 : 0),
|
|
137
137
|
records: [...summary.records, record],
|
|
138
138
|
}), {
|
|
139
139
|
total: 0,
|
|
@@ -141,7 +141,7 @@ function reviewTaskWorktreeAttachments(
|
|
|
141
141
|
paused: 0,
|
|
142
142
|
kept: 0,
|
|
143
143
|
discard: 0,
|
|
144
|
-
|
|
144
|
+
pendingCleanup: 0,
|
|
145
145
|
records: [],
|
|
146
146
|
});
|
|
147
147
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import type { Line } from '../types/grid.ts';
|
|
6
6
|
import { BasePanel } from './base-panel.ts';
|
|
7
|
-
import type { TurnEvent } from '
|
|
7
|
+
import type { TurnEvent } from '@/runtime/index.ts';
|
|
8
8
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
9
9
|
import {
|
|
10
10
|
buildEmptyState,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config
|
|
1
|
+
import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
|
|
2
2
|
import { BasePanel } from './base-panel.ts';
|
|
3
3
|
import { createEmptyLine, createStyledCell, type Line } from '../types/grid.ts';
|
|
4
4
|
import type { Orchestrator } from '../core/orchestrator';
|
|
5
|
-
import { evaluateSessionMaintenance } from '
|
|
5
|
+
import { evaluateSessionMaintenance } from '@/runtime/index.ts';
|
|
6
6
|
import type { UiReadModel, UiSessionSnapshot } from '../runtime/ui-read-models.ts';
|
|
7
7
|
import type { SessionMemoryQuery } from '../runtime/ui-service-queries.ts';
|
|
8
8
|
import {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import type { Line } from '../types/grid.ts';
|
|
6
6
|
import { BasePanel } from './base-panel.ts';
|
|
7
|
-
import type { ToolEvent, TurnEvent } from '
|
|
7
|
+
import type { ToolEvent, TurnEvent } from '@/runtime/index.ts';
|
|
8
8
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
9
9
|
import {
|
|
10
10
|
buildEmptyState,
|
|
@@ -2,7 +2,7 @@ import type { Line } from '../types/grid.ts';
|
|
|
2
2
|
import { createEmptyLine } from '../types/grid.ts';
|
|
3
3
|
import { ScrollableListPanel } from './scrollable-list-panel.ts';
|
|
4
4
|
import { buildKeyValueLine, buildPanelLine, buildPanelWorkspace, DEFAULT_PANEL_PALETTE, resolvePrimaryScrollableSection, type PanelWorkspaceSection } from './polish.ts';
|
|
5
|
-
import { summarizeWorktreeOwnership, type WorktreeRegistry, type WorktreeStatusRecord } from '
|
|
5
|
+
import { summarizeWorktreeOwnership, type WorktreeRegistry, type WorktreeStatusRecord } from '@/runtime/index.ts';
|
|
6
6
|
|
|
7
7
|
const C = {
|
|
8
8
|
...DEFAULT_PANEL_PALETTE,
|
|
@@ -90,7 +90,7 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
|
|
|
90
90
|
{ label: 'total', value: String(summary.total), valueColor: C.value },
|
|
91
91
|
{ label: 'active', value: String(summary.active), valueColor: C.ok },
|
|
92
92
|
{ label: 'paused', value: String(summary.paused), valueColor: summary.paused > 0 ? C.warn : C.dim },
|
|
93
|
-
{ label: 'cleanup', value: String(summary.
|
|
93
|
+
{ label: 'cleanup', value: String(summary.pendingCleanup), valueColor: summary.pendingCleanup > 0 ? C.warn : C.dim },
|
|
94
94
|
], C),
|
|
95
95
|
buildKeyValueLine(width, [
|
|
96
96
|
{ label: 'session attached', value: String(summary.sessionAttached), valueColor: summary.sessionAttached > 0 ? C.info : C.dim },
|
|
@@ -104,10 +104,10 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
|
|
|
104
104
|
title: 'Next Actions',
|
|
105
105
|
lines: [
|
|
106
106
|
buildPanelLine(width, [[
|
|
107
|
-
summary.
|
|
108
|
-
? ' Review cleanup
|
|
107
|
+
summary.pendingCleanup > 0 || summary.discard > 0
|
|
108
|
+
? ' Review pending-cleanup and discard-marked worktrees before they drift from orchestrator ownership.'
|
|
109
109
|
: ' Worktree ownership is healthy. Use the task and session links below for restore, merge, or cleanup review.',
|
|
110
|
-
summary.
|
|
110
|
+
summary.pendingCleanup > 0 || summary.discard > 0 ? C.warn : C.dim,
|
|
111
111
|
]]),
|
|
112
112
|
buildPanelLine(width, [[' /worktree task <task-id> /worktree session <session-id> /worktree inspect <path>', C.info]]),
|
|
113
113
|
],
|
|
@@ -129,7 +129,7 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
|
|
|
129
129
|
buildPanelLine(width, [[
|
|
130
130
|
selected.state === 'paused'
|
|
131
131
|
? ` Next: /worktree resume ${selected.path}`
|
|
132
|
-
: selected.state === 'discard' || selected.state === 'cleanup
|
|
132
|
+
: selected.state === 'discard' || selected.state === 'pending-cleanup'
|
|
133
133
|
? ` Next: /worktree cleanup ${selected.path}`
|
|
134
134
|
: selected.taskId
|
|
135
135
|
? ` Next: /worktree task ${selected.taskId}`
|
package/src/panels/wrfc-panel.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { Line } from '../types/grid.ts';
|
|
2
|
-
import type { WrfcChain, WrfcState, QualityGateResult } from '@pellux/goodvibes-sdk/platform/agents
|
|
3
|
-
import type { Constraint, ConstraintFinding } from '@pellux/goodvibes-sdk/platform/agents
|
|
4
|
-
import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents
|
|
2
|
+
import type { WrfcChain, WrfcState, QualityGateResult } from '@pellux/goodvibes-sdk/platform/agents';
|
|
3
|
+
import type { Constraint, ConstraintFinding } from '@pellux/goodvibes-sdk/platform/agents';
|
|
4
|
+
import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents';
|
|
5
5
|
import { BasePanel } from './base-panel.ts';
|
|
6
|
-
import type { WorkflowEvent } from '
|
|
6
|
+
import type { WorkflowEvent } from '@/runtime/index.ts';
|
|
7
7
|
import type { UiEventFeed } from '../runtime/ui-events.ts';
|
|
8
8
|
import {
|
|
9
9
|
buildPanelLine,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type Line } from '../types/grid.ts';
|
|
2
2
|
import { UIFactory } from '../renderer/ui-factory.ts';
|
|
3
|
-
import type { PermissionCategory, PermissionRequestAnalysis } from '@pellux/goodvibes-sdk/platform/permissions
|
|
4
|
-
import { buildPermissionApprovalBrief, getDisplayArg } from '@pellux/goodvibes-sdk/platform/permissions
|
|
3
|
+
import type { PermissionCategory, PermissionRequestAnalysis } from '@pellux/goodvibes-sdk/platform/permissions';
|
|
4
|
+
import { buildPermissionApprovalBrief, getDisplayArg } from '@pellux/goodvibes-sdk/platform/permissions';
|
|
5
5
|
|
|
6
|
-
import type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions
|
|
6
|
+
import type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions';
|
|
7
7
|
export type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest };
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -3,7 +3,7 @@ import type {
|
|
|
3
3
|
ProjectPlanningQuestion,
|
|
4
4
|
ProjectPlanningService,
|
|
5
5
|
ProjectPlanningState,
|
|
6
|
-
} from '@pellux/goodvibes-sdk/platform/knowledge
|
|
6
|
+
} from '@pellux/goodvibes-sdk/platform/knowledge';
|
|
7
7
|
|
|
8
8
|
export interface ProjectPlanningCoordinatorOptions {
|
|
9
9
|
readonly service: ProjectPlanningService;
|
package/src/plugins/loader.ts
CHANGED
|
@@ -4,7 +4,7 @@ export {
|
|
|
4
4
|
discoverPlugins,
|
|
5
5
|
loadPlugin,
|
|
6
6
|
unloadPlugin,
|
|
7
|
-
} from '@pellux/goodvibes-sdk/platform/plugins
|
|
7
|
+
} from '@pellux/goodvibes-sdk/platform/plugins';
|
|
8
8
|
export type {
|
|
9
9
|
PluginPathOptions,
|
|
10
10
|
PluginManifest,
|
|
@@ -12,4 +12,4 @@ export type {
|
|
|
12
12
|
LoadedPlugin,
|
|
13
13
|
DiscoveredPlugin,
|
|
14
14
|
PluginLoaderDeps,
|
|
15
|
-
} from '@pellux/goodvibes-sdk/platform/plugins
|
|
15
|
+
} from '@pellux/goodvibes-sdk/platform/plugins';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { readFile } from 'fs/promises';
|
|
2
2
|
import { type Line } from '../types/grid.ts';
|
|
3
3
|
import { ModalFactory } from './modal-factory.ts';
|
|
4
|
-
import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools
|
|
5
|
-
import type { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents
|
|
6
|
-
import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents
|
|
4
|
+
import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools';
|
|
5
|
+
import type { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents';
|
|
6
|
+
import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents';
|
|
7
7
|
import { formatDuration } from './modal-utils.ts';
|
|
8
|
-
import { logger } from '@pellux/goodvibes-sdk/platform/utils
|
|
8
|
+
import { logger } from '@pellux/goodvibes-sdk/platform/utils';
|
|
9
9
|
import { getOverlaySurfaceMetrics, getStableOverlayContentRows } from './overlay-viewport.ts';
|
|
10
|
-
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils
|
|
10
|
+
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
|
|
11
11
|
|
|
12
12
|
// ─── Constants ────────────────────────────────────────────────────────────────
|
|
13
13
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
import { type Line } from '../types/grid.ts';
|
|
11
11
|
import { ModalFactory } from './modal-factory.ts';
|
|
12
12
|
import { BookmarkModal } from '../input/bookmark-modal.ts';
|
|
13
|
-
import type { BookmarkEntry } from '@pellux/goodvibes-sdk/platform/bookmarks
|
|
13
|
+
import type { BookmarkEntry } from '@pellux/goodvibes-sdk/platform/bookmarks';
|
|
14
14
|
import { getOverlayContentBudget, getStableOverlayContentRows } from './overlay-viewport.ts';
|
|
15
15
|
|
|
16
16
|
// ---------------------------------------------------------------------------
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { GitService } from '@pellux/goodvibes-sdk/platform/git
|
|
2
|
-
import { logger } from '@pellux/goodvibes-sdk/platform/utils
|
|
3
|
-
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils
|
|
1
|
+
import { GitService } from '@pellux/goodvibes-sdk/platform/git';
|
|
2
|
+
import { logger } from '@pellux/goodvibes-sdk/platform/utils';
|
|
3
|
+
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
|
|
4
4
|
|
|
5
5
|
/** Git state shown in the header bar. */
|
|
6
6
|
export interface GitHeaderInfo {
|
|
@@ -10,7 +10,7 @@ import type { SlashCommand } from '../input/command-registry.ts';
|
|
|
10
10
|
import type { KeybindingsManager } from '../input/keybindings.ts';
|
|
11
11
|
import { getOverlaySurfaceMetrics } from './overlay-viewport.ts';
|
|
12
12
|
import { getVisibleWindow } from './surface-layout.ts';
|
|
13
|
-
import { logger } from '@pellux/goodvibes-sdk/platform/utils
|
|
13
|
+
import { logger } from '@pellux/goodvibes-sdk/platform/utils';
|
|
14
14
|
|
|
15
15
|
function toModalSections(rows: readonly string[]): import('./modal-factory.ts').ModalSection[] {
|
|
16
16
|
return rows.map((row) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type Line } from '../types/grid.ts';
|
|
2
2
|
import { ModalFactory } from './modal-factory.ts';
|
|
3
|
-
import type { ProcessManager } from '@pellux/goodvibes-sdk/platform/tools
|
|
4
|
-
import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools
|
|
3
|
+
import type { ProcessManager } from '@pellux/goodvibes-sdk/platform/tools';
|
|
4
|
+
import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools';
|
|
5
5
|
import type { ProcessEntry } from './process-modal.ts';
|
|
6
6
|
import { getOverlaySurfaceMetrics, getStableOverlayContentRows } from './overlay-viewport.ts';
|
|
7
7
|
|