orbital-command 0.2.0 → 1.0.0
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/README.md +67 -42
- package/bin/commands/config.js +19 -0
- package/bin/commands/events.js +40 -0
- package/bin/commands/launch.js +126 -0
- package/bin/commands/manifest.js +283 -0
- package/bin/commands/registry.js +104 -0
- package/bin/commands/update.js +24 -0
- package/bin/lib/helpers.js +229 -0
- package/bin/orbital.js +147 -319
- package/dist/assets/Landing-CfQdHR0N.js +11 -0
- package/dist/assets/PrimitivesConfig-DThSipFy.js +32 -0
- package/dist/assets/QualityGates-B4kxM5UU.js +26 -0
- package/dist/assets/SessionTimeline-Bz1iZnmg.js +1 -0
- package/dist/assets/Settings-DLcZwbCT.js +12 -0
- package/dist/assets/SourceControl-BMNIz7Lt.js +36 -0
- package/dist/assets/WorkflowVisualizer-CxuSBOYu.js +69 -0
- package/dist/assets/arrow-down-DVPp6_qp.js +6 -0
- package/dist/assets/bot-NFaJBDn_.js +6 -0
- package/dist/assets/charts-LGLb8hyU.js +68 -0
- package/dist/assets/circle-x-IsFCkBZu.js +6 -0
- package/dist/assets/file-text-J1cebZXF.js +6 -0
- package/dist/assets/globe-WzeyHsUc.js +6 -0
- package/dist/assets/index-BdJ57EhC.css +1 -0
- package/dist/assets/index-o4ScMAuR.js +349 -0
- package/dist/assets/key-CKR8JJSj.js +6 -0
- package/dist/assets/minus-CHBsJyjp.js +6 -0
- package/dist/assets/radio-xqZaR-Uk.js +6 -0
- package/dist/assets/rocket-D_xvvNG6.js +6 -0
- package/dist/assets/shield-TdB1yv_a.js +6 -0
- package/dist/assets/ui-BmsSg9jU.js +53 -0
- package/dist/assets/useSocketListener-0L5yiN5i.js +1 -0
- package/dist/assets/useWorkflowEditor-CqeRWVQX.js +11 -0
- package/dist/assets/{vendor-Dzv9lrRc.js → vendor-Bqt8AJn2.js} +1 -1
- package/dist/assets/workflow-constants-Rw-GmgHZ.js +6 -0
- package/dist/assets/zap-C9wqYMpl.js +6 -0
- package/dist/favicon.svg +1 -0
- package/dist/index.html +6 -5
- package/dist/server/server/__tests__/data-routes.test.js +126 -0
- package/dist/server/server/__tests__/helpers/db.js +17 -0
- package/dist/server/server/__tests__/helpers/mock-emitter.js +8 -0
- package/dist/server/server/__tests__/scope-routes.test.js +138 -0
- package/dist/server/server/__tests__/sprint-routes.test.js +102 -0
- package/dist/server/server/__tests__/workflow-routes.test.js +107 -0
- package/dist/server/server/config-migrator.js +135 -0
- package/dist/server/server/config.js +51 -7
- package/dist/server/server/database.js +21 -28
- package/dist/server/server/global-config.js +143 -0
- package/dist/server/server/index.js +118 -276
- package/dist/server/server/init.js +243 -225
- package/dist/server/server/launch.js +29 -0
- package/dist/server/server/manifest-types.js +8 -0
- package/dist/server/server/manifest.js +454 -0
- package/dist/server/server/migrate-legacy.js +229 -0
- package/dist/server/server/parsers/event-parser.js +4 -1
- package/dist/server/server/parsers/event-parser.test.js +117 -0
- package/dist/server/server/parsers/scope-parser.js +74 -28
- package/dist/server/server/parsers/scope-parser.test.js +230 -0
- package/dist/server/server/project-context.js +265 -0
- package/dist/server/server/project-emitter.js +41 -0
- package/dist/server/server/project-manager.js +297 -0
- package/dist/server/server/routes/aggregate-routes.js +871 -0
- package/dist/server/server/routes/config-routes.js +41 -90
- package/dist/server/server/routes/data-routes.js +25 -123
- package/dist/server/server/routes/dispatch-routes.js +37 -15
- package/dist/server/server/routes/git-routes.js +74 -0
- package/dist/server/server/routes/manifest-routes.js +319 -0
- package/dist/server/server/routes/scope-routes.js +45 -28
- package/dist/server/server/routes/sync-routes.js +134 -0
- package/dist/server/server/routes/version-routes.js +1 -15
- package/dist/server/server/routes/workflow-routes.js +9 -3
- package/dist/server/server/schema.js +3 -0
- package/dist/server/server/services/batch-orchestrator.js +41 -17
- package/dist/server/server/services/claude-session-service.js +17 -14
- package/dist/server/server/services/config-service.js +10 -1
- package/dist/server/server/services/deploy-service.test.js +119 -0
- package/dist/server/server/services/event-service.js +64 -1
- package/dist/server/server/services/event-service.test.js +191 -0
- package/dist/server/server/services/gate-service.test.js +105 -0
- package/dist/server/server/services/git-service.js +108 -4
- package/dist/server/server/services/github-service.js +110 -2
- package/dist/server/server/services/readiness-service.test.js +190 -0
- package/dist/server/server/services/scope-cache.js +5 -1
- package/dist/server/server/services/scope-cache.test.js +142 -0
- package/dist/server/server/services/scope-service.js +222 -131
- package/dist/server/server/services/scope-service.test.js +137 -0
- package/dist/server/server/services/sprint-orchestrator.js +29 -15
- package/dist/server/server/services/sprint-service.js +23 -3
- package/dist/server/server/services/sprint-service.test.js +238 -0
- package/dist/server/server/services/sync-service.js +434 -0
- package/dist/server/server/services/sync-types.js +2 -0
- package/dist/server/server/services/workflow-service.js +26 -5
- package/dist/server/server/services/workflow-service.test.js +159 -0
- package/dist/server/server/settings-sync.js +284 -0
- package/dist/server/server/uninstall.js +195 -0
- package/dist/server/server/update-planner.js +279 -0
- package/dist/server/server/update.js +212 -0
- package/dist/server/server/utils/cc-hooks-parser.js +3 -0
- package/dist/server/server/utils/cc-hooks-parser.test.js +86 -0
- package/dist/server/server/utils/dispatch-utils.js +83 -24
- package/dist/server/server/utils/dispatch-utils.test.js +182 -0
- package/dist/server/server/utils/flag-builder.js +54 -0
- package/dist/server/server/utils/json-fields.js +14 -0
- package/dist/server/server/utils/json-fields.test.js +73 -0
- package/dist/server/server/utils/logger.js +37 -3
- package/dist/server/server/utils/package-info.js +30 -0
- package/dist/server/server/utils/route-helpers.js +47 -0
- package/dist/server/server/utils/route-helpers.test.js +115 -0
- package/dist/server/server/utils/terminal-launcher.js +79 -25
- package/dist/server/server/utils/worktree-manager.js +13 -4
- package/dist/server/server/validator.js +230 -0
- package/dist/server/server/watchers/event-watcher.js +28 -13
- package/dist/server/server/watchers/global-watcher.js +63 -0
- package/dist/server/server/watchers/scope-watcher.js +27 -12
- package/dist/server/server/wizard/config-editor.js +237 -0
- package/dist/server/server/wizard/detect.js +96 -0
- package/dist/server/server/wizard/doctor.js +115 -0
- package/dist/server/server/wizard/index.js +340 -0
- package/dist/server/server/wizard/phases/confirm.js +39 -0
- package/dist/server/server/wizard/phases/project-setup.js +90 -0
- package/dist/server/server/wizard/phases/setup-wizard.js +66 -0
- package/dist/server/server/wizard/phases/welcome.js +32 -0
- package/dist/server/server/wizard/phases/workflow-setup.js +22 -0
- package/dist/server/server/wizard/types.js +29 -0
- package/dist/server/server/wizard/ui.js +73 -0
- package/dist/server/shared/__fixtures__/workflow-configs.js +75 -0
- package/dist/server/shared/api-types.js +80 -1
- package/dist/server/shared/default-workflow.json +65 -0
- package/dist/server/shared/onboarding-tour.test.js +81 -0
- package/dist/server/shared/project-colors.js +24 -0
- package/dist/server/shared/workflow-config.test.js +84 -0
- package/dist/server/shared/workflow-engine.js +1 -1
- package/dist/server/shared/workflow-engine.test.js +302 -0
- package/dist/server/shared/workflow-normalizer.js +101 -0
- package/dist/server/shared/workflow-normalizer.test.js +100 -0
- package/dist/server/src/components/onboarding/tour-steps.js +84 -0
- package/package.json +34 -29
- package/schemas/orbital.config.schema.json +2 -5
- package/scripts/postinstall.js +18 -6
- package/scripts/release.sh +53 -0
- package/server/__tests__/data-routes.test.ts +151 -0
- package/server/__tests__/helpers/db.ts +19 -0
- package/server/__tests__/helpers/mock-emitter.ts +10 -0
- package/server/__tests__/scope-routes.test.ts +158 -0
- package/server/__tests__/sprint-routes.test.ts +118 -0
- package/server/__tests__/workflow-routes.test.ts +120 -0
- package/server/config-migrator.ts +160 -0
- package/server/config.ts +64 -12
- package/server/database.ts +22 -31
- package/server/global-config.ts +204 -0
- package/server/index.ts +139 -316
- package/server/init.ts +266 -234
- package/server/launch.ts +32 -0
- package/server/manifest-types.ts +145 -0
- package/server/manifest.ts +494 -0
- package/server/migrate-legacy.ts +290 -0
- package/server/parsers/event-parser.test.ts +135 -0
- package/server/parsers/event-parser.ts +4 -1
- package/server/parsers/scope-parser.test.ts +270 -0
- package/server/parsers/scope-parser.ts +79 -31
- package/server/project-context.ts +325 -0
- package/server/project-emitter.ts +50 -0
- package/server/project-manager.ts +368 -0
- package/server/routes/aggregate-routes.ts +968 -0
- package/server/routes/config-routes.ts +43 -85
- package/server/routes/data-routes.ts +34 -156
- package/server/routes/dispatch-routes.ts +46 -17
- package/server/routes/git-routes.ts +77 -0
- package/server/routes/manifest-routes.ts +388 -0
- package/server/routes/scope-routes.ts +39 -30
- package/server/routes/sync-routes.ts +175 -0
- package/server/routes/version-routes.ts +1 -16
- package/server/routes/workflow-routes.ts +9 -3
- package/server/schema.ts +3 -0
- package/server/services/batch-orchestrator.ts +41 -17
- package/server/services/claude-session-service.ts +16 -14
- package/server/services/config-service.ts +10 -1
- package/server/services/deploy-service.test.ts +145 -0
- package/server/services/deploy-service.ts +2 -2
- package/server/services/event-service.test.ts +242 -0
- package/server/services/event-service.ts +92 -3
- package/server/services/gate-service.test.ts +131 -0
- package/server/services/gate-service.ts +2 -2
- package/server/services/git-service.ts +137 -4
- package/server/services/github-service.ts +120 -2
- package/server/services/readiness-service.test.ts +217 -0
- package/server/services/scope-cache.test.ts +167 -0
- package/server/services/scope-cache.ts +4 -1
- package/server/services/scope-service.test.ts +169 -0
- package/server/services/scope-service.ts +224 -130
- package/server/services/sprint-orchestrator.ts +30 -15
- package/server/services/sprint-service.test.ts +271 -0
- package/server/services/sprint-service.ts +29 -5
- package/server/services/sync-service.ts +482 -0
- package/server/services/sync-types.ts +77 -0
- package/server/services/workflow-service.test.ts +190 -0
- package/server/services/workflow-service.ts +29 -9
- package/server/settings-sync.ts +359 -0
- package/server/uninstall.ts +214 -0
- package/server/update-planner.ts +346 -0
- package/server/update.ts +263 -0
- package/server/utils/cc-hooks-parser.test.ts +96 -0
- package/server/utils/cc-hooks-parser.ts +4 -0
- package/server/utils/dispatch-utils.test.ts +245 -0
- package/server/utils/dispatch-utils.ts +102 -30
- package/server/utils/flag-builder.ts +56 -0
- package/server/utils/json-fields.test.ts +83 -0
- package/server/utils/json-fields.ts +14 -0
- package/server/utils/logger.ts +40 -3
- package/server/utils/package-info.ts +32 -0
- package/server/utils/route-helpers.test.ts +144 -0
- package/server/utils/route-helpers.ts +50 -0
- package/server/utils/terminal-launcher.ts +85 -25
- package/server/utils/worktree-manager.ts +9 -4
- package/server/validator.ts +270 -0
- package/server/watchers/event-watcher.ts +24 -12
- package/server/watchers/global-watcher.ts +77 -0
- package/server/watchers/scope-watcher.ts +21 -9
- package/server/wizard/config-editor.ts +248 -0
- package/server/wizard/detect.ts +104 -0
- package/server/wizard/doctor.ts +114 -0
- package/server/wizard/index.ts +438 -0
- package/server/wizard/phases/confirm.ts +45 -0
- package/server/wizard/phases/project-setup.ts +106 -0
- package/server/wizard/phases/setup-wizard.ts +78 -0
- package/server/wizard/phases/welcome.ts +39 -0
- package/server/wizard/phases/workflow-setup.ts +28 -0
- package/server/wizard/types.ts +56 -0
- package/server/wizard/ui.ts +92 -0
- package/shared/__fixtures__/workflow-configs.ts +80 -0
- package/shared/api-types.ts +106 -0
- package/shared/onboarding-tour.test.ts +94 -0
- package/shared/project-colors.ts +24 -0
- package/shared/workflow-config.test.ts +111 -0
- package/shared/workflow-config.ts +7 -0
- package/shared/workflow-engine.test.ts +388 -0
- package/shared/workflow-engine.ts +1 -1
- package/shared/workflow-normalizer.test.ts +119 -0
- package/shared/workflow-normalizer.ts +118 -0
- package/templates/agents/QUICK-REFERENCE.md +1 -0
- package/templates/agents/README.md +1 -0
- package/templates/agents/SKILL-TRIGGERS.md +11 -0
- package/templates/agents/green-team/deep-dive.md +361 -0
- package/templates/hooks/end-session.sh +4 -1
- package/templates/hooks/init-session.sh +1 -0
- package/templates/hooks/orbital-emit.sh +2 -2
- package/templates/hooks/orbital-report-deploy.sh +4 -4
- package/templates/hooks/orbital-report-gates.sh +4 -4
- package/templates/hooks/orbital-scope-update.sh +1 -1
- package/templates/hooks/scope-commit-logger.sh +2 -2
- package/templates/hooks/scope-create-cleanup.sh +2 -2
- package/templates/hooks/scope-create-gate.sh +2 -5
- package/templates/hooks/scope-gate.sh +4 -6
- package/templates/hooks/scope-helpers.sh +28 -1
- package/templates/hooks/scope-lifecycle-gate.sh +14 -5
- package/templates/hooks/scope-prepare.sh +67 -12
- package/templates/hooks/scope-transition.sh +14 -6
- package/templates/hooks/time-tracker.sh +2 -5
- package/templates/migrations/renames.json +1 -0
- package/templates/orbital.config.json +8 -6
- package/{shared/default-workflow.json → templates/presets/default.json} +65 -0
- package/templates/presets/development.json +4 -4
- package/templates/presets/gitflow.json +7 -0
- package/templates/prompts/README.md +23 -0
- package/templates/prompts/deep-dive-audit.md +94 -0
- package/templates/quick/rules.md +56 -5
- package/templates/settings-hooks.json +1 -1
- package/templates/skills/git-commit/SKILL.md +27 -7
- package/templates/skills/git-dev/SKILL.md +13 -4
- package/templates/skills/git-main/SKILL.md +13 -3
- package/templates/skills/git-production/SKILL.md +9 -2
- package/templates/skills/git-staging/SKILL.md +11 -3
- package/templates/skills/scope-create/SKILL.md +17 -3
- package/templates/skills/scope-fix-review/SKILL.md +14 -7
- package/templates/skills/scope-implement/SKILL.md +15 -4
- package/templates/skills/scope-post-review/SKILL.md +77 -7
- package/templates/skills/scope-pre-review/SKILL.md +11 -4
- package/templates/skills/scope-verify/SKILL.md +5 -3
- package/templates/skills/test-code-review/SKILL.md +41 -33
- package/templates/skills/test-scaffold/SKILL.md +222 -0
- package/dist/assets/WorkflowVisualizer-BZ21PIIF.js +0 -84
- package/dist/assets/charts-D__PA1zp.js +0 -72
- package/dist/assets/index-D1G6i0nS.css +0 -1
- package/dist/assets/index-DpItvKpf.js +0 -419
- package/dist/assets/ui-BvF022GT.js +0 -53
- package/index.html +0 -15
- package/postcss.config.js +0 -6
- package/src/App.tsx +0 -33
- package/src/components/AgentBadge.tsx +0 -40
- package/src/components/BatchPreflightModal.tsx +0 -115
- package/src/components/CardDisplayToggle.tsx +0 -74
- package/src/components/ColumnHeaderActions.tsx +0 -55
- package/src/components/ColumnMenu.tsx +0 -99
- package/src/components/DeployHistory.tsx +0 -141
- package/src/components/DispatchModal.tsx +0 -164
- package/src/components/DispatchPopover.tsx +0 -139
- package/src/components/DragOverlay.tsx +0 -25
- package/src/components/DriftSidebar.tsx +0 -140
- package/src/components/EnvironmentStrip.tsx +0 -88
- package/src/components/ErrorBoundary.tsx +0 -62
- package/src/components/FilterChip.tsx +0 -105
- package/src/components/GateIndicator.tsx +0 -33
- package/src/components/IdeaDetailModal.tsx +0 -190
- package/src/components/IdeaFormDialog.tsx +0 -113
- package/src/components/KanbanColumn.tsx +0 -201
- package/src/components/MarkdownRenderer.tsx +0 -114
- package/src/components/NeonGrid.tsx +0 -128
- package/src/components/PromotionQueue.tsx +0 -89
- package/src/components/ScopeCard.tsx +0 -234
- package/src/components/ScopeDetailModal.tsx +0 -255
- package/src/components/ScopeFilterBar.tsx +0 -152
- package/src/components/SearchInput.tsx +0 -102
- package/src/components/SessionPanel.tsx +0 -335
- package/src/components/SprintContainer.tsx +0 -303
- package/src/components/SprintDependencyDialog.tsx +0 -78
- package/src/components/SprintPreflightModal.tsx +0 -138
- package/src/components/StatusBar.tsx +0 -168
- package/src/components/SwimCell.tsx +0 -67
- package/src/components/SwimLaneRow.tsx +0 -94
- package/src/components/SwimlaneBoardView.tsx +0 -108
- package/src/components/VersionBadge.tsx +0 -139
- package/src/components/ViewModeSelector.tsx +0 -114
- package/src/components/config/AgentChip.tsx +0 -53
- package/src/components/config/AgentCreateDialog.tsx +0 -321
- package/src/components/config/AgentEditor.tsx +0 -175
- package/src/components/config/DirectoryTree.tsx +0 -582
- package/src/components/config/FileEditor.tsx +0 -550
- package/src/components/config/HookChip.tsx +0 -50
- package/src/components/config/StageCard.tsx +0 -198
- package/src/components/config/TransitionZone.tsx +0 -173
- package/src/components/config/UnifiedWorkflowPipeline.tsx +0 -216
- package/src/components/config/WorkflowPipeline.tsx +0 -161
- package/src/components/source-control/BranchList.tsx +0 -93
- package/src/components/source-control/BranchPanel.tsx +0 -105
- package/src/components/source-control/CommitLog.tsx +0 -100
- package/src/components/source-control/CommitRow.tsx +0 -47
- package/src/components/source-control/GitHubPanel.tsx +0 -110
- package/src/components/source-control/GitHubSetupGuide.tsx +0 -52
- package/src/components/source-control/GitOverviewBar.tsx +0 -101
- package/src/components/source-control/PullRequestList.tsx +0 -69
- package/src/components/source-control/WorktreeList.tsx +0 -80
- package/src/components/ui/badge.tsx +0 -41
- package/src/components/ui/button.tsx +0 -55
- package/src/components/ui/card.tsx +0 -78
- package/src/components/ui/dialog.tsx +0 -94
- package/src/components/ui/popover.tsx +0 -33
- package/src/components/ui/scroll-area.tsx +0 -54
- package/src/components/ui/separator.tsx +0 -28
- package/src/components/ui/tabs.tsx +0 -52
- package/src/components/ui/toggle-switch.tsx +0 -35
- package/src/components/ui/tooltip.tsx +0 -27
- package/src/components/workflow/AddEdgeDialog.tsx +0 -217
- package/src/components/workflow/AddListDialog.tsx +0 -201
- package/src/components/workflow/ChecklistEditor.tsx +0 -239
- package/src/components/workflow/CommandPrefixManager.tsx +0 -118
- package/src/components/workflow/ConfigSettingsPanel.tsx +0 -189
- package/src/components/workflow/DirectionSelector.tsx +0 -133
- package/src/components/workflow/DispatchConfigPanel.tsx +0 -180
- package/src/components/workflow/EdgeDetailPanel.tsx +0 -236
- package/src/components/workflow/EdgePropertyEditor.tsx +0 -251
- package/src/components/workflow/EditToolbar.tsx +0 -138
- package/src/components/workflow/HookDetailPanel.tsx +0 -250
- package/src/components/workflow/HookExecutionLog.tsx +0 -24
- package/src/components/workflow/HookSourceModal.tsx +0 -129
- package/src/components/workflow/HooksDashboard.tsx +0 -363
- package/src/components/workflow/ListPropertyEditor.tsx +0 -251
- package/src/components/workflow/MigrationPreviewDialog.tsx +0 -237
- package/src/components/workflow/MovementRulesPanel.tsx +0 -188
- package/src/components/workflow/NodeDetailPanel.tsx +0 -245
- package/src/components/workflow/PresetSelector.tsx +0 -414
- package/src/components/workflow/SkillCommandBuilder.tsx +0 -174
- package/src/components/workflow/WorkflowEdgeComponent.tsx +0 -145
- package/src/components/workflow/WorkflowNode.tsx +0 -147
- package/src/components/workflow/graphLayout.ts +0 -186
- package/src/components/workflow/mergeHooks.ts +0 -85
- package/src/components/workflow/useEditHistory.ts +0 -88
- package/src/components/workflow/useWorkflowEditor.ts +0 -262
- package/src/components/workflow/validateConfig.ts +0 -70
- package/src/hooks/useActiveDispatches.ts +0 -198
- package/src/hooks/useBoardSettings.ts +0 -170
- package/src/hooks/useCardDisplay.ts +0 -57
- package/src/hooks/useCcHooks.ts +0 -24
- package/src/hooks/useConfigTree.ts +0 -51
- package/src/hooks/useEnforcementRules.ts +0 -46
- package/src/hooks/useEvents.ts +0 -59
- package/src/hooks/useFileEditor.ts +0 -165
- package/src/hooks/useGates.ts +0 -57
- package/src/hooks/useIdeaActions.ts +0 -53
- package/src/hooks/useKanbanDnd.ts +0 -410
- package/src/hooks/useOrbitalConfig.ts +0 -54
- package/src/hooks/usePipeline.ts +0 -47
- package/src/hooks/usePipelineData.ts +0 -338
- package/src/hooks/useReconnect.ts +0 -25
- package/src/hooks/useScopeFilters.ts +0 -125
- package/src/hooks/useScopeSessions.ts +0 -44
- package/src/hooks/useScopes.ts +0 -67
- package/src/hooks/useSearch.ts +0 -67
- package/src/hooks/useSettings.tsx +0 -187
- package/src/hooks/useSocket.ts +0 -25
- package/src/hooks/useSourceControl.ts +0 -105
- package/src/hooks/useSprintPreflight.ts +0 -55
- package/src/hooks/useSprints.ts +0 -154
- package/src/hooks/useStatusBarHighlight.ts +0 -18
- package/src/hooks/useSwimlaneBoardSettings.ts +0 -104
- package/src/hooks/useTheme.ts +0 -9
- package/src/hooks/useTransitionReadiness.ts +0 -53
- package/src/hooks/useVersion.ts +0 -155
- package/src/hooks/useViolations.ts +0 -65
- package/src/hooks/useWorkflow.tsx +0 -125
- package/src/hooks/useZoomModifier.ts +0 -19
- package/src/index.css +0 -797
- package/src/layouts/DashboardLayout.tsx +0 -113
- package/src/lib/collisionDetection.ts +0 -20
- package/src/lib/scope-fields.ts +0 -61
- package/src/lib/swimlane.ts +0 -146
- package/src/lib/utils.ts +0 -15
- package/src/main.tsx +0 -19
- package/src/socket.ts +0 -11
- package/src/types/index.ts +0 -497
- package/src/views/AgentFeed.tsx +0 -339
- package/src/views/DeployPipeline.tsx +0 -59
- package/src/views/EnforcementView.tsx +0 -378
- package/src/views/PrimitivesConfig.tsx +0 -500
- package/src/views/QualityGates.tsx +0 -1012
- package/src/views/ScopeBoard.tsx +0 -454
- package/src/views/SessionTimeline.tsx +0 -516
- package/src/views/Settings.tsx +0 -183
- package/src/views/SourceControl.tsx +0 -95
- package/src/views/WorkflowVisualizer.tsx +0 -382
- package/tailwind.config.js +0 -161
- package/tsconfig.json +0 -25
- package/vite.config.ts +0 -38
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
import { Terminal, User, ServerOff, Zap, ClipboardCheck } from 'lucide-react';
|
|
2
|
-
import type { ConfirmLevel } from '../../../shared/workflow-config';
|
|
3
|
-
|
|
4
|
-
// ─── Types ──────────────────────────────────────────────
|
|
5
|
-
|
|
6
|
-
interface DispatchConfigPanelProps {
|
|
7
|
-
dispatchOnly: boolean;
|
|
8
|
-
humanOnly: boolean;
|
|
9
|
-
skipServerTransition: boolean;
|
|
10
|
-
confirmLevel: ConfirmLevel;
|
|
11
|
-
hasCommand: boolean;
|
|
12
|
-
onDispatchOnlyChange: (v: boolean) => void;
|
|
13
|
-
onHumanOnlyChange: (v: boolean) => void;
|
|
14
|
-
onSkipServerTransitionChange: (v: boolean) => void;
|
|
15
|
-
onConfirmLevelChange: (v: ConfirmLevel) => void;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
// ─── Component ──────────────────────────────────────────
|
|
19
|
-
|
|
20
|
-
export function DispatchConfigPanel({
|
|
21
|
-
dispatchOnly,
|
|
22
|
-
humanOnly,
|
|
23
|
-
skipServerTransition,
|
|
24
|
-
confirmLevel,
|
|
25
|
-
hasCommand,
|
|
26
|
-
onDispatchOnlyChange,
|
|
27
|
-
onHumanOnlyChange,
|
|
28
|
-
onSkipServerTransitionChange,
|
|
29
|
-
onConfirmLevelChange,
|
|
30
|
-
}: DispatchConfigPanelProps) {
|
|
31
|
-
return (
|
|
32
|
-
<div className="space-y-3">
|
|
33
|
-
{/* Dispatch toggles */}
|
|
34
|
-
<div className="space-y-2">
|
|
35
|
-
<DispatchToggle
|
|
36
|
-
icon={Terminal}
|
|
37
|
-
label="Dispatch Only"
|
|
38
|
-
description="This transition can only be triggered by a skill command, not by manual drag-and-drop"
|
|
39
|
-
checked={dispatchOnly}
|
|
40
|
-
onChange={onDispatchOnlyChange}
|
|
41
|
-
/>
|
|
42
|
-
{dispatchOnly && !hasCommand && (
|
|
43
|
-
<p className="ml-6 text-[9px] text-amber-400">
|
|
44
|
-
No command configured — add one below for this toggle to be effective
|
|
45
|
-
</p>
|
|
46
|
-
)}
|
|
47
|
-
|
|
48
|
-
<DispatchToggle
|
|
49
|
-
icon={User}
|
|
50
|
-
label="Human Only"
|
|
51
|
-
description="This transition requires human confirmation and cannot be triggered by automated processes"
|
|
52
|
-
checked={humanOnly}
|
|
53
|
-
onChange={onHumanOnlyChange}
|
|
54
|
-
badge={humanOnly ? 'HUMAN' : undefined}
|
|
55
|
-
badgeColor="#6366f1"
|
|
56
|
-
/>
|
|
57
|
-
|
|
58
|
-
<DispatchToggle
|
|
59
|
-
icon={ServerOff}
|
|
60
|
-
label="Skip Server Transition"
|
|
61
|
-
description="The skill command handles the status change itself — the server won't move the scope"
|
|
62
|
-
checked={skipServerTransition}
|
|
63
|
-
onChange={onSkipServerTransitionChange}
|
|
64
|
-
/>
|
|
65
|
-
{skipServerTransition && (
|
|
66
|
-
<p className="ml-6 text-[9px] text-amber-400">
|
|
67
|
-
The bound skill must handle the scope move itself
|
|
68
|
-
</p>
|
|
69
|
-
)}
|
|
70
|
-
</div>
|
|
71
|
-
|
|
72
|
-
{/* Confirm Level */}
|
|
73
|
-
<div>
|
|
74
|
-
<label className="mb-1.5 block text-[10px] font-semibold uppercase tracking-wider text-zinc-500">
|
|
75
|
-
Confirmation Mode
|
|
76
|
-
</label>
|
|
77
|
-
<div className="grid grid-cols-2 gap-1.5">
|
|
78
|
-
<ConfirmLevelCard
|
|
79
|
-
icon={Zap}
|
|
80
|
-
label="Quick"
|
|
81
|
-
description="Immediate — one click to confirm"
|
|
82
|
-
active={confirmLevel === 'quick'}
|
|
83
|
-
onClick={() => onConfirmLevelChange('quick')}
|
|
84
|
-
color="#f59e0b"
|
|
85
|
-
/>
|
|
86
|
-
<ConfirmLevelCard
|
|
87
|
-
icon={ClipboardCheck}
|
|
88
|
-
label="Full"
|
|
89
|
-
description="Review — must acknowledge checklist"
|
|
90
|
-
active={confirmLevel === 'full'}
|
|
91
|
-
onClick={() => onConfirmLevelChange('full')}
|
|
92
|
-
color="#8b5cf6"
|
|
93
|
-
/>
|
|
94
|
-
</div>
|
|
95
|
-
{confirmLevel === 'full' && (
|
|
96
|
-
<p className="mt-1.5 text-[9px] text-violet-400">
|
|
97
|
-
Users must review the checklist before confirming this transition
|
|
98
|
-
</p>
|
|
99
|
-
)}
|
|
100
|
-
</div>
|
|
101
|
-
</div>
|
|
102
|
-
);
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// ─── Sub-components ─────────────────────────────────────
|
|
106
|
-
|
|
107
|
-
function DispatchToggle({ icon: Icon, label, description, checked, onChange, badge, badgeColor }: {
|
|
108
|
-
icon: React.ComponentType<{ className?: string }>;
|
|
109
|
-
label: string;
|
|
110
|
-
description: string;
|
|
111
|
-
checked: boolean;
|
|
112
|
-
onChange: (v: boolean) => void;
|
|
113
|
-
badge?: string;
|
|
114
|
-
badgeColor?: string;
|
|
115
|
-
}) {
|
|
116
|
-
return (
|
|
117
|
-
<label className="flex cursor-pointer gap-2 rounded-md border border-zinc-800 bg-zinc-950/30 px-2.5 py-2 transition-colors hover:border-zinc-700">
|
|
118
|
-
<div
|
|
119
|
-
className="relative mt-0.5 h-4 w-7 shrink-0 rounded-full transition-colors"
|
|
120
|
-
style={{ backgroundColor: checked ? '#22c55e' : '#3f3f46' }}
|
|
121
|
-
>
|
|
122
|
-
<div
|
|
123
|
-
className="absolute top-0.5 h-3 w-3 rounded-full bg-white transition-transform"
|
|
124
|
-
style={{ transform: checked ? 'translateX(12px)' : 'translateX(2px)' }}
|
|
125
|
-
/>
|
|
126
|
-
<input
|
|
127
|
-
type="checkbox"
|
|
128
|
-
checked={checked}
|
|
129
|
-
onChange={(e) => onChange(e.target.checked)}
|
|
130
|
-
className="sr-only"
|
|
131
|
-
/>
|
|
132
|
-
</div>
|
|
133
|
-
<div className="flex-1 min-w-0">
|
|
134
|
-
<div className="flex items-center gap-1.5">
|
|
135
|
-
<Icon className="h-3 w-3 text-zinc-400" />
|
|
136
|
-
<span className="text-[11px] font-medium text-zinc-300">{label}</span>
|
|
137
|
-
{badge && (
|
|
138
|
-
<span
|
|
139
|
-
className="rounded px-1 py-0.5 text-[8px] font-bold"
|
|
140
|
-
style={{ backgroundColor: `${badgeColor}20`, color: badgeColor }}
|
|
141
|
-
>
|
|
142
|
-
{badge}
|
|
143
|
-
</span>
|
|
144
|
-
)}
|
|
145
|
-
</div>
|
|
146
|
-
<p className="mt-0.5 text-[9px] text-zinc-600 leading-relaxed">{description}</p>
|
|
147
|
-
</div>
|
|
148
|
-
</label>
|
|
149
|
-
);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
function ConfirmLevelCard({ icon: Icon, label, description, active, onClick, color }: {
|
|
153
|
-
icon: React.ComponentType<{ className?: string; style?: React.CSSProperties }>;
|
|
154
|
-
label: string;
|
|
155
|
-
description: string;
|
|
156
|
-
active: boolean;
|
|
157
|
-
onClick: () => void;
|
|
158
|
-
color: string;
|
|
159
|
-
}) {
|
|
160
|
-
return (
|
|
161
|
-
<button
|
|
162
|
-
onClick={onClick}
|
|
163
|
-
className="rounded-md px-2.5 py-2 text-left transition-all"
|
|
164
|
-
style={{
|
|
165
|
-
backgroundColor: active ? `${color}12` : 'transparent',
|
|
166
|
-
border: `1px solid ${active ? `${color}60` : '#27272a'}`,
|
|
167
|
-
}}
|
|
168
|
-
>
|
|
169
|
-
<div className="flex items-center gap-1.5">
|
|
170
|
-
<Icon className="h-3.5 w-3.5" style={{ color: active ? color : '#52525b' }} />
|
|
171
|
-
<span className="text-[10px] font-semibold" style={{ color: active ? color : '#a1a1aa' }}>
|
|
172
|
-
{label}
|
|
173
|
-
</span>
|
|
174
|
-
</div>
|
|
175
|
-
<p className="mt-0.5 text-[8px]" style={{ color: active ? '#a1a1aa' : '#52525b' }}>
|
|
176
|
-
{description}
|
|
177
|
-
</p>
|
|
178
|
-
</button>
|
|
179
|
-
);
|
|
180
|
-
}
|
|
@@ -1,236 +0,0 @@
|
|
|
1
|
-
import { useMemo } from 'react';
|
|
2
|
-
import { X, ArrowRight, CheckCircle2, Terminal, Shield, Radio, Globe, ShieldCheck, AlertTriangle, Cog, Eye } from 'lucide-react';
|
|
3
|
-
import type { WorkflowEdge, WorkflowHook, HookCategory, HookEnforcement } from '../../../shared/workflow-config';
|
|
4
|
-
import { getHookEnforcement } from '../../../shared/workflow-config';
|
|
5
|
-
|
|
6
|
-
interface EdgeDetailPanelProps {
|
|
7
|
-
edge: WorkflowEdge | null;
|
|
8
|
-
hooks: WorkflowHook[];
|
|
9
|
-
onClose: () => void;
|
|
10
|
-
onHookClick?: (hook: WorkflowHook) => void;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
const DIRECTION_COLORS: Record<string, string> = {
|
|
14
|
-
forward: '#22c55e',
|
|
15
|
-
backward: '#f59e0b',
|
|
16
|
-
shortcut: '#6366f1',
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
const CATEGORY_CONFIG: Record<HookCategory, { icon: typeof Shield; color: string; label: string }> = {
|
|
20
|
-
guard: { icon: ShieldCheck, color: '#ef4444', label: 'Guards' },
|
|
21
|
-
gate: { icon: AlertTriangle, color: '#f59e0b', label: 'Gates' },
|
|
22
|
-
lifecycle: { icon: Cog, color: '#3b82f6', label: 'Lifecycle' },
|
|
23
|
-
observer: { icon: Eye, color: '#6b7280', label: 'Observers' },
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
const CATEGORY_ORDER: HookCategory[] = ['guard', 'gate', 'lifecycle', 'observer'];
|
|
27
|
-
|
|
28
|
-
const ENFORCEMENT_COLORS: Record<HookEnforcement, string> = {
|
|
29
|
-
blocker: '#ef4444',
|
|
30
|
-
advisor: '#f59e0b',
|
|
31
|
-
operator: '#3b82f6',
|
|
32
|
-
silent: '#6b7280',
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export function EdgeDetailPanel({ edge, hooks, onClose, onHookClick }: EdgeDetailPanelProps) {
|
|
36
|
-
if (!edge) return null;
|
|
37
|
-
|
|
38
|
-
const color = DIRECTION_COLORS[edge.direction] ?? '#22c55e';
|
|
39
|
-
|
|
40
|
-
// Group hooks by category
|
|
41
|
-
const grouped = useMemo(() => {
|
|
42
|
-
const groups = new Map<HookCategory, WorkflowHook[]>();
|
|
43
|
-
for (const hook of hooks) {
|
|
44
|
-
const existing = groups.get(hook.category);
|
|
45
|
-
if (existing) existing.push(hook);
|
|
46
|
-
else groups.set(hook.category, [hook]);
|
|
47
|
-
}
|
|
48
|
-
return groups;
|
|
49
|
-
}, [hooks]);
|
|
50
|
-
|
|
51
|
-
return (
|
|
52
|
-
<div className="flex h-full w-80 shrink-0 flex-col rounded-lg border border-zinc-800 bg-zinc-900/95 backdrop-blur">
|
|
53
|
-
{/* Header */}
|
|
54
|
-
<div className="flex items-center justify-between border-b border-zinc-800 px-4 py-3">
|
|
55
|
-
<div className="flex items-center gap-2 text-sm font-medium">
|
|
56
|
-
<span className="text-zinc-300">{edge.from}</span>
|
|
57
|
-
<ArrowRight className="h-3.5 w-3.5 text-zinc-600" />
|
|
58
|
-
<span className="text-zinc-300">{edge.to}</span>
|
|
59
|
-
</div>
|
|
60
|
-
<button onClick={onClose} className="rounded p-1 text-zinc-500 hover:bg-zinc-800 hover:text-zinc-300">
|
|
61
|
-
<X className="h-4 w-4" />
|
|
62
|
-
</button>
|
|
63
|
-
</div>
|
|
64
|
-
|
|
65
|
-
{/* Content */}
|
|
66
|
-
<div className="flex-1 space-y-4 overflow-y-auto p-4 text-xs">
|
|
67
|
-
{/* Label & Direction */}
|
|
68
|
-
<Section title="Transition">
|
|
69
|
-
<div className="flex items-center gap-2">
|
|
70
|
-
<span
|
|
71
|
-
className="rounded px-2 py-0.5 text-[10px] font-semibold uppercase"
|
|
72
|
-
style={{ backgroundColor: `${color}20`, color }}
|
|
73
|
-
>
|
|
74
|
-
{edge.direction}
|
|
75
|
-
</span>
|
|
76
|
-
<span className="text-zinc-300">{edge.label}</span>
|
|
77
|
-
</div>
|
|
78
|
-
<p className="mt-1.5 text-zinc-500">{edge.description}</p>
|
|
79
|
-
</Section>
|
|
80
|
-
|
|
81
|
-
{/* Command */}
|
|
82
|
-
{edge.command && (
|
|
83
|
-
<Section title="Command">
|
|
84
|
-
<div className="flex items-center gap-2 rounded border border-zinc-800 bg-zinc-950 px-3 py-2 font-mono text-emerald-400">
|
|
85
|
-
<Terminal className="h-3.5 w-3.5 shrink-0 text-zinc-600" />
|
|
86
|
-
{edge.command}
|
|
87
|
-
</div>
|
|
88
|
-
</Section>
|
|
89
|
-
)}
|
|
90
|
-
|
|
91
|
-
{/* Flags */}
|
|
92
|
-
<Section title="Behavior">
|
|
93
|
-
<div className="flex flex-wrap gap-2">
|
|
94
|
-
<Flag label="Confirm" value={edge.confirmLevel} />
|
|
95
|
-
{edge.dispatchOnly && <Flag label="Dispatch Only" active />}
|
|
96
|
-
{edge.humanOnly && <Flag label="Human Only" active />}
|
|
97
|
-
{edge.skipServerTransition && <Flag label="Skip Server" active />}
|
|
98
|
-
</div>
|
|
99
|
-
</Section>
|
|
100
|
-
|
|
101
|
-
{/* Checklist */}
|
|
102
|
-
{edge.checklist && edge.checklist.length > 0 && (
|
|
103
|
-
<Section title={`Checklist (${edge.checklist.length})`}>
|
|
104
|
-
<div className="space-y-1.5">
|
|
105
|
-
{edge.checklist.map((item, i) => (
|
|
106
|
-
<div key={i} className="flex items-start gap-2 text-zinc-400">
|
|
107
|
-
<CheckCircle2 className="mt-0.5 h-3 w-3 shrink-0 text-zinc-600" />
|
|
108
|
-
<span>{item}</span>
|
|
109
|
-
</div>
|
|
110
|
-
))}
|
|
111
|
-
</div>
|
|
112
|
-
</Section>
|
|
113
|
-
)}
|
|
114
|
-
|
|
115
|
-
{/* Hooks grouped by category */}
|
|
116
|
-
{hooks.length > 0 && (
|
|
117
|
-
<Section title={`Hooks (${hooks.length})`}>
|
|
118
|
-
<div className="space-y-3">
|
|
119
|
-
{CATEGORY_ORDER.map((cat) => {
|
|
120
|
-
const catHooks = grouped.get(cat);
|
|
121
|
-
if (!catHooks?.length) return null;
|
|
122
|
-
const config = CATEGORY_CONFIG[cat];
|
|
123
|
-
const CatIcon = config.icon;
|
|
124
|
-
return (
|
|
125
|
-
<div key={cat}>
|
|
126
|
-
<div className="mb-1.5 flex items-center gap-1.5">
|
|
127
|
-
<CatIcon className="h-2.5 w-2.5" style={{ color: config.color }} />
|
|
128
|
-
<span className="text-[9px] font-semibold uppercase tracking-wider" style={{ color: config.color }}>
|
|
129
|
-
{config.label}
|
|
130
|
-
</span>
|
|
131
|
-
</div>
|
|
132
|
-
{catHooks.map((h) => (
|
|
133
|
-
<HookDetail key={h.id} hook={h} onClick={onHookClick} />
|
|
134
|
-
))}
|
|
135
|
-
</div>
|
|
136
|
-
);
|
|
137
|
-
})}
|
|
138
|
-
</div>
|
|
139
|
-
</Section>
|
|
140
|
-
)}
|
|
141
|
-
</div>
|
|
142
|
-
</div>
|
|
143
|
-
);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// ─── Sub-components ─────────────────────────────────────
|
|
147
|
-
|
|
148
|
-
function Section({ title, children }: { title: string; children: React.ReactNode }) {
|
|
149
|
-
return (
|
|
150
|
-
<div>
|
|
151
|
-
<h4 className="mb-2 text-[10px] font-semibold uppercase tracking-wider text-zinc-500">{title}</h4>
|
|
152
|
-
{children}
|
|
153
|
-
</div>
|
|
154
|
-
);
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
const TIMING_COLORS: Record<string, string> = {
|
|
158
|
-
before: '#eab308',
|
|
159
|
-
after: '#3b82f6',
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
const TYPE_COLORS: Record<string, string> = {
|
|
163
|
-
shell: '#22c55e',
|
|
164
|
-
event: '#a855f7',
|
|
165
|
-
webhook: '#f97316',
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
const TYPE_ICONS: Record<string, typeof Terminal> = {
|
|
169
|
-
shell: Terminal,
|
|
170
|
-
event: Radio,
|
|
171
|
-
webhook: Globe,
|
|
172
|
-
};
|
|
173
|
-
|
|
174
|
-
function HookDetail({ hook, onClick }: { hook: WorkflowHook; onClick?: (hook: WorkflowHook) => void }) {
|
|
175
|
-
const timingColor = TIMING_COLORS[hook.timing] ?? '#3b82f6';
|
|
176
|
-
const typeColor = TYPE_COLORS[hook.type] ?? '#22c55e';
|
|
177
|
-
const TypeIcon = TYPE_ICONS[hook.type] ?? Terminal;
|
|
178
|
-
const enforcement = getHookEnforcement(hook);
|
|
179
|
-
const enforcementColor = ENFORCEMENT_COLORS[enforcement];
|
|
180
|
-
const catConfig = CATEGORY_CONFIG[hook.category];
|
|
181
|
-
const CatIcon = catConfig.icon;
|
|
182
|
-
|
|
183
|
-
return (
|
|
184
|
-
<button
|
|
185
|
-
onClick={() => onClick?.(hook)}
|
|
186
|
-
className="w-full rounded border bg-zinc-950/50 p-2 text-left transition-colors hover:border-zinc-600 hover:bg-zinc-900/70"
|
|
187
|
-
style={{ borderColor: hook.blocking ? '#ef444466' : '#27272a' }}
|
|
188
|
-
>
|
|
189
|
-
<div className="flex items-center gap-2">
|
|
190
|
-
<CatIcon className="h-2.5 w-2.5" style={{ color: catConfig.color }} />
|
|
191
|
-
<span className="text-zinc-300">{hook.label}</span>
|
|
192
|
-
<span
|
|
193
|
-
className="ml-auto rounded px-1 py-0.5 text-[8px] font-bold uppercase"
|
|
194
|
-
style={{ backgroundColor: `${enforcementColor}20`, color: enforcementColor }}
|
|
195
|
-
>
|
|
196
|
-
{enforcement}
|
|
197
|
-
</span>
|
|
198
|
-
</div>
|
|
199
|
-
<div className="mt-1.5 flex flex-wrap items-center gap-1">
|
|
200
|
-
<span
|
|
201
|
-
className="rounded px-1.5 py-0.5 text-[9px] font-semibold uppercase"
|
|
202
|
-
style={{ backgroundColor: `${timingColor}20`, color: timingColor }}
|
|
203
|
-
>
|
|
204
|
-
{hook.timing}
|
|
205
|
-
</span>
|
|
206
|
-
<span
|
|
207
|
-
className="flex items-center gap-0.5 rounded px-1.5 py-0.5 text-[9px] font-semibold uppercase"
|
|
208
|
-
style={{ backgroundColor: `${typeColor}20`, color: typeColor }}
|
|
209
|
-
>
|
|
210
|
-
<TypeIcon className="h-2.5 w-2.5" />
|
|
211
|
-
{hook.type}
|
|
212
|
-
</span>
|
|
213
|
-
</div>
|
|
214
|
-
<div className="mt-1.5 flex items-center gap-1.5 rounded border border-zinc-800 bg-zinc-900 px-2 py-1 font-mono text-[10px] text-zinc-400">
|
|
215
|
-
<TypeIcon className="h-3 w-3 shrink-0 text-zinc-600" />
|
|
216
|
-
<span className="truncate">{hook.target}</span>
|
|
217
|
-
</div>
|
|
218
|
-
{hook.description && <p className="mt-1 text-zinc-500">{hook.description}</p>}
|
|
219
|
-
</button>
|
|
220
|
-
);
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
function Flag({ label, value, active }: { label: string; value?: string; active?: boolean }) {
|
|
224
|
-
return (
|
|
225
|
-
<span
|
|
226
|
-
className="rounded border px-1.5 py-0.5 text-[10px]"
|
|
227
|
-
style={{
|
|
228
|
-
borderColor: active ? '#22c55e33' : '#27272a',
|
|
229
|
-
color: active ? '#22c55e' : '#a1a1aa',
|
|
230
|
-
backgroundColor: active ? '#22c55e10' : 'transparent',
|
|
231
|
-
}}
|
|
232
|
-
>
|
|
233
|
-
{label}{value ? `: ${value}` : ''}
|
|
234
|
-
</span>
|
|
235
|
-
);
|
|
236
|
-
}
|
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
import { useState, useCallback, useMemo } from 'react';
|
|
2
|
-
import { X, Trash2, Check } from 'lucide-react';
|
|
3
|
-
import type { WorkflowEdge, WorkflowConfig, WorkflowHook, ConfirmLevel, EdgeDirection } from '../../../shared/workflow-config';
|
|
4
|
-
import { DirectionSelector } from './DirectionSelector';
|
|
5
|
-
import { SkillCommandBuilder } from './SkillCommandBuilder';
|
|
6
|
-
import { ChecklistEditor } from './ChecklistEditor';
|
|
7
|
-
import { DispatchConfigPanel } from './DispatchConfigPanel';
|
|
8
|
-
import { MovementRulesPanel } from './MovementRulesPanel';
|
|
9
|
-
|
|
10
|
-
// ─── Types ──────────────────────────────────────────────
|
|
11
|
-
|
|
12
|
-
interface EdgePropertyEditorProps {
|
|
13
|
-
edge: WorkflowEdge;
|
|
14
|
-
config: WorkflowConfig;
|
|
15
|
-
onSave: (updated: WorkflowEdge) => void;
|
|
16
|
-
onDelete: () => void;
|
|
17
|
-
onClose: () => void;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// ─── Component ──────────────────────────────────────────
|
|
21
|
-
|
|
22
|
-
export function EdgePropertyEditor({ edge, config, onSave, onDelete, onClose }: EdgePropertyEditorProps) {
|
|
23
|
-
const [draft, setDraft] = useState<WorkflowEdge>(() => structuredClone(edge));
|
|
24
|
-
const [showDeleteConfirm, setShowDeleteConfirm] = useState(false);
|
|
25
|
-
|
|
26
|
-
const listIds = useMemo(() => config.lists.map((l) => l.id), [config.lists]);
|
|
27
|
-
const availableHooks = useMemo(() => config.hooks ?? [], [config.hooks]);
|
|
28
|
-
const allowedPrefixes = useMemo(() => config.allowedCommandPrefixes ?? [], [config.allowedCommandPrefixes]);
|
|
29
|
-
const fromLabel = useMemo(() => config.lists.find((l) => l.id === draft.from)?.label ?? draft.from, [config.lists, draft.from]);
|
|
30
|
-
const toLabel = useMemo(() => config.lists.find((l) => l.id === draft.to)?.label ?? draft.to, [config.lists, draft.to]);
|
|
31
|
-
|
|
32
|
-
const errors = useMemo(() => {
|
|
33
|
-
const errs: string[] = [];
|
|
34
|
-
if (!draft.from) errs.push('From is required');
|
|
35
|
-
if (!draft.to) errs.push('To is required');
|
|
36
|
-
if (draft.from === draft.to) errs.push('From and To must be different');
|
|
37
|
-
if (!draft.label.trim()) errs.push('Label is required');
|
|
38
|
-
if (!draft.description.trim()) errs.push('Description is required');
|
|
39
|
-
const key = `${draft.from}:${draft.to}`;
|
|
40
|
-
const origKey = `${edge.from}:${edge.to}`;
|
|
41
|
-
if (key !== origKey && config.edges.some((e) => `${e.from}:${e.to}` === key)) {
|
|
42
|
-
errs.push('An edge with this from:to already exists');
|
|
43
|
-
}
|
|
44
|
-
return errs;
|
|
45
|
-
}, [draft, edge, config.edges]);
|
|
46
|
-
|
|
47
|
-
const updateField = useCallback(<K extends keyof WorkflowEdge>(key: K, value: WorkflowEdge[K]) => {
|
|
48
|
-
setDraft((prev) => ({ ...prev, [key]: value }));
|
|
49
|
-
}, []);
|
|
50
|
-
|
|
51
|
-
const toggleHook = useCallback((hookId: string) => {
|
|
52
|
-
setDraft((prev) => {
|
|
53
|
-
const current = prev.hooks ?? [];
|
|
54
|
-
const has = current.includes(hookId);
|
|
55
|
-
return { ...prev, hooks: has ? current.filter((id) => id !== hookId) : [...current, hookId] };
|
|
56
|
-
});
|
|
57
|
-
}, []);
|
|
58
|
-
|
|
59
|
-
const handleSave = useCallback(() => {
|
|
60
|
-
if (errors.length > 0) return;
|
|
61
|
-
onSave(draft);
|
|
62
|
-
}, [draft, errors, onSave]);
|
|
63
|
-
|
|
64
|
-
return (
|
|
65
|
-
<div className="flex h-full w-80 shrink-0 flex-col rounded-lg border border-cyan-500/30 bg-zinc-900/95 backdrop-blur">
|
|
66
|
-
{/* Header */}
|
|
67
|
-
<div className="flex items-center justify-between border-b border-zinc-800 px-4 py-3">
|
|
68
|
-
<span className="text-sm font-medium">Edit Edge</span>
|
|
69
|
-
<button onClick={onClose} className="rounded p-1 text-zinc-500 hover:bg-zinc-800 hover:text-zinc-300">
|
|
70
|
-
<X className="h-4 w-4" />
|
|
71
|
-
</button>
|
|
72
|
-
</div>
|
|
73
|
-
|
|
74
|
-
{/* Form */}
|
|
75
|
-
<div className="flex-1 space-y-3 overflow-y-auto p-4 text-xs">
|
|
76
|
-
{/* From / To */}
|
|
77
|
-
<div className="grid grid-cols-2 gap-2">
|
|
78
|
-
<FieldGroup label="From">
|
|
79
|
-
<select
|
|
80
|
-
value={draft.from}
|
|
81
|
-
onChange={(e) => updateField('from', e.target.value)}
|
|
82
|
-
className="w-full rounded border border-zinc-700 bg-zinc-800 px-2 py-1.5 text-zinc-200 outline-none focus:border-zinc-500"
|
|
83
|
-
>
|
|
84
|
-
{listIds.map((id) => <option key={id} value={id}>{id}</option>)}
|
|
85
|
-
</select>
|
|
86
|
-
</FieldGroup>
|
|
87
|
-
<FieldGroup label="To">
|
|
88
|
-
<select
|
|
89
|
-
value={draft.to}
|
|
90
|
-
onChange={(e) => updateField('to', e.target.value)}
|
|
91
|
-
className="w-full rounded border border-zinc-700 bg-zinc-800 px-2 py-1.5 text-zinc-200 outline-none focus:border-zinc-500"
|
|
92
|
-
>
|
|
93
|
-
{listIds.map((id) => <option key={id} value={id}>{id}</option>)}
|
|
94
|
-
</select>
|
|
95
|
-
</FieldGroup>
|
|
96
|
-
</div>
|
|
97
|
-
|
|
98
|
-
{/* Direction — rich selector */}
|
|
99
|
-
<FieldGroup label="Direction">
|
|
100
|
-
<DirectionSelector
|
|
101
|
-
value={draft.direction}
|
|
102
|
-
onChange={(d: EdgeDirection) => updateField('direction', d)}
|
|
103
|
-
fromLabel={fromLabel}
|
|
104
|
-
toLabel={toLabel}
|
|
105
|
-
/>
|
|
106
|
-
</FieldGroup>
|
|
107
|
-
|
|
108
|
-
{/* Movement Rules — informational panel */}
|
|
109
|
-
<FieldGroup label="Movement Rules">
|
|
110
|
-
<MovementRulesPanel edge={draft} lists={config.lists} />
|
|
111
|
-
</FieldGroup>
|
|
112
|
-
|
|
113
|
-
{/* Label */}
|
|
114
|
-
<FieldGroup label="Label">
|
|
115
|
-
<input
|
|
116
|
-
value={draft.label}
|
|
117
|
-
onChange={(e) => updateField('label', e.target.value)}
|
|
118
|
-
className="w-full rounded border border-zinc-700 bg-zinc-800 px-2.5 py-1.5 text-zinc-200 outline-none focus:border-zinc-500"
|
|
119
|
-
/>
|
|
120
|
-
</FieldGroup>
|
|
121
|
-
|
|
122
|
-
{/* Description */}
|
|
123
|
-
<FieldGroup label="Description">
|
|
124
|
-
<textarea
|
|
125
|
-
value={draft.description}
|
|
126
|
-
onChange={(e) => updateField('description', e.target.value)}
|
|
127
|
-
rows={2}
|
|
128
|
-
className="w-full resize-none rounded border border-zinc-700 bg-zinc-800 px-2.5 py-1.5 text-zinc-200 outline-none focus:border-zinc-500"
|
|
129
|
-
/>
|
|
130
|
-
</FieldGroup>
|
|
131
|
-
|
|
132
|
-
{/* Skill Command — rich builder */}
|
|
133
|
-
<FieldGroup label="Skill Command">
|
|
134
|
-
<SkillCommandBuilder
|
|
135
|
-
value={draft.command}
|
|
136
|
-
onChange={(v: string | null) => updateField('command', v)}
|
|
137
|
-
allowedPrefixes={allowedPrefixes}
|
|
138
|
-
/>
|
|
139
|
-
</FieldGroup>
|
|
140
|
-
|
|
141
|
-
{/* Dispatch Configuration — rich toggles */}
|
|
142
|
-
<FieldGroup label="Dispatch & Confirmation">
|
|
143
|
-
<DispatchConfigPanel
|
|
144
|
-
dispatchOnly={draft.dispatchOnly ?? false}
|
|
145
|
-
humanOnly={draft.humanOnly ?? false}
|
|
146
|
-
skipServerTransition={draft.skipServerTransition ?? false}
|
|
147
|
-
confirmLevel={draft.confirmLevel}
|
|
148
|
-
hasCommand={draft.command !== null}
|
|
149
|
-
onDispatchOnlyChange={(v: boolean) => updateField('dispatchOnly', v || undefined)}
|
|
150
|
-
onHumanOnlyChange={(v: boolean) => updateField('humanOnly', v || undefined)}
|
|
151
|
-
onSkipServerTransitionChange={(v: boolean) => updateField('skipServerTransition', v || undefined)}
|
|
152
|
-
onConfirmLevelChange={(v: ConfirmLevel) => updateField('confirmLevel', v)}
|
|
153
|
-
/>
|
|
154
|
-
</FieldGroup>
|
|
155
|
-
|
|
156
|
-
{/* Checklist — drag-to-reorder editor */}
|
|
157
|
-
<FieldGroup label={`Checklist (${(draft.checklist ?? []).length})`}>
|
|
158
|
-
<ChecklistEditor
|
|
159
|
-
items={draft.checklist ?? []}
|
|
160
|
-
onChange={(items: string[]) => updateField('checklist', items.length > 0 ? items : undefined)}
|
|
161
|
-
confirmLevel={draft.confirmLevel}
|
|
162
|
-
/>
|
|
163
|
-
</FieldGroup>
|
|
164
|
-
|
|
165
|
-
{/* Hooks */}
|
|
166
|
-
{availableHooks.length > 0 && (
|
|
167
|
-
<FieldGroup label={`Hooks (${(draft.hooks ?? []).length} selected)`}>
|
|
168
|
-
<div className="space-y-1.5">
|
|
169
|
-
{availableHooks.map((hook) => (
|
|
170
|
-
<HookCheckbox
|
|
171
|
-
key={hook.id}
|
|
172
|
-
hook={hook}
|
|
173
|
-
checked={(draft.hooks ?? []).includes(hook.id)}
|
|
174
|
-
onToggle={() => toggleHook(hook.id)}
|
|
175
|
-
/>
|
|
176
|
-
))}
|
|
177
|
-
</div>
|
|
178
|
-
</FieldGroup>
|
|
179
|
-
)}
|
|
180
|
-
|
|
181
|
-
{/* Validation errors */}
|
|
182
|
-
{errors.length > 0 && (
|
|
183
|
-
<div className="rounded border border-red-500/30 bg-red-500/10 p-2.5">
|
|
184
|
-
{errors.map((e) => (
|
|
185
|
-
<p key={e} className="text-[10px] text-red-400">{e}</p>
|
|
186
|
-
))}
|
|
187
|
-
</div>
|
|
188
|
-
)}
|
|
189
|
-
</div>
|
|
190
|
-
|
|
191
|
-
{/* Footer */}
|
|
192
|
-
<div className="flex items-center gap-2 border-t border-zinc-800 px-4 py-3">
|
|
193
|
-
{showDeleteConfirm ? (
|
|
194
|
-
<div className="flex items-center gap-1.5">
|
|
195
|
-
<span className="text-[10px] text-red-400">Confirm?</span>
|
|
196
|
-
<button onClick={onDelete} className="rounded bg-red-500/20 px-2 py-1 text-[10px] text-red-400 hover:bg-red-500/30">
|
|
197
|
-
Delete
|
|
198
|
-
</button>
|
|
199
|
-
<button onClick={() => setShowDeleteConfirm(false)} className="rounded px-2 py-1 text-[10px] text-zinc-500 hover:text-zinc-300">
|
|
200
|
-
Cancel
|
|
201
|
-
</button>
|
|
202
|
-
</div>
|
|
203
|
-
) : (
|
|
204
|
-
<button
|
|
205
|
-
onClick={() => setShowDeleteConfirm(true)}
|
|
206
|
-
className="rounded p-1.5 text-zinc-600 hover:bg-red-500/10 hover:text-red-400"
|
|
207
|
-
>
|
|
208
|
-
<Trash2 className="h-3.5 w-3.5" />
|
|
209
|
-
</button>
|
|
210
|
-
)}
|
|
211
|
-
<div className="flex-1" />
|
|
212
|
-
<button
|
|
213
|
-
onClick={handleSave}
|
|
214
|
-
disabled={errors.length > 0}
|
|
215
|
-
className="flex items-center gap-1.5 rounded bg-cyan-600 px-3 py-1.5 text-[11px] font-medium text-white hover:bg-cyan-500 disabled:opacity-40"
|
|
216
|
-
>
|
|
217
|
-
<Check className="h-3 w-3" />
|
|
218
|
-
Apply
|
|
219
|
-
</button>
|
|
220
|
-
</div>
|
|
221
|
-
</div>
|
|
222
|
-
);
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
// ─── Sub-components ─────────────────────────────────────
|
|
226
|
-
|
|
227
|
-
function FieldGroup({ label, children }: { label: string; children: React.ReactNode }) {
|
|
228
|
-
return (
|
|
229
|
-
<div>
|
|
230
|
-
<label className="mb-1 block text-[10px] font-semibold uppercase tracking-wider text-zinc-500">{label}</label>
|
|
231
|
-
{children}
|
|
232
|
-
</div>
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
function HookCheckbox({ hook, checked, onToggle }: { hook: WorkflowHook; checked: boolean; onToggle: () => void }) {
|
|
237
|
-
return (
|
|
238
|
-
<label className="flex cursor-pointer items-center gap-2 rounded border border-zinc-800 bg-zinc-950/30 px-2 py-1.5">
|
|
239
|
-
<input
|
|
240
|
-
type="checkbox"
|
|
241
|
-
checked={checked}
|
|
242
|
-
onChange={onToggle}
|
|
243
|
-
className="h-3.5 w-3.5 rounded border-zinc-600 bg-zinc-800 text-cyan-500 focus:ring-0 focus:ring-offset-0"
|
|
244
|
-
/>
|
|
245
|
-
<div className="flex-1">
|
|
246
|
-
<span className="text-zinc-300">{hook.label}</span>
|
|
247
|
-
<span className="ml-1.5 text-[9px] text-zinc-600">{hook.timing} · {hook.type}</span>
|
|
248
|
-
</div>
|
|
249
|
-
</label>
|
|
250
|
-
);
|
|
251
|
-
}
|