@gokulvenkatareddy/cortex 0.1.7
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 +1295 -0
- package/apps/octogent/.github/workflows/ci.yml +40 -0
- package/apps/octogent/.shims/claude +4 -0
- package/apps/octogent/AGENTS.md +71 -0
- package/apps/octogent/CONTRIBUTING.md +72 -0
- package/apps/octogent/LICENSE +21 -0
- package/apps/octogent/README.md +184 -0
- package/apps/octogent/apps/api/AGENTS.md +32 -0
- package/apps/octogent/apps/api/package.json +19 -0
- package/apps/octogent/apps/api/src/agentStateDetection.ts +181 -0
- package/apps/octogent/apps/api/src/claudeSessionScanner.ts +235 -0
- package/apps/octogent/apps/api/src/claudeSkills.ts +182 -0
- package/apps/octogent/apps/api/src/claudeUsage.ts +922 -0
- package/apps/octogent/apps/api/src/cli.ts +595 -0
- package/apps/octogent/apps/api/src/codeIntelStore.ts +46 -0
- package/apps/octogent/apps/api/src/codexUsage.ts +278 -0
- package/apps/octogent/apps/api/src/createApiServer/codeIntelRoutes.ts +60 -0
- package/apps/octogent/apps/api/src/createApiServer/conversationRoutes.ts +128 -0
- package/apps/octogent/apps/api/src/createApiServer/deckRoutes.ts +873 -0
- package/apps/octogent/apps/api/src/createApiServer/gitParsers.ts +140 -0
- package/apps/octogent/apps/api/src/createApiServer/gitRoutes.ts +214 -0
- package/apps/octogent/apps/api/src/createApiServer/miscRoutes.ts +316 -0
- package/apps/octogent/apps/api/src/createApiServer/monitorParsers.ts +137 -0
- package/apps/octogent/apps/api/src/createApiServer/monitorRoutes.ts +95 -0
- package/apps/octogent/apps/api/src/createApiServer/requestHandler.ts +311 -0
- package/apps/octogent/apps/api/src/createApiServer/requestParsers.ts +25 -0
- package/apps/octogent/apps/api/src/createApiServer/routeHelpers.ts +97 -0
- package/apps/octogent/apps/api/src/createApiServer/security.ts +70 -0
- package/apps/octogent/apps/api/src/createApiServer/terminalParsers.ts +167 -0
- package/apps/octogent/apps/api/src/createApiServer/terminalRoutes.ts +315 -0
- package/apps/octogent/apps/api/src/createApiServer/types.ts +24 -0
- package/apps/octogent/apps/api/src/createApiServer/uiStateParsers.ts +255 -0
- package/apps/octogent/apps/api/src/createApiServer/upgradeHandler.ts +38 -0
- package/apps/octogent/apps/api/src/createApiServer/usageRoutes.ts +84 -0
- package/apps/octogent/apps/api/src/createApiServer.ts +176 -0
- package/apps/octogent/apps/api/src/deck/readDeckTentacles.ts +595 -0
- package/apps/octogent/apps/api/src/githubRepoSummary.ts +397 -0
- package/apps/octogent/apps/api/src/logging.ts +9 -0
- package/apps/octogent/apps/api/src/monitor/defaults.ts +3 -0
- package/apps/octogent/apps/api/src/monitor/index.ts +8 -0
- package/apps/octogent/apps/api/src/monitor/repository.ts +303 -0
- package/apps/octogent/apps/api/src/monitor/service.ts +349 -0
- package/apps/octogent/apps/api/src/monitor/types.ts +120 -0
- package/apps/octogent/apps/api/src/monitor/xProvider.ts +587 -0
- package/apps/octogent/apps/api/src/projectPersistence.ts +377 -0
- package/apps/octogent/apps/api/src/prompts/index.ts +10 -0
- package/apps/octogent/apps/api/src/prompts/promptResolver.ts +145 -0
- package/apps/octogent/apps/api/src/runtimeMetadata.ts +69 -0
- package/apps/octogent/apps/api/src/server.ts +80 -0
- package/apps/octogent/apps/api/src/setupState.ts +80 -0
- package/apps/octogent/apps/api/src/setupStatus.ts +174 -0
- package/apps/octogent/apps/api/src/startupPrerequisites.ts +146 -0
- package/apps/octogent/apps/api/src/terminalRuntime/channelMessaging.ts +87 -0
- package/apps/octogent/apps/api/src/terminalRuntime/claudeTranscript.ts +279 -0
- package/apps/octogent/apps/api/src/terminalRuntime/constants.ts +15 -0
- package/apps/octogent/apps/api/src/terminalRuntime/conversations.ts +492 -0
- package/apps/octogent/apps/api/src/terminalRuntime/gitOperations.ts +341 -0
- package/apps/octogent/apps/api/src/terminalRuntime/hookProcessor.ts +405 -0
- package/apps/octogent/apps/api/src/terminalRuntime/protocol.ts +46 -0
- package/apps/octogent/apps/api/src/terminalRuntime/ptyEnvironment.ts +50 -0
- package/apps/octogent/apps/api/src/terminalRuntime/registry.ts +423 -0
- package/apps/octogent/apps/api/src/terminalRuntime/sessionRuntime.ts +671 -0
- package/apps/octogent/apps/api/src/terminalRuntime/systemClients.ts +432 -0
- package/apps/octogent/apps/api/src/terminalRuntime/types.ts +157 -0
- package/apps/octogent/apps/api/src/terminalRuntime/worktreeManager.ts +135 -0
- package/apps/octogent/apps/api/src/terminalRuntime.ts +567 -0
- package/apps/octogent/apps/api/src/usageUtils.ts +16 -0
- package/apps/octogent/apps/api/src/ws-shim.d.ts +28 -0
- package/apps/octogent/apps/api/tests/agentStateDetection.test.ts +67 -0
- package/apps/octogent/apps/api/tests/claudeUsage.test.ts +583 -0
- package/apps/octogent/apps/api/tests/codexUsage.test.ts +107 -0
- package/apps/octogent/apps/api/tests/createApiServer.test.ts +3207 -0
- package/apps/octogent/apps/api/tests/githubRepoSummary.test.ts +100 -0
- package/apps/octogent/apps/api/tests/logging.test.ts +33 -0
- package/apps/octogent/apps/api/tests/monitorApi.test.ts +467 -0
- package/apps/octogent/apps/api/tests/monitorCore.test.ts +104 -0
- package/apps/octogent/apps/api/tests/promptResolver.test.ts +109 -0
- package/apps/octogent/apps/api/tests/protocol.test.ts +14 -0
- package/apps/octogent/apps/api/tests/sessionRuntime.test.ts +608 -0
- package/apps/octogent/apps/api/tests/startupPrerequisites.test.ts +70 -0
- package/apps/octogent/apps/api/tests/upgradeHandler.test.ts +40 -0
- package/apps/octogent/apps/api/tests/xMonitorProvider.test.ts +109 -0
- package/apps/octogent/apps/api/tsconfig.json +7 -0
- package/apps/octogent/apps/api/vitest.config.ts +7 -0
- package/apps/octogent/apps/web/AGENTS.md +38 -0
- package/apps/octogent/apps/web/index.html +13 -0
- package/apps/octogent/apps/web/package.json +32 -0
- package/apps/octogent/apps/web/public/octopus-favicon.svg +26 -0
- package/apps/octogent/apps/web/src/App.tsx +646 -0
- package/apps/octogent/apps/web/src/app/canvas/types.ts +34 -0
- package/apps/octogent/apps/web/src/app/codeIntelAggregation.ts +278 -0
- package/apps/octogent/apps/web/src/app/constants.ts +28 -0
- package/apps/octogent/apps/web/src/app/conversationNormalizers.ts +135 -0
- package/apps/octogent/apps/web/src/app/formatTimestamp.ts +18 -0
- package/apps/octogent/apps/web/src/app/githubMetrics.ts +76 -0
- package/apps/octogent/apps/web/src/app/githubNormalizers.ts +91 -0
- package/apps/octogent/apps/web/src/app/hooks/useAgentRuntimeStates.ts +18 -0
- package/apps/octogent/apps/web/src/app/hooks/useBackendLivenessPolling.ts +53 -0
- package/apps/octogent/apps/web/src/app/hooks/useCanvasGraphData.ts +449 -0
- package/apps/octogent/apps/web/src/app/hooks/useCanvasTransform.ts +260 -0
- package/apps/octogent/apps/web/src/app/hooks/useClaudeUsagePolling.ts +40 -0
- package/apps/octogent/apps/web/src/app/hooks/useClickOutside.ts +30 -0
- package/apps/octogent/apps/web/src/app/hooks/useCodeIntelRuntime.ts +83 -0
- package/apps/octogent/apps/web/src/app/hooks/useCodexUsagePolling.ts +35 -0
- package/apps/octogent/apps/web/src/app/hooks/useConsoleKeyboardShortcuts.ts +31 -0
- package/apps/octogent/apps/web/src/app/hooks/useConversationsRuntime.ts +377 -0
- package/apps/octogent/apps/web/src/app/hooks/useForceSimulation.ts +319 -0
- package/apps/octogent/apps/web/src/app/hooks/useGitHubPrimaryViewModel.ts +143 -0
- package/apps/octogent/apps/web/src/app/hooks/useGithubSummaryPolling.ts +28 -0
- package/apps/octogent/apps/web/src/app/hooks/useInitialColumnsHydration.ts +64 -0
- package/apps/octogent/apps/web/src/app/hooks/useMonitorRuntime.ts +220 -0
- package/apps/octogent/apps/web/src/app/hooks/usePersistedUiState.ts +536 -0
- package/apps/octogent/apps/web/src/app/hooks/usePollingData.ts +79 -0
- package/apps/octogent/apps/web/src/app/hooks/usePromptLibrary.ts +185 -0
- package/apps/octogent/apps/web/src/app/hooks/useTentacleGitLifecycle.ts +530 -0
- package/apps/octogent/apps/web/src/app/hooks/useTerminalCompletionNotification.ts +94 -0
- package/apps/octogent/apps/web/src/app/hooks/useTerminalMutations.ts +266 -0
- package/apps/octogent/apps/web/src/app/hooks/useTerminalStateReconciliation.ts +23 -0
- package/apps/octogent/apps/web/src/app/hooks/useUsageHeatmapPolling.ts +43 -0
- package/apps/octogent/apps/web/src/app/hooks/useWorkspaceSetup.ts +80 -0
- package/apps/octogent/apps/web/src/app/hotkeys.ts +31 -0
- package/apps/octogent/apps/web/src/app/monitorNormalizers.ts +145 -0
- package/apps/octogent/apps/web/src/app/notificationSounds.ts +164 -0
- package/apps/octogent/apps/web/src/app/terminalRuntimeStateStore.ts +261 -0
- package/apps/octogent/apps/web/src/app/terminalState.ts +21 -0
- package/apps/octogent/apps/web/src/app/types.ts +42 -0
- package/apps/octogent/apps/web/src/app/uiStateNormalizers.ts +113 -0
- package/apps/octogent/apps/web/src/app/usageNormalizers.ts +58 -0
- package/apps/octogent/apps/web/src/components/ActiveAgentsSidebar.tsx +60 -0
- package/apps/octogent/apps/web/src/components/ActivityPrimaryView.tsx +21 -0
- package/apps/octogent/apps/web/src/components/AgentStateBadge.tsx +47 -0
- package/apps/octogent/apps/web/src/components/CanvasPrimaryView.tsx +1532 -0
- package/apps/octogent/apps/web/src/components/ClearAllConversationsDialog.tsx +33 -0
- package/apps/octogent/apps/web/src/components/CodeIntelArcDiagram.tsx +245 -0
- package/apps/octogent/apps/web/src/components/CodeIntelPrimaryView.tsx +104 -0
- package/apps/octogent/apps/web/src/components/CodeIntelTreemap.tsx +138 -0
- package/apps/octogent/apps/web/src/components/ConsolePrimaryNav.tsx +31 -0
- package/apps/octogent/apps/web/src/components/ConversationsPrimaryView.tsx +243 -0
- package/apps/octogent/apps/web/src/components/DeckPrimaryView.tsx +613 -0
- package/apps/octogent/apps/web/src/components/DeleteTentacleDialog.tsx +91 -0
- package/apps/octogent/apps/web/src/components/EmptyOctopus.tsx +715 -0
- package/apps/octogent/apps/web/src/components/GitHubPrimaryView.tsx +494 -0
- package/apps/octogent/apps/web/src/components/MonitorPrimaryView.tsx +475 -0
- package/apps/octogent/apps/web/src/components/PrimaryViewRouter.tsx +99 -0
- package/apps/octogent/apps/web/src/components/PromptsPrimaryView.tsx +243 -0
- package/apps/octogent/apps/web/src/components/RuntimeStatusStrip.tsx +273 -0
- package/apps/octogent/apps/web/src/components/SettingsPrimaryView.tsx +92 -0
- package/apps/octogent/apps/web/src/components/SidebarActionPanel.tsx +124 -0
- package/apps/octogent/apps/web/src/components/SidebarConversationsList.tsx +279 -0
- package/apps/octogent/apps/web/src/components/SidebarPromptsList.tsx +116 -0
- package/apps/octogent/apps/web/src/components/TelemetryTape.tsx +106 -0
- package/apps/octogent/apps/web/src/components/TentacleGitActionsDialog.tsx +341 -0
- package/apps/octogent/apps/web/src/components/Terminal.tsx +524 -0
- package/apps/octogent/apps/web/src/components/TerminalPromptPicker.tsx +140 -0
- package/apps/octogent/apps/web/src/components/UsageHeatmap.tsx +702 -0
- package/apps/octogent/apps/web/src/components/canvas/CanvasTentaclePanel.tsx +485 -0
- package/apps/octogent/apps/web/src/components/canvas/CanvasTerminalColumn.tsx +89 -0
- package/apps/octogent/apps/web/src/components/canvas/DeleteAllTerminalsDialog.tsx +221 -0
- package/apps/octogent/apps/web/src/components/canvas/OctopusNode.tsx +307 -0
- package/apps/octogent/apps/web/src/components/canvas/SessionNode.tsx +185 -0
- package/apps/octogent/apps/web/src/components/deck/ActionCards.tsx +118 -0
- package/apps/octogent/apps/web/src/components/deck/AddTentacleForm.tsx +269 -0
- package/apps/octogent/apps/web/src/components/deck/DeckBottomActions.tsx +56 -0
- package/apps/octogent/apps/web/src/components/deck/TentaclePod.tsx +334 -0
- package/apps/octogent/apps/web/src/components/deck/WorkspaceSetupCard.tsx +105 -0
- package/apps/octogent/apps/web/src/components/deck/octopusVisuals.ts +72 -0
- package/apps/octogent/apps/web/src/components/terminalReplay.ts +62 -0
- package/apps/octogent/apps/web/src/components/terminalWheel.ts +54 -0
- package/apps/octogent/apps/web/src/components/ui/ActionButton.tsx +34 -0
- package/apps/octogent/apps/web/src/components/ui/ConfirmationDialog.tsx +86 -0
- package/apps/octogent/apps/web/src/components/ui/MarkdownContent.tsx +43 -0
- package/apps/octogent/apps/web/src/components/ui/SettingsToggle.tsx +34 -0
- package/apps/octogent/apps/web/src/components/ui/StatusBadge.tsx +24 -0
- package/apps/octogent/apps/web/src/main.tsx +17 -0
- package/apps/octogent/apps/web/src/runtime/HttpTerminalSnapshotReader.ts +87 -0
- package/apps/octogent/apps/web/src/runtime/runtimeEndpoints.ts +412 -0
- package/apps/octogent/apps/web/src/styles/chrome-and-buttons.css +272 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-activity.css +358 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-canvas.css +1843 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-code-intel.css +227 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-conversations.css +705 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-deck.css +1524 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-github.css +541 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-monitor.css +595 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-pixpack.css +81 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-prompts.css +474 -0
- package/apps/octogent/apps/web/src/styles/console-canvas-settings.css +207 -0
- package/apps/octogent/apps/web/src/styles/console-chrome-status-nav.css +441 -0
- package/apps/octogent/apps/web/src/styles/console-overrides-telemetry.css +320 -0
- package/apps/octogent/apps/web/src/styles/console-theme-tokens.css +25 -0
- package/apps/octogent/apps/web/src/styles/cortex-theme.css +412 -0
- package/apps/octogent/apps/web/src/styles/foundation.css +100 -0
- package/apps/octogent/apps/web/src/styles/sidebar-and-scrollbars.css +447 -0
- package/apps/octogent/apps/web/src/styles/terminal-and-status.css +356 -0
- package/apps/octogent/apps/web/src/styles.css +25 -0
- package/apps/octogent/apps/web/src/types/ws.d.ts +23 -0
- package/apps/octogent/apps/web/tests/CanvasPrimaryView.test.tsx +347 -0
- package/apps/octogent/apps/web/tests/HttpTerminalSnapshotReader.test.tsx +54 -0
- package/apps/octogent/apps/web/tests/RuntimeStatusStrip.test.tsx +70 -0
- package/apps/octogent/apps/web/tests/Terminal.test.tsx +87 -0
- package/apps/octogent/apps/web/tests/add-tentacle-form.test.tsx +48 -0
- package/apps/octogent/apps/web/tests/app-github-runtime.test.tsx +162 -0
- package/apps/octogent/apps/web/tests/app-monitor-runtime.test.tsx +657 -0
- package/apps/octogent/apps/web/tests/app-shell-navigation.test.tsx +109 -0
- package/apps/octogent/apps/web/tests/app-swarm-refresh.test.tsx +268 -0
- package/apps/octogent/apps/web/tests/app-ui-state-persistence.test.tsx +116 -0
- package/apps/octogent/apps/web/tests/app-workspace-setup.test.tsx +217 -0
- package/apps/octogent/apps/web/tests/canvas-tentacle-panel.test.tsx +195 -0
- package/apps/octogent/apps/web/tests/delete-all-terminals-dialog.test.tsx +76 -0
- package/apps/octogent/apps/web/tests/githubMetrics.test.tsx +52 -0
- package/apps/octogent/apps/web/tests/hotkeys.test.tsx +44 -0
- package/apps/octogent/apps/web/tests/runtimeEndpoints.test.tsx +240 -0
- package/apps/octogent/apps/web/tests/setup.ts +39 -0
- package/apps/octogent/apps/web/tests/tentacle-pod.test.tsx +62 -0
- package/apps/octogent/apps/web/tests/terminalReplay.test.ts +71 -0
- package/apps/octogent/apps/web/tests/terminalState.test.tsx +49 -0
- package/apps/octogent/apps/web/tests/terminalWheel.test.tsx +51 -0
- package/apps/octogent/apps/web/tests/test-utils/appTestHarness.ts +48 -0
- package/apps/octogent/apps/web/tests/uiPrimitives.test.tsx +31 -0
- package/apps/octogent/apps/web/tests/useAgentRuntimeStates.test.tsx +47 -0
- package/apps/octogent/apps/web/tsconfig.json +8 -0
- package/apps/octogent/apps/web/vite.api.bundle.config.mts +32 -0
- package/apps/octogent/apps/web/vite.config.ts +22 -0
- package/apps/octogent/bin/octogent +3 -0
- package/apps/octogent/biome.json +21 -0
- package/apps/octogent/docs/concepts/mental-model.md +79 -0
- package/apps/octogent/docs/concepts/runtime-and-api.md +60 -0
- package/apps/octogent/docs/concepts/tentacles.md +85 -0
- package/apps/octogent/docs/getting-started/installation.md +54 -0
- package/apps/octogent/docs/getting-started/quickstart.md +79 -0
- package/apps/octogent/docs/guides/inter-agent-messaging.md +43 -0
- package/apps/octogent/docs/guides/orchestrating-child-agents.md +49 -0
- package/apps/octogent/docs/guides/working-with-todos.md +56 -0
- package/apps/octogent/docs/index.md +40 -0
- package/apps/octogent/docs/reference/api.md +103 -0
- package/apps/octogent/docs/reference/cli.md +71 -0
- package/apps/octogent/docs/reference/experimental-features.md +28 -0
- package/apps/octogent/docs/reference/filesystem-layout.md +62 -0
- package/apps/octogent/docs/reference/troubleshooting.md +49 -0
- package/apps/octogent/package.json +35 -0
- package/apps/octogent/packages/core/AGENTS.md +31 -0
- package/apps/octogent/packages/core/package.json +12 -0
- package/apps/octogent/packages/core/src/adapters/InMemoryTerminalSnapshotReader.ts +10 -0
- package/apps/octogent/packages/core/src/application/buildTerminalList.ts +13 -0
- package/apps/octogent/packages/core/src/domain/agentRuntime.ts +18 -0
- package/apps/octogent/packages/core/src/domain/channel.ts +8 -0
- package/apps/octogent/packages/core/src/domain/completionSound.ts +14 -0
- package/apps/octogent/packages/core/src/domain/conversation.ts +48 -0
- package/apps/octogent/packages/core/src/domain/deck.ts +33 -0
- package/apps/octogent/packages/core/src/domain/git.ts +32 -0
- package/apps/octogent/packages/core/src/domain/monitor.ts +62 -0
- package/apps/octogent/packages/core/src/domain/setup.ts +27 -0
- package/apps/octogent/packages/core/src/domain/terminal.ts +17 -0
- package/apps/octogent/packages/core/src/domain/uiState.ts +22 -0
- package/apps/octogent/packages/core/src/domain/usage.ts +60 -0
- package/apps/octogent/packages/core/src/index.ts +15 -0
- package/apps/octogent/packages/core/src/ports/TerminalSnapshotReader.ts +5 -0
- package/apps/octogent/packages/core/src/util/typeCoercion.ts +20 -0
- package/apps/octogent/packages/core/tests/buildTerminalList.test.ts +75 -0
- package/apps/octogent/packages/core/tsconfig.json +7 -0
- package/apps/octogent/packages/core/tsconfig.tsbuildinfo +1 -0
- package/apps/octogent/packages/core/vitest.config.ts +7 -0
- package/apps/octogent/pnpm-lock.yaml +3212 -0
- package/apps/octogent/pnpm-workspace.yaml +3 -0
- package/apps/octogent/prompts/meta-prompt-generator.md +223 -0
- package/apps/octogent/prompts/octoboss-clean-contexts.md +30 -0
- package/apps/octogent/prompts/octoboss-reorganize-tentacles.md +29 -0
- package/apps/octogent/prompts/octoboss-reorganize-todos.md +27 -0
- package/apps/octogent/prompts/sandbox-init.md +3 -0
- package/apps/octogent/prompts/swarm-parent.md +83 -0
- package/apps/octogent/prompts/swarm-worker.md +50 -0
- package/apps/octogent/prompts/tentacle-context-init.md +1 -0
- package/apps/octogent/prompts/tentacle-planner.md +110 -0
- package/apps/octogent/prompts/tentacle-reorganize-todos.md +20 -0
- package/apps/octogent/prompts/tentacle-update-tentacle.md +18 -0
- package/apps/octogent/scripts/build-package.mjs +23 -0
- package/apps/octogent/scripts/dev.mjs +158 -0
- package/apps/octogent/scripts/smoke-public-install.mjs +271 -0
- package/apps/octogent/static/images/octogent-header.png +0 -0
- package/apps/octogent/static/images/preview_1.jpg +0 -0
- package/apps/octogent/static/images/preview_2.jpg +0 -0
- package/apps/octogent/static/images/preview_3.jpg +0 -0
- package/apps/octogent/static/images/preview_4.jpg +0 -0
- package/apps/octogent/static/images/preview_5.jpg +0 -0
- package/apps/octogent/static/images/preview_6.jpg +0 -0
- package/apps/octogent/tsconfig.base.json +16 -0
- package/bin/AGI +3 -0
- package/bin/AGI-install-app +71 -0
- package/bin/AGI-ui +16 -0
- package/bin/AGI-voice +15 -0
- package/bin/AGI-web +16 -0
- package/bin/cortex +109 -0
- package/bin/cortex-octogent +99 -0
- package/bin/import-specifier.mjs +13 -0
- package/bin/import-specifier.test.mjs +13 -0
- package/bin/octo +150 -0
- package/dist/cli.mjs +555650 -0
- package/package.json +157 -0
- package/scripts/setup-wizard.ts +390 -0
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
/* =============================================================================
|
|
2
|
+
* CORTEX THEME — Glassmorphism + 3D animations + premium polish
|
|
3
|
+
* Last-imported override layer. Keeps all structural styles intact and only
|
|
4
|
+
* reskins surfaces, buttons, cards, and motion. Pure black base preserved.
|
|
5
|
+
* ========================================================================== */
|
|
6
|
+
|
|
7
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");
|
|
8
|
+
|
|
9
|
+
:root {
|
|
10
|
+
/* Keep black canvas — layer colored glows above */
|
|
11
|
+
--cortex-bg: #000000;
|
|
12
|
+
--cortex-surface: rgba(18, 18, 22, 0.55);
|
|
13
|
+
--cortex-surface-strong: rgba(24, 24, 30, 0.72);
|
|
14
|
+
--cortex-border-glass: rgba(255, 255, 255, 0.08);
|
|
15
|
+
--cortex-border-glass-strong: rgba(255, 255, 255, 0.14);
|
|
16
|
+
--cortex-accent: #faa32c;
|
|
17
|
+
--cortex-accent-2: #ff6b2b;
|
|
18
|
+
--cortex-accent-3: #a855f7;
|
|
19
|
+
--cortex-accent-4: #22d3ee;
|
|
20
|
+
--cortex-glow-warm: 0 0 40px rgba(250, 163, 44, 0.35);
|
|
21
|
+
--cortex-glow-cool: 0 0 40px rgba(34, 211, 238, 0.28);
|
|
22
|
+
--cortex-glow-neon: 0 0 60px rgba(168, 85, 247, 0.32);
|
|
23
|
+
--cortex-shadow-float: 0 20px 60px -20px rgba(0, 0, 0, 0.9),
|
|
24
|
+
0 2px 10px -2px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
25
|
+
--cortex-shadow-lift: 0 30px 80px -30px rgba(250, 163, 44, 0.3),
|
|
26
|
+
0 10px 30px -10px rgba(0, 0, 0, 0.8);
|
|
27
|
+
--cortex-blur: 20px;
|
|
28
|
+
--cortex-blur-strong: 30px;
|
|
29
|
+
--cortex-radius: 14px;
|
|
30
|
+
--cortex-radius-lg: 20px;
|
|
31
|
+
--cortex-radius-xl: 28px;
|
|
32
|
+
--cortex-ease: cubic-bezier(0.22, 1, 0.36, 1);
|
|
33
|
+
--cortex-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
37
|
+
* Global canvas — pure black with animated aurora glows
|
|
38
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
39
|
+
body {
|
|
40
|
+
font-family: "Inter", var(--font-main) !important;
|
|
41
|
+
background: #000000 !important;
|
|
42
|
+
position: relative;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
body::before,
|
|
47
|
+
body::after {
|
|
48
|
+
content: "";
|
|
49
|
+
position: fixed;
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
z-index: 0;
|
|
52
|
+
filter: blur(120px);
|
|
53
|
+
opacity: 0.55;
|
|
54
|
+
will-change: transform;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
body::before {
|
|
58
|
+
width: 55vw;
|
|
59
|
+
height: 55vw;
|
|
60
|
+
top: -15vw;
|
|
61
|
+
right: -10vw;
|
|
62
|
+
background: radial-gradient(circle, rgba(250, 163, 44, 0.45) 0%, transparent 65%);
|
|
63
|
+
animation: cortex-aurora-a 22s ease-in-out infinite;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
body::after {
|
|
67
|
+
width: 48vw;
|
|
68
|
+
height: 48vw;
|
|
69
|
+
bottom: -12vw;
|
|
70
|
+
left: -10vw;
|
|
71
|
+
background: radial-gradient(circle, rgba(168, 85, 247, 0.42) 0%, transparent 65%);
|
|
72
|
+
animation: cortex-aurora-b 28s ease-in-out infinite;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@keyframes cortex-aurora-a {
|
|
76
|
+
0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
|
|
77
|
+
50% { transform: translate3d(-6vw, 8vw, 0) scale(1.15); }
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@keyframes cortex-aurora-b {
|
|
81
|
+
0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
|
|
82
|
+
50% { transform: translate3d(8vw, -6vw, 0) scale(1.2); }
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#root,
|
|
86
|
+
.page,
|
|
87
|
+
.console-shell,
|
|
88
|
+
.workspace-shell {
|
|
89
|
+
position: relative;
|
|
90
|
+
z-index: 1;
|
|
91
|
+
background: transparent !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
95
|
+
* Glass surface primitive — apply to all major panels
|
|
96
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
97
|
+
.console-main-canvas,
|
|
98
|
+
.workspace-setup-card,
|
|
99
|
+
.deck-pod,
|
|
100
|
+
.console-chrome,
|
|
101
|
+
.console-chrome-status,
|
|
102
|
+
.console-chrome-nav,
|
|
103
|
+
.sidebar,
|
|
104
|
+
.sidebar-panel,
|
|
105
|
+
.sidebar-card,
|
|
106
|
+
.sidebar-surface,
|
|
107
|
+
.action-card,
|
|
108
|
+
.runtime-status-strip,
|
|
109
|
+
.conversations-panel,
|
|
110
|
+
.settings-panel,
|
|
111
|
+
.canvas-panel,
|
|
112
|
+
.prompts-panel,
|
|
113
|
+
.monitor-panel,
|
|
114
|
+
.code-intel-panel,
|
|
115
|
+
.pixpack-panel,
|
|
116
|
+
.github-panel {
|
|
117
|
+
background: var(--cortex-surface) !important;
|
|
118
|
+
backdrop-filter: blur(var(--cortex-blur)) saturate(180%);
|
|
119
|
+
-webkit-backdrop-filter: blur(var(--cortex-blur)) saturate(180%);
|
|
120
|
+
border: 1px solid var(--cortex-border-glass) !important;
|
|
121
|
+
box-shadow: var(--cortex-shadow-float);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
125
|
+
* Cards — glass with subtle 3D tilt on hover
|
|
126
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
127
|
+
.workspace-setup-card,
|
|
128
|
+
.deck-pod,
|
|
129
|
+
.action-card {
|
|
130
|
+
border-radius: var(--cortex-radius-lg) !important;
|
|
131
|
+
padding: 22px !important;
|
|
132
|
+
transform-style: preserve-3d;
|
|
133
|
+
transition: transform 0.5s var(--cortex-ease),
|
|
134
|
+
box-shadow 0.5s var(--cortex-ease),
|
|
135
|
+
border-color 0.3s var(--cortex-ease);
|
|
136
|
+
position: relative;
|
|
137
|
+
overflow: hidden;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.workspace-setup-card::before,
|
|
141
|
+
.deck-pod::before,
|
|
142
|
+
.action-card::before {
|
|
143
|
+
content: "";
|
|
144
|
+
position: absolute;
|
|
145
|
+
inset: 0;
|
|
146
|
+
border-radius: inherit;
|
|
147
|
+
background: linear-gradient(
|
|
148
|
+
135deg,
|
|
149
|
+
rgba(255, 255, 255, 0.06) 0%,
|
|
150
|
+
transparent 40%,
|
|
151
|
+
transparent 60%,
|
|
152
|
+
rgba(250, 163, 44, 0.04) 100%
|
|
153
|
+
);
|
|
154
|
+
pointer-events: none;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.workspace-setup-card:hover,
|
|
158
|
+
.deck-pod:hover,
|
|
159
|
+
.action-card:hover {
|
|
160
|
+
transform: translateY(-4px) rotateX(2deg) rotateY(-1deg);
|
|
161
|
+
border-color: var(--cortex-border-glass-strong) !important;
|
|
162
|
+
box-shadow: var(--cortex-shadow-lift);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
166
|
+
* Buttons — glass pill with glow, press animation, shimmer on hover
|
|
167
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
168
|
+
button,
|
|
169
|
+
.workspace-setup-step-action,
|
|
170
|
+
.action-card button,
|
|
171
|
+
.deck-pod button {
|
|
172
|
+
position: relative;
|
|
173
|
+
overflow: hidden;
|
|
174
|
+
border-radius: 10px;
|
|
175
|
+
font-family: "Inter", var(--font-main) !important;
|
|
176
|
+
font-weight: 600;
|
|
177
|
+
letter-spacing: 0.02em;
|
|
178
|
+
transition: transform 0.2s var(--cortex-ease-spring),
|
|
179
|
+
box-shadow 0.3s var(--cortex-ease),
|
|
180
|
+
background 0.3s var(--cortex-ease);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
button:not(:disabled):hover,
|
|
184
|
+
.workspace-setup-step-action:not(:disabled):hover {
|
|
185
|
+
transform: translateY(-2px) scale(1.02);
|
|
186
|
+
box-shadow: 0 8px 24px -8px rgba(250, 163, 44, 0.55), var(--cortex-glow-warm);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
button:not(:disabled):active {
|
|
190
|
+
transform: translateY(0) scale(0.98);
|
|
191
|
+
transition: transform 0.08s ease;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* Primary action highlight */
|
|
195
|
+
.workspace-setup-step-action {
|
|
196
|
+
background: linear-gradient(135deg, var(--cortex-accent) 0%, var(--cortex-accent-2) 100%) !important;
|
|
197
|
+
color: #0a0a0a !important;
|
|
198
|
+
border: none !important;
|
|
199
|
+
padding: 10px 18px !important;
|
|
200
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.workspace-setup-step-action::after {
|
|
204
|
+
content: "";
|
|
205
|
+
position: absolute;
|
|
206
|
+
top: 0; left: -100%;
|
|
207
|
+
width: 100%;
|
|
208
|
+
height: 100%;
|
|
209
|
+
background: linear-gradient(
|
|
210
|
+
90deg,
|
|
211
|
+
transparent,
|
|
212
|
+
rgba(255, 255, 255, 0.35),
|
|
213
|
+
transparent
|
|
214
|
+
);
|
|
215
|
+
transition: left 0.6s var(--cortex-ease);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.workspace-setup-step-action:not(:disabled):hover::after {
|
|
219
|
+
left: 100%;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
223
|
+
* Text — clean, crisp, premium
|
|
224
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
225
|
+
h1, h2, h3, h4,
|
|
226
|
+
.workspace-setup-card-title,
|
|
227
|
+
.deck-pod-name {
|
|
228
|
+
font-family: "Space Grotesk", var(--font-main) !important;
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
letter-spacing: -0.01em;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.workspace-setup-card-title {
|
|
234
|
+
background: linear-gradient(120deg, #ffffff 0%, var(--cortex-accent) 100%);
|
|
235
|
+
-webkit-background-clip: text;
|
|
236
|
+
background-clip: text;
|
|
237
|
+
-webkit-text-fill-color: transparent;
|
|
238
|
+
font-size: 1.45rem !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
242
|
+
* Octopus glyph — gentle 3D floating animation
|
|
243
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
244
|
+
.workspace-setup-card-glyph,
|
|
245
|
+
.deck-pod-octopus {
|
|
246
|
+
animation: cortex-float-3d 6s ease-in-out infinite;
|
|
247
|
+
transform-style: preserve-3d;
|
|
248
|
+
filter: drop-shadow(0 10px 20px rgba(250, 163, 44, 0.25));
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
@keyframes cortex-float-3d {
|
|
252
|
+
0%, 100% {
|
|
253
|
+
transform: translateY(0) rotateY(0deg) rotateX(0deg);
|
|
254
|
+
}
|
|
255
|
+
25% {
|
|
256
|
+
transform: translateY(-6px) rotateY(5deg) rotateX(-2deg);
|
|
257
|
+
}
|
|
258
|
+
50% {
|
|
259
|
+
transform: translateY(-10px) rotateY(0deg) rotateX(-4deg);
|
|
260
|
+
}
|
|
261
|
+
75% {
|
|
262
|
+
transform: translateY(-6px) rotateY(-5deg) rotateX(-2deg);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
267
|
+
* Navigation + sidebar — glass chrome
|
|
268
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
269
|
+
.console-chrome,
|
|
270
|
+
.console-chrome-nav,
|
|
271
|
+
.console-chrome-status {
|
|
272
|
+
backdrop-filter: blur(var(--cortex-blur-strong)) saturate(200%);
|
|
273
|
+
-webkit-backdrop-filter: blur(var(--cortex-blur-strong)) saturate(200%);
|
|
274
|
+
border-bottom: 1px solid var(--cortex-border-glass) !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.sidebar,
|
|
278
|
+
.sidebar-panel {
|
|
279
|
+
backdrop-filter: blur(var(--cortex-blur)) saturate(180%);
|
|
280
|
+
-webkit-backdrop-filter: blur(var(--cortex-blur)) saturate(180%);
|
|
281
|
+
border-right: 1px solid var(--cortex-border-glass) !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.sidebar-row {
|
|
285
|
+
transition: background 0.25s var(--cortex-ease),
|
|
286
|
+
transform 0.25s var(--cortex-ease),
|
|
287
|
+
box-shadow 0.25s var(--cortex-ease);
|
|
288
|
+
border-radius: 10px;
|
|
289
|
+
margin: 2px 6px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.sidebar-row:hover {
|
|
293
|
+
background: rgba(255, 255, 255, 0.04) !important;
|
|
294
|
+
transform: translateX(3px);
|
|
295
|
+
box-shadow: inset 3px 0 0 var(--cortex-accent);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.sidebar-row-active,
|
|
299
|
+
.sidebar-row[data-active="true"] {
|
|
300
|
+
background: linear-gradient(
|
|
301
|
+
90deg,
|
|
302
|
+
rgba(250, 163, 44, 0.12),
|
|
303
|
+
rgba(250, 163, 44, 0.02)
|
|
304
|
+
) !important;
|
|
305
|
+
box-shadow: inset 3px 0 0 var(--cortex-accent);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
309
|
+
* Scrollbars — thin glass
|
|
310
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
311
|
+
::-webkit-scrollbar {
|
|
312
|
+
width: 8px;
|
|
313
|
+
height: 8px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
::-webkit-scrollbar-track {
|
|
317
|
+
background: transparent;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
::-webkit-scrollbar-thumb {
|
|
321
|
+
background: rgba(255, 255, 255, 0.08);
|
|
322
|
+
border-radius: 999px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
::-webkit-scrollbar-thumb:hover {
|
|
326
|
+
background: rgba(250, 163, 44, 0.35);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
330
|
+
* Inputs — glass with focus ring
|
|
331
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
332
|
+
input:not([type="checkbox"]):not([type="radio"]),
|
|
333
|
+
select,
|
|
334
|
+
textarea {
|
|
335
|
+
background: rgba(255, 255, 255, 0.04) !important;
|
|
336
|
+
border: 1px solid var(--cortex-border-glass) !important;
|
|
337
|
+
border-radius: 10px !important;
|
|
338
|
+
color: var(--text-primary) !important;
|
|
339
|
+
font-family: "Inter", var(--font-main) !important;
|
|
340
|
+
transition: border-color 0.25s var(--cortex-ease),
|
|
341
|
+
box-shadow 0.25s var(--cortex-ease),
|
|
342
|
+
background 0.25s var(--cortex-ease);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
input:not([type="checkbox"]):not([type="radio"]):focus,
|
|
346
|
+
select:focus,
|
|
347
|
+
textarea:focus {
|
|
348
|
+
outline: none;
|
|
349
|
+
border-color: var(--cortex-accent) !important;
|
|
350
|
+
background: rgba(255, 255, 255, 0.06) !important;
|
|
351
|
+
box-shadow: 0 0 0 3px rgba(250, 163, 44, 0.18),
|
|
352
|
+
var(--cortex-glow-warm);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
356
|
+
* Terminal — subtle glass frame preserved
|
|
357
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
358
|
+
.terminal,
|
|
359
|
+
.terminal-container {
|
|
360
|
+
border-radius: var(--cortex-radius) !important;
|
|
361
|
+
overflow: hidden;
|
|
362
|
+
box-shadow: var(--cortex-shadow-float);
|
|
363
|
+
border: 1px solid var(--cortex-border-glass) !important;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
367
|
+
* Entry animation — fade + rise for any card on mount
|
|
368
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
369
|
+
.workspace-setup-card,
|
|
370
|
+
.deck-pod,
|
|
371
|
+
.action-card,
|
|
372
|
+
.runtime-status-strip {
|
|
373
|
+
animation: cortex-rise 0.6s var(--cortex-ease) both;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.workspace-setup-card { animation-delay: 0.05s; }
|
|
377
|
+
.deck-pod:nth-child(odd) { animation-delay: 0.1s; }
|
|
378
|
+
.deck-pod:nth-child(even) { animation-delay: 0.15s; }
|
|
379
|
+
|
|
380
|
+
@keyframes cortex-rise {
|
|
381
|
+
from {
|
|
382
|
+
opacity: 0;
|
|
383
|
+
transform: translateY(14px) scale(0.98);
|
|
384
|
+
}
|
|
385
|
+
to {
|
|
386
|
+
opacity: 1;
|
|
387
|
+
transform: translateY(0) scale(1);
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
392
|
+
* Accent pulse for "Launch Cortex" CTA
|
|
393
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
394
|
+
.workspace-setup-step[data-complete="false"] .workspace-setup-step-action {
|
|
395
|
+
animation: cortex-pulse-glow 2.4s ease-in-out infinite;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
@keyframes cortex-pulse-glow {
|
|
399
|
+
0%, 100% { box-shadow: 0 4px 16px -4px rgba(250, 163, 44, 0.4); }
|
|
400
|
+
50% { box-shadow: 0 8px 28px -4px rgba(250, 163, 44, 0.7), 0 0 0 4px rgba(250, 163, 44, 0.08); }
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
404
|
+
* Reduced motion — respect user preference
|
|
405
|
+
* ────────────────────────────────────────────────────────────────────── */
|
|
406
|
+
@media (prefers-reduced-motion: reduce) {
|
|
407
|
+
*, *::before, *::after {
|
|
408
|
+
animation-duration: 0.01ms !important;
|
|
409
|
+
animation-iteration-count: 1 !important;
|
|
410
|
+
transition-duration: 0.01ms !important;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap");
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--bg-canvas: #000000;
|
|
5
|
+
--bg-surface-1: #040404;
|
|
6
|
+
--bg-surface-2: #191919;
|
|
7
|
+
--border-subtle: #5c5c5c;
|
|
8
|
+
--text-primary: #f0f0f0;
|
|
9
|
+
--text-secondary: #c8c8c8;
|
|
10
|
+
--accent-primary: #faa32c;
|
|
11
|
+
--term-red: #880f1e;
|
|
12
|
+
--term-green: #33ff66;
|
|
13
|
+
--term-blue: #1e59a3;
|
|
14
|
+
--term-warning: #ffb020;
|
|
15
|
+
--control-border-strong: #121212;
|
|
16
|
+
--control-bg-strong: #000000;
|
|
17
|
+
--sidebar-canvas: color-mix(in srgb, var(--bg-surface-1) 84%, #131a23 16%);
|
|
18
|
+
--sidebar-panel: color-mix(in srgb, var(--bg-surface-1) 78%, #1b2430 22%);
|
|
19
|
+
--sidebar-card: color-mix(in srgb, var(--bg-surface-1) 82%, #16202a 18%);
|
|
20
|
+
--sidebar-header: color-mix(in srgb, var(--bg-surface-2) 72%, #212c3a 28%);
|
|
21
|
+
--sidebar-row: color-mix(in srgb, var(--bg-surface-1) 88%, #121a22 12%);
|
|
22
|
+
--sidebar-row-hover: color-mix(in srgb, var(--sidebar-row) 76%, #263445 24%);
|
|
23
|
+
--sidebar-row-active: color-mix(in srgb, var(--sidebar-row) 62%, #2c4055 38%);
|
|
24
|
+
--sidebar-border: color-mix(in srgb, var(--border-subtle) 72%, #313d4d 28%);
|
|
25
|
+
--sidebar-border-strong: color-mix(in srgb, var(--border-subtle) 48%, #3a4f66 52%);
|
|
26
|
+
--sidebar-text-muted: color-mix(in srgb, var(--text-secondary) 84%, #9eb2c8 16%);
|
|
27
|
+
--terminal-bg: #101722;
|
|
28
|
+
--terminal-header-bg-top: #4b607d;
|
|
29
|
+
--terminal-header-bg-bottom: #3d516b;
|
|
30
|
+
--terminal-header-text: #eef3fb;
|
|
31
|
+
--terminal-scrollbar-track: color-mix(in srgb, var(--terminal-bg) 88%, #0f1622 12%);
|
|
32
|
+
--terminal-scrollbar-thumb: color-mix(in srgb, var(--accent-primary) 34%, var(--terminal-bg) 66%);
|
|
33
|
+
--terminal-scrollbar-thumb-hover: color-mix(
|
|
34
|
+
in srgb,
|
|
35
|
+
var(--accent-primary) 44%,
|
|
36
|
+
var(--terminal-bg) 56%
|
|
37
|
+
);
|
|
38
|
+
--terminal-scrollbar-thumb-active: color-mix(
|
|
39
|
+
in srgb,
|
|
40
|
+
var(--accent-primary) 54%,
|
|
41
|
+
var(--terminal-bg) 46%
|
|
42
|
+
);
|
|
43
|
+
--font-main: "PP Neue Machina Plain", "PP Neue Machina", "JetBrains Mono", "IBM Plex Mono",
|
|
44
|
+
monospace;
|
|
45
|
+
--control-font-family: var(--font-main);
|
|
46
|
+
--control-letter-spacing: 0.06em;
|
|
47
|
+
--control-line-height: 1.2;
|
|
48
|
+
--ui-base-font-size: 18px;
|
|
49
|
+
--scrollbar-size: 10px;
|
|
50
|
+
--scrollbar-track: color-mix(in srgb, var(--bg-surface-1) 88%, #121212);
|
|
51
|
+
--scrollbar-thumb: color-mix(in srgb, var(--accent-primary) 38%, var(--border-subtle) 62%);
|
|
52
|
+
--scrollbar-thumb-hover: color-mix(in srgb, var(--accent-primary) 54%, var(--border-subtle) 46%);
|
|
53
|
+
--scrollbar-thumb-active: color-mix(in srgb, var(--accent-primary) 68%, var(--border-subtle) 32%);
|
|
54
|
+
--terminal-column-min-width: 370px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
* {
|
|
58
|
+
box-sizing: border-box;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
html,
|
|
62
|
+
body,
|
|
63
|
+
#root {
|
|
64
|
+
margin: 0;
|
|
65
|
+
height: 100%;
|
|
66
|
+
min-height: 100%;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
html {
|
|
70
|
+
font-size: var(--ui-base-font-size);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
body {
|
|
74
|
+
font-family: var(--font-main);
|
|
75
|
+
background: radial-gradient(circle at top right, #111111, var(--bg-canvas) 50%);
|
|
76
|
+
color: var(--text-primary);
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.page {
|
|
81
|
+
height: 100vh;
|
|
82
|
+
min-height: 100vh;
|
|
83
|
+
display: grid;
|
|
84
|
+
grid-template-rows: auto 1fr;
|
|
85
|
+
min-width: 0;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.workspace-shell {
|
|
90
|
+
height: 100%;
|
|
91
|
+
min-height: 0;
|
|
92
|
+
display: grid;
|
|
93
|
+
grid-template-columns: auto 1fr;
|
|
94
|
+
min-width: 0;
|
|
95
|
+
overflow: hidden;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.workspace-shell--full {
|
|
99
|
+
grid-template-columns: 1fr;
|
|
100
|
+
}
|