@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,320 @@
|
|
|
1
|
+
.console-shell .dashboard-deck-shell {
|
|
2
|
+
border-right: 1px solid #2b2f36;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.console-shell .active-agents-sidebar {
|
|
6
|
+
background: #0b0f14;
|
|
7
|
+
border-right: 1px solid #2b2f36;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.console-shell .active-agents-footer {
|
|
11
|
+
background: #0f131a;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.console-shell .active-agents-section,
|
|
15
|
+
.console-shell .active-agents-group {
|
|
16
|
+
border-color: #2b2f36;
|
|
17
|
+
background: #11161d;
|
|
18
|
+
box-shadow: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.console-shell .active-agents-section-toggle,
|
|
22
|
+
.console-shell .active-agents-group-header {
|
|
23
|
+
background: #181f28;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.console-shell .active-agents-section-toggle:hover {
|
|
27
|
+
background: #1d2631;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.console-shell .active-agents-section-title,
|
|
31
|
+
.console-shell .active-agents-group h3 {
|
|
32
|
+
color: #e6e8ec;
|
|
33
|
+
font-size: 0.78rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.console-shell .active-agents-section-meta,
|
|
37
|
+
.console-shell .active-agents-group-count,
|
|
38
|
+
.console-shell .active-agents-agent-row--child,
|
|
39
|
+
.console-shell .active-agents-codex-usage-label {
|
|
40
|
+
color: #a9b0ba;
|
|
41
|
+
font-size: 0.72rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.console-shell .active-agents-agent-row {
|
|
45
|
+
background: #10161e;
|
|
46
|
+
border-bottom-color: #252b33;
|
|
47
|
+
font-size: 0.84rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.console-shell .active-agents-agent-row:hover {
|
|
51
|
+
background: #16202b;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.console-shell .active-agents-agent-row--root {
|
|
55
|
+
background: #121a23;
|
|
56
|
+
border-left-color: #d6a21a;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.console-shell .active-agents-codex-usage {
|
|
60
|
+
border-color: #2b2f36;
|
|
61
|
+
background: #0c131b;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.console-shell .active-agents-codex-usage-meta {
|
|
65
|
+
color: #d6a21a;
|
|
66
|
+
font-size: 0.7rem;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.console-shell .active-agents-codex-usage-percent,
|
|
70
|
+
.console-shell .active-agents-codex-usage-credits,
|
|
71
|
+
.console-shell .active-agents-codex-usage-status {
|
|
72
|
+
font-size: 0.74rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.console-shell .terminals {
|
|
76
|
+
background: #050607;
|
|
77
|
+
padding: 0;
|
|
78
|
+
gap: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.console-shell .empty-state {
|
|
82
|
+
border: 1px dashed #2b2f36;
|
|
83
|
+
background: #090c10;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.console-shell .empty-state h2 {
|
|
87
|
+
color: #d6a21a;
|
|
88
|
+
font-size: 1rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.console-shell .empty-state p {
|
|
92
|
+
color: #a9b0ba;
|
|
93
|
+
font-size: 0.84rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.console-shell .terminal-column {
|
|
97
|
+
border: 1px solid #2b2f36;
|
|
98
|
+
background: #0b0d10;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.console-shell .terminal-divider {
|
|
102
|
+
flex-basis: 6px;
|
|
103
|
+
border-left: 1px solid #2b2f36;
|
|
104
|
+
border-right: 1px solid #11151b;
|
|
105
|
+
background: linear-gradient(180deg, #141920, #0b0f15);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.console-shell .terminal-column-header {
|
|
109
|
+
background: #161b23;
|
|
110
|
+
border-bottom: 1px solid #2b2f36;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.console-shell .terminal-column-header h2 {
|
|
114
|
+
color: #d6a21a;
|
|
115
|
+
font-size: 0.78rem;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.console-shell .terminal-name-editor {
|
|
119
|
+
background: #1e2631;
|
|
120
|
+
color: #e6e8ec;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.console-shell .terminal-workspace-badge {
|
|
124
|
+
background: #233346;
|
|
125
|
+
border-color: #2f4258;
|
|
126
|
+
color: #bad8ff;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.console-shell .terminal-workspace-badge--shared {
|
|
130
|
+
background: #3a2f14;
|
|
131
|
+
border-color: #604a1a;
|
|
132
|
+
color: #f3cf72;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.console-shell .terminal-git-cluster {
|
|
136
|
+
background: #1d2734;
|
|
137
|
+
border-color: #2f4258;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.console-shell .terminal-header-actions {
|
|
141
|
+
gap: 0.14rem;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.console-shell .terminal-pane {
|
|
145
|
+
background: #0b0d10;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.console-shell .terminal-header {
|
|
149
|
+
background: linear-gradient(
|
|
150
|
+
180deg,
|
|
151
|
+
color-mix(in srgb, var(--accent-primary) 90%, #ffd89d 10%) 0%,
|
|
152
|
+
color-mix(in srgb, var(--accent-primary) 78%, #d9851c 22%) 100%
|
|
153
|
+
);
|
|
154
|
+
border-bottom-color: color-mix(in srgb, #121212 35%, transparent);
|
|
155
|
+
color: #121212;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.console-shell .terminal-pane--selected .terminal-header {
|
|
159
|
+
background: linear-gradient(
|
|
160
|
+
180deg,
|
|
161
|
+
color-mix(in srgb, var(--accent-primary) 90%, #ffd89d 10%) 0%,
|
|
162
|
+
color-mix(in srgb, var(--accent-primary) 78%, #d9851c 22%) 100%
|
|
163
|
+
);
|
|
164
|
+
border-bottom-color: color-mix(in srgb, #121212 35%, transparent);
|
|
165
|
+
color: #121212;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.console-shell .terminal-pane--selected .terminal-title {
|
|
169
|
+
color: #121212;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.console-shell .terminal-title {
|
|
173
|
+
color: #121212;
|
|
174
|
+
font-size: 0.72rem;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.console-shell .terminal-mount {
|
|
178
|
+
background: #101722;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.console-shell .pill,
|
|
182
|
+
.console-shell .status-badge {
|
|
183
|
+
border-color: color-mix(in srgb, #000000 55%, #2b2f36 45%);
|
|
184
|
+
font-size: 0.68rem;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.console-shell .pill.idle,
|
|
188
|
+
.console-shell .status-badge.idle {
|
|
189
|
+
background: #0d2a57;
|
|
190
|
+
color: #e8f2ff;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.console-shell .pill.processing,
|
|
194
|
+
.console-shell .status-badge.processing {
|
|
195
|
+
background: #25d366;
|
|
196
|
+
color: #031700;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.console-shell .pill.queued,
|
|
200
|
+
.console-shell .status-badge.queued {
|
|
201
|
+
background: #d6a21a;
|
|
202
|
+
color: #161103;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.console-shell .pill.blocked,
|
|
206
|
+
.console-shell .status-badge.blocked {
|
|
207
|
+
background: #8c0b12;
|
|
208
|
+
color: #ffdddd;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.console-telemetry-tape {
|
|
212
|
+
border-top: 1px solid #2b2f36;
|
|
213
|
+
background: #050607;
|
|
214
|
+
overflow: hidden;
|
|
215
|
+
white-space: nowrap;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.console-telemetry-track {
|
|
219
|
+
display: inline-flex;
|
|
220
|
+
align-items: center;
|
|
221
|
+
gap: 1.2rem;
|
|
222
|
+
min-width: max-content;
|
|
223
|
+
padding: 0.22rem 0.55rem;
|
|
224
|
+
animation-name: consoleTelemetryScroll;
|
|
225
|
+
animation-duration: 60s;
|
|
226
|
+
animation-timing-function: linear;
|
|
227
|
+
animation-iteration-count: infinite;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.console-telemetry-item {
|
|
231
|
+
display: grid;
|
|
232
|
+
grid-auto-flow: column;
|
|
233
|
+
align-items: center;
|
|
234
|
+
gap: 0.36rem;
|
|
235
|
+
font-size: 0.72rem;
|
|
236
|
+
letter-spacing: 0.06em;
|
|
237
|
+
font-variant-numeric: tabular-nums;
|
|
238
|
+
color: #b3bdcb;
|
|
239
|
+
text-decoration: none;
|
|
240
|
+
white-space: nowrap;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.console-telemetry-item strong {
|
|
244
|
+
color: #dce6f7;
|
|
245
|
+
font-size: 0.7rem;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.console-telemetry-source {
|
|
249
|
+
color: #d6a21a;
|
|
250
|
+
font-size: 0.78rem;
|
|
251
|
+
line-height: 1;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.console-telemetry-snippet {
|
|
255
|
+
max-width: 30ch;
|
|
256
|
+
overflow: hidden;
|
|
257
|
+
text-overflow: ellipsis;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.console-telemetry-likes {
|
|
261
|
+
color: #25d366;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
a.console-telemetry-item:hover .console-telemetry-snippet,
|
|
265
|
+
a.console-telemetry-item:focus-visible .console-telemetry-snippet {
|
|
266
|
+
text-decoration: underline;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
a.console-telemetry-item:focus-visible {
|
|
270
|
+
outline: 1px solid color-mix(in srgb, var(--accent-primary) 70%, #f0cf75);
|
|
271
|
+
outline-offset: 2px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
@keyframes consoleTelemetryScroll {
|
|
275
|
+
from {
|
|
276
|
+
transform: translateX(0);
|
|
277
|
+
}
|
|
278
|
+
to {
|
|
279
|
+
transform: translateX(-50%);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
@media (max-width: 940px) {
|
|
284
|
+
.console-shell .chrome {
|
|
285
|
+
grid-template-columns: 1fr;
|
|
286
|
+
gap: 0.24rem;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.console-shell .chrome-right {
|
|
290
|
+
grid-column: 1;
|
|
291
|
+
justify-self: start;
|
|
292
|
+
flex-wrap: wrap;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.console-shell .console-status-strip {
|
|
296
|
+
grid-template-columns: 1fr;
|
|
297
|
+
gap: 0.28rem;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.console-shell .console-primary-nav {
|
|
301
|
+
grid-template-columns: 1fr;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.console-shell .console-primary-nav-hint {
|
|
305
|
+
white-space: normal;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.github-overview {
|
|
309
|
+
grid-template-rows: auto auto minmax(220px, 1fr);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.github-overview-stats {
|
|
313
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.github-overview-graph-meta {
|
|
317
|
+
flex-direction: column;
|
|
318
|
+
align-items: flex-start;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bg-canvas: #050607;
|
|
3
|
+
--bg-surface-1: #0b0d10;
|
|
4
|
+
--bg-surface-2: #12151b;
|
|
5
|
+
--border-subtle: #2b2f36;
|
|
6
|
+
--text-primary: #e6e8ec;
|
|
7
|
+
--text-secondary: #a9b0ba;
|
|
8
|
+
--accent-primary: #d6a21a;
|
|
9
|
+
--term-red: #8c0b12;
|
|
10
|
+
--term-green: #25d366;
|
|
11
|
+
--term-blue: #0d2a57;
|
|
12
|
+
--term-warning: #ffb020;
|
|
13
|
+
--terminal-bg: #101722;
|
|
14
|
+
--terminal-header-bg-top: #254570;
|
|
15
|
+
--terminal-header-bg-bottom: #1e385a;
|
|
16
|
+
--terminal-header-text: #e6e8ec;
|
|
17
|
+
--control-border-strong: #2b2f36;
|
|
18
|
+
--control-bg-strong: #0b0d10;
|
|
19
|
+
--ui-base-font-size: 17px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
background: radial-gradient(circle at top right, #11161e 0%, var(--bg-canvas) 54%);
|
|
24
|
+
color: var(--text-primary);
|
|
25
|
+
}
|