@godmode-team/godmode 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/LICENSE +62 -0
- package/README.md +88 -0
- package/dist/deck/assets/index-Dq6YBWDo.css +10 -0
- package/dist/deck/assets/index-OeRjiyQU.js +83 -0
- package/dist/deck/index.html +17 -0
- package/dist/godmode-ui/assets/index-BPHog2ro.css +1 -0
- package/dist/godmode-ui/assets/index-D7TzQ2zb.js +4985 -0
- package/dist/godmode-ui/caleb-avatar.jpg +0 -0
- package/dist/godmode-ui/favicon-new.svg +3 -0
- package/dist/godmode-ui/favicon.ico.svg +3 -0
- package/dist/godmode-ui/favicon.svg +3 -0
- package/dist/godmode-ui/index.html +21 -0
- package/dist/godmode-ui/lightning-icon.svg +3 -0
- package/dist/godmode-ui/vite.svg +1 -0
- package/dist/index.js +7909 -0
- package/dist/index.js.map +1 -0
- package/openclaw.plugin.json +31 -0
- package/package.json +52 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
GodMode Proprietary Software License
|
|
2
|
+
Copyright (c) 2026 GodMode Team. All rights reserved.
|
|
3
|
+
|
|
4
|
+
NOTICE: This software is proprietary and confidential. Unauthorized copying,
|
|
5
|
+
distribution, modification, or use of this software, in whole or in part, is
|
|
6
|
+
strictly prohibited.
|
|
7
|
+
|
|
8
|
+
1. LICENSE GRANT
|
|
9
|
+
|
|
10
|
+
Subject to an active, paid subscription ($300/month) and compliance with
|
|
11
|
+
these terms, you are granted a limited, non-exclusive, non-transferable,
|
|
12
|
+
revocable license to install and use one (1) copy of the GodMode plugin
|
|
13
|
+
on a single OpenClaw installation.
|
|
14
|
+
|
|
15
|
+
Each license key (GM-PROD-{uuid}) is single-seat and bound to one
|
|
16
|
+
OpenClaw installation.
|
|
17
|
+
|
|
18
|
+
2. RESTRICTIONS
|
|
19
|
+
|
|
20
|
+
You may NOT:
|
|
21
|
+
(a) Copy, redistribute, sublicense, sell, or transfer this software or
|
|
22
|
+
any portion of it to any third party.
|
|
23
|
+
(b) Reverse engineer, decompile, disassemble, or attempt to derive the
|
|
24
|
+
source code.
|
|
25
|
+
(c) Create derivative works based on this software.
|
|
26
|
+
(d) Remove or alter any copyright notices, license keys, or proprietary
|
|
27
|
+
markings.
|
|
28
|
+
(e) Circumvent, disable, or interfere with the license validation
|
|
29
|
+
mechanism.
|
|
30
|
+
(f) Share your license key with any other person or entity.
|
|
31
|
+
|
|
32
|
+
3. TERMINATION
|
|
33
|
+
|
|
34
|
+
This license is automatically revoked when your subscription ends. Upon
|
|
35
|
+
cancellation, a 24-hour grace period is provided, after which the plugin
|
|
36
|
+
will cease to function.
|
|
37
|
+
|
|
38
|
+
Violation of any of these terms results in immediate license termination
|
|
39
|
+
without notice or refund.
|
|
40
|
+
|
|
41
|
+
4. OWNERSHIP
|
|
42
|
+
|
|
43
|
+
This software and all associated intellectual property remain the
|
|
44
|
+
exclusive property of the GodMode Team. No title or ownership rights
|
|
45
|
+
are transferred to you.
|
|
46
|
+
|
|
47
|
+
5. NO WARRANTY
|
|
48
|
+
|
|
49
|
+
THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
50
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
51
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
52
|
+
|
|
53
|
+
6. LIMITATION OF LIABILITY
|
|
54
|
+
|
|
55
|
+
IN NO EVENT SHALL THE GODMODE TEAM BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
56
|
+
SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING FROM THE USE OR
|
|
57
|
+
INABILITY TO USE THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
58
|
+
SUCH DAMAGES.
|
|
59
|
+
|
|
60
|
+
For the full Terms of Service, visit: https://lifeongodmode.com/terms.html
|
|
61
|
+
For the Privacy Policy, visit: https://lifeongodmode.com/privacy.html
|
|
62
|
+
Contact: legal@lifeongodmode.com
|
package/README.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# GodMode Plugin for OpenClaw
|
|
2
|
+
|
|
3
|
+
GodMode is a commercial OpenClaw plugin that adds:
|
|
4
|
+
|
|
5
|
+
- Personal operating dashboard at `/godmode`
|
|
6
|
+
- Goal/project/task/people data handlers
|
|
7
|
+
- My Day (`agentLog.*`) and workspace tooling
|
|
8
|
+
- Optional Lifetracks generation endpoints
|
|
9
|
+
|
|
10
|
+
## Requirements
|
|
11
|
+
|
|
12
|
+
- Node 22+
|
|
13
|
+
- OpenClaw `>=2026.0.0`
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
From npm:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
openclaw plugins install @godmode-team/godmode
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
From a local clone:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pnpm install
|
|
27
|
+
pnpm build
|
|
28
|
+
openclaw plugins install --link /absolute/path/to/godmode-plugin
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Configure
|
|
32
|
+
|
|
33
|
+
Set required license key:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
openclaw config set plugins.entries.godmode.config.licenseKey "GM-..."
|
|
37
|
+
openclaw config set plugins.entries.godmode.enabled true
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Optional workspace root:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
openclaw config set plugins.entries.godmode.config.workspaceRoot "~/godmode"
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Restart gateway after config changes:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
openclaw gateway restart
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Verify
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
openclaw plugins list
|
|
56
|
+
curl -fsS http://127.0.0.1:18789/godmode/health
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Then open `http://127.0.0.1:18789/godmode`.
|
|
60
|
+
|
|
61
|
+
## Build
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pnpm build
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Build outputs:
|
|
68
|
+
|
|
69
|
+
- `dist/index.js` (plugin runtime entry)
|
|
70
|
+
- `dist/godmode-ui/*` (UI assets)
|
|
71
|
+
|
|
72
|
+
`pnpm build` will bundle UI from the first available source:
|
|
73
|
+
|
|
74
|
+
1. `--ui-dir <path>` passed to `scripts/bundle-ui.mjs`
|
|
75
|
+
2. `dist/control-ui` in this repo
|
|
76
|
+
3. `../../dist/control-ui` (monorepo build output)
|
|
77
|
+
4. `assets/godmode-ui` fallback snapshot
|
|
78
|
+
|
|
79
|
+
## Optional Features
|
|
80
|
+
|
|
81
|
+
Lifetracks endpoints require a generation module. Set:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
export GODMODE_LIFETRACK_MODULE=/absolute/path/to/lifetrack/index.js
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Agent log writer startup integration is optional and auto-detected when the
|
|
88
|
+
host runtime exposes the expected module.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";._overlay_8ka91_1{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:100;display:flex;align-items:center;justify-content:center;animation:_fadeIn_8ka91_1 .15s ease}@keyframes _fadeIn_8ka91_1{0%{opacity:0}to{opacity:1}}._modal_8ka91_22{width:380px;background:#141519;border:1px solid var(--theme-border);border-radius:12px;padding:24px;animation:_slideUp_8ka91_1 .2s ease}@keyframes _slideUp_8ka91_1{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}._title_8ka91_42{font-size:15px;font-weight:600;color:var(--theme-text);margin-bottom:20px}._field_8ka91_49{margin-bottom:14px}._label_8ka91_53{display:block;font-size:11px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:6px}._input_8ka91_63{width:100%;padding:8px 10px;border-radius:6px;border:1px solid var(--theme-border);background:var(--theme-inputBg);color:var(--theme-text);font-size:13px;font-family:DM Sans,sans-serif;outline:none;transition:border-color .15s ease}._input_8ka91_63:focus{border-color:var(--theme-border)}._input_8ka91_63::placeholder{color:var(--theme-textMuted)}._row_8ka91_84{display:flex;gap:10px}._row_8ka91_84 ._field_8ka91_49{flex:1}._row_8ka91_84 ._fieldSmall_8ka91_93{width:72px;flex:none;margin-bottom:14px}._colors_8ka91_99{display:flex;gap:6px}._colorSwatch_8ka91_104{width:24px;height:24px;border-radius:6px;border:2px solid transparent;cursor:pointer;transition:all .15s ease}._colorSwatch_8ka91_104:hover{transform:scale(1.15)}._colorSwatchActive_8ka91_117{border-color:var(--theme-textMuted)}._select_8ka91_121{width:100%;padding:8px 10px;border-radius:6px;border:1px solid var(--theme-border);background:var(--theme-inputBg);color:var(--theme-text);font-size:13px;font-family:DM Sans,sans-serif;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}._select_8ka91_121 option{background:#141519}._error_8ka91_139{font-size:12px;color:#ef4444;background:#ef44441a;border:1px solid rgba(239,68,68,.2);border-radius:6px;padding:8px 10px;margin-top:12px}._actions_8ka91_149{display:flex;justify-content:flex-end;gap:8px;margin-top:20px}._cancelBtn_8ka91_156{padding:8px 16px;border-radius:6px;border:1px solid var(--theme-border);background:transparent;color:var(--theme-textMuted);font-size:12px;font-family:DM Sans,sans-serif;cursor:pointer;transition:all .15s ease}._cancelBtn_8ka91_156:hover{background:var(--theme-inputBg);color:var(--theme-textSecondary)}._createBtn_8ka91_173{padding:8px 16px;border-radius:6px;border:none;background:var(--theme-inputBg);color:var(--theme-text);font-size:12px;font-weight:600;font-family:DM Sans,sans-serif;cursor:pointer;transition:all .15s ease}._createBtn_8ka91_173:hover{background:var(--theme-codeBg)}._createBtn_8ka91_173:disabled{opacity:.3;cursor:default}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
|
|
2
|
+
Theme: GitHub Dark
|
|
3
|
+
Description: Dark theme as seen on github.com
|
|
4
|
+
Author: github.com
|
|
5
|
+
Maintainer: @Hirse
|
|
6
|
+
Updated: 2021-05-15
|
|
7
|
+
|
|
8
|
+
Outdated base version: https://github.com/primer/github-syntax-dark
|
|
9
|
+
Current colors taken from GitHub's CSS
|
|
10
|
+
*/.hljs{color:#c9d1d9;background:#0d1117}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#79c0ff}.hljs-regexp,.hljs-string,.hljs-meta .hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-comment,.hljs-code,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-tag,.hljs-selector-pseudo{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c}._column_1wr3c_2{min-width:380px;max-width:420px;height:100%;display:flex;flex-direction:column;border-right:1px solid var(--theme-border);background:var(--theme-columnBg);animation:_columnSlideIn_1wr3c_1 .4s ease both;position:relative}._column_1wr3c_2:nth-child(2n){background:var(--theme-columnBgAlt)}._column_1wr3c_2:hover{box-shadow:inset 0 0 40px #ffffff03}@keyframes _columnSlideIn_1wr3c_1{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}._header_1wr3c_36{padding:14px 16px;border-bottom:1px solid var(--theme-border);display:flex;align-items:center;gap:10px;flex-shrink:0;background:var(--theme-headerBg)}._agentIcon_1wr3c_46{width:32px;height:32px;border-radius:8px;border:1px solid;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}._headerInfo_1wr3c_58{flex:1;min-width:0}._headerRow_1wr3c_63{display:flex;align-items:center;gap:8px}._agentName_1wr3c_69{font-size:14px;font-weight:600;color:var(--theme-text)}._headerMeta_1wr3c_75{font-size:11px;color:var(--theme-textMuted);font-family:JetBrains Mono,monospace;margin-top:2px;display:flex;align-items:center;gap:6px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._headerUsage_1wr3c_88{font-size:10px;color:var(--theme-textMuted);font-family:JetBrains Mono,monospace;margin-top:3px;display:flex;align-items:center;gap:6px}._metaDot_1wr3c_98{opacity:.4}._headerActions_1wr3c_102{display:flex;gap:4px}._headerBtn_1wr3c_107{width:28px;height:28px;border-radius:6px;border:1px solid var(--theme-borderLight);background:var(--theme-columnBg);color:var(--theme-textMuted);cursor:pointer;font-size:13px;display:flex;align-items:center;justify-content:center;transition:all .15s ease}._headerBtn_1wr3c_107:hover{background:var(--theme-columnBg);color:var(--theme-textSecondary)}._statusBadge_1wr3c_128{display:flex;align-items:center;gap:4px}._statusDot_1wr3c_134{width:6px;height:6px;border-radius:50%}._statusDotPulse_1wr3c_140{animation:_pulse_1wr3c_1 2s ease-in-out infinite}._statusLabel_1wr3c_145{font-size:10px;font-family:JetBrains Mono,monospace;text-transform:uppercase;letter-spacing:.05em}@keyframes _pulse_1wr3c_1{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)}}._messages_1wr3c_165{flex:1;overflow-y:auto;padding:8px 4px;scroll-behavior:smooth}._messages_1wr3c_165::-webkit-scrollbar{width:4px}._messages_1wr3c_165::-webkit-scrollbar-track{background:transparent}._messages_1wr3c_165::-webkit-scrollbar-thumb{background:var(--theme-columnBgAlt);border-radius:2px}._messages_1wr3c_165::-webkit-scrollbar-thumb:hover{background:var(--theme-codeBg)}._messageBubble_1wr3c_190{padding:2px 10px 4px}._messageBubble_1wr3c_190+._messageBubble_1wr3c_190{margin-top:16px}._userMsg_1wr3c_198,._assistantMsg_1wr3c_202{margin-top:6px}._roleLabel_1wr3c_206{font-size:10px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:1px}._assistantMsg_1wr3c_202 ._roleLabel_1wr3c_206{color:var(--theme-textMuted)}._userMsg_1wr3c_198 ._roleLabel_1wr3c_206{text-align:right;color:#22d3eebf}._messageText_1wr3c_224{font-size:16px;line-height:1.08;color:var(--theme-text);white-space:pre-wrap;word-break:break-word;border-radius:12px;background:var(--theme-columnBg);border:1px solid var(--theme-borderLight);padding:4px 6px}._userMsg_1wr3c_198 ._messageText_1wr3c_224{font-size:12px;line-height:1;color:var(--theme-text);font-family:JetBrains Mono,monospace;background:#22d3ee1c;border:1px solid rgba(34,211,238,.35)}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224{white-space:normal;line-height:1.22}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 :is(h1,h2,h3,h4){margin:.5em 0 0;line-height:1;font-weight:700}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 h1{font-size:1.16em}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 h2{font-size:1.08em}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 h3{font-size:1.01em}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 p{margin:12px 0;line-height:1.22}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 ul,._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 ol{margin:.04em 0 .06em .85em;padding:0}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 li{margin:0;line-height:1.18}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 li>p{margin:0}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 li+li{margin-top:.02em}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224>:first-child{margin-top:0!important}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224>:last-child{margin-bottom:0!important}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 code{font-family:JetBrains Mono,monospace;font-size:.9em;line-height:1;background:var(--theme-columnBgAlt);border:1px solid var(--theme-inputBorder);border-radius:6px;padding:.05em .28em}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 pre{margin:.12em 0;padding:.24em .4em;border-radius:8px;background:#00000047;border:1px solid var(--theme-border);overflow-x:auto}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 pre code{background:transparent;border:none;padding:0}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 blockquote{margin:.12em 0;padding:0 0 0 .5em;border-left:3px solid var(--theme-quoteBorder);color:var(--theme-textSecondary)}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 a{color:#7dd3fc;text-decoration:underline}._assistantMsg_1wr3c_202 ._messageText_1wr3c_224 img{max-width:100%;height:auto;display:block}._cursor_1wr3c_345{display:inline-block;width:7px;height:16px;border-radius:1px;opacity:.7;animation:_cursorBlink_1wr3c_1 .8s step-end infinite;vertical-align:text-bottom;margin-left:2px}@keyframes _cursorBlink_1wr3c_1{0%,to{opacity:1}50%{opacity:0}}._thinkingBubble_1wr3c_367{padding:6px 12px;margin:4px 0;display:flex;align-items:center;gap:8px;font-size:12px;font-family:JetBrains Mono,monospace;opacity:.7}._thinkingDot_1wr3c_378{animation:_thinkPulse_1wr3c_1 1.5s ease-in-out infinite}@keyframes _thinkPulse_1wr3c_1{0%,to{opacity:.4}50%{opacity:1}}._toolBubble_1wr3c_392{padding:6px 12px;margin:4px 0;display:flex;align-items:center;gap:6px;font-size:12px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted)}._toolIcon_1wr3c_403{font-size:11px}._emptyState_1wr3c_408{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:12px;color:var(--theme-textMuted);font-size:13px;text-align:center;padding:20px}._emptyIcon_1wr3c_421{font-size:32px;opacity:.3}._inputArea_1wr3c_427{border-top:1px solid var(--theme-border);flex-shrink:0;background:var(--theme-columnBg);position:relative}._inputWrapper_1wr3c_434{display:flex;align-items:flex-end;gap:8px;background:var(--theme-inputBg);border-radius:8px;border:1px solid var(--theme-inputBorder);padding:8px 12px;margin:10px 12px;transition:border-color .15s ease}._inputWrapper_1wr3c_434:focus-within{border-color:var(--theme-inputFocus)}._input_1wr3c_427{flex:1;background:transparent;border:none;outline:none;color:var(--theme-text);font-size:14px;font-family:DM Sans,sans-serif;line-height:1.5;min-height:88px;max-height:220px;resize:vertical}._input_1wr3c_427::placeholder{color:var(--theme-textMuted)}._input_1wr3c_427:disabled{opacity:.4}._sendBtn_1wr3c_472{width:28px;height:28px;border-radius:6px;border:none;background:var(--theme-columnBg);color:var(--theme-textMuted);cursor:default;font-size:14px;display:flex;align-items:center;justify-content:center;transition:all .15s ease;flex-shrink:0}._sendBtn_1wr3c_472:not(:disabled){cursor:pointer}._streamingBar_1wr3c_493{position:absolute;bottom:0;left:0;right:0;height:2px;opacity:.5;animation:_streamPulse_1wr3c_1 1.5s ease-in-out infinite}@keyframes _streamPulse_1wr3c_1{0%,to{opacity:.2}50%{opacity:.6}}._compactionDivider_1wr3c_514{display:flex;align-items:center;gap:10px;padding:12px;margin:4px 0}._compactionLine_1wr3c_522{flex:1;height:1px;background:var(--theme-columnBgAlt)}._compactionLabel_1wr3c_528{font-size:10px;font-family:JetBrains Mono,monospace;color:#ffffff40;white-space:nowrap;text-transform:uppercase;letter-spacing:.04em}._deleteBtn_1wr3c_538{width:28px;height:28px;border-radius:6px;border:1px solid var(--theme-borderLight);background:var(--theme-columnBg);color:var(--theme-textMuted);cursor:pointer;font-size:15px;display:flex;align-items:center;justify-content:center;transition:all .15s ease}._deleteBtn_1wr3c_538:hover{background:#ef44441a;border-color:#ef44444d;color:#ef4444}._confirmDelete_1wr3c_559{background:#ef444426;border-color:#ef444466;color:#ef4444;animation:_pulse_1wr3c_1 1s ease-in-out infinite}._failoverBadge_1wr3c_567{font-size:10px;font-family:JetBrains Mono,monospace;color:#facc15;background:#facc151a;border:1px solid rgba(250,204,21,.2);border-radius:4px;padding:1px 6px;margin-left:6px;white-space:nowrap}._bar_xheuu_1{height:30px;border-top:1px solid rgba(255,255,255,.06);display:flex;align-items:center;padding:0 16px;flex-shrink:0;background:transparent;font-size:11px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);gap:16px}._connectedReady_xheuu_15,._connectedIdle_xheuu_16,._disconnected_xheuu_17,._error_xheuu_18{color:inherit}._sep_xheuu_22{opacity:.3}._spacer_xheuu_26{flex:1}._container_1mmsb_1{display:flex;align-items:center;gap:8px}._label_1mmsb_7{font-size:12px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);text-transform:uppercase;letter-spacing:.05em}._select_1mmsb_15{background:var(--theme-inputBg);border:1px solid var(--theme-inputBorder);border-radius:6px;color:var(--theme-text);font-size:13px;font-family:DM Sans,sans-serif;padding:4px 8px;cursor:pointer;transition:all .15s ease;outline:none}._select_1mmsb_15:hover{border-color:var(--theme-inputFocus)}._select_1mmsb_15:focus{border-color:var(--theme-inputFocus);box-shadow:0 0 0 2px var(--theme-inputFocus)}._select_1mmsb_15 option{background:var(--theme-bgSecondary);color:var(--theme-text)}._bar_1ni96_1{height:48px;border-bottom:1px solid var(--theme-border);display:flex;align-items:center;padding:0 16px;flex-shrink:0;background:var(--theme-columnBg);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);z-index:10}._logo_1ni96_14{display:flex;align-items:center;gap:10px;margin-right:24px}._logoIcon_1ni96_21{width:26px;height:26px;border-radius:6px;background:linear-gradient(135deg,#22d3ee,#a78bfa,#fb923c);background-size:200% 200%;animation:_gradientShift_1ni96_1 6s ease infinite;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;color:#000}@keyframes _gradientShift_1ni96_1{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}._logoText_1ni96_48{font-size:15px;font-weight:700;color:var(--theme-text);letter-spacing:-.02em}._logoBadge_1ni96_55{font-size:10px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);background:var(--theme-columnBgAlt);padding:2px 6px;border-radius:4px;border:1px solid var(--theme-border)}._tabs_1ni96_66{display:flex;gap:2px;flex:1}._tab_1ni96_66{padding:6px 14px;border-radius:6px;border:none;background:transparent;color:var(--theme-textMuted);font-size:13px;font-family:DM Sans,sans-serif;font-weight:500;cursor:pointer;transition:all .15s ease}._tab_1ni96_66:hover{background:var(--theme-inputBg);color:var(--theme-text)}._tabActive_1ni96_90{background:#ffffff29;color:var(--theme-text)}._tabCount_1ni96_95{margin-left:6px;font-size:10px;opacity:.5}._stats_1ni96_102{display:flex;align-items:center;gap:20px;font-size:11px;font-family:JetBrains Mono,monospace;color:var(--theme-textMuted);margin-right:16px}._stat_1ni96_102{display:flex;align-items:center;gap:6px}._statDot_1ni96_118{width:5px;height:5px;border-radius:50%}._statValue_1ni96_124{color:var(--theme-textMuted);font-variant-numeric:tabular-nums}._addBtn_1ni96_130{padding:6px 12px;border-radius:6px;border:1px solid var(--theme-border);background:var(--theme-inputBg);color:var(--theme-textMuted);font-size:12px;font-family:DM Sans,sans-serif;cursor:pointer;display:flex;align-items:center;gap:6px;transition:all .15s ease}._addBtn_1ni96_130:hover{background:var(--theme-columnBgAlt);color:var(--theme-textSecondary)}._addBtn_1ni96_130 span{font-size:14px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body,#root{height:100%;width:100%;overflow:hidden}:root{--theme-bg: #12151d;--theme-bgSecondary: #1a1e2e;--theme-bgTertiary: #0f1119;--theme-text: rgba(255, 255, 255, .9);--theme-textSecondary: rgba(255, 255, 255, .7);--theme-textMuted: rgba(255, 255, 255, .5);--theme-border: rgba(255, 255, 255, .1);--theme-borderLight: rgba(255, 255, 255, .07);--theme-scrollbar: rgba(255, 255, 255, .16);--theme-scrollbarTrack: rgba(255, 255, 255, .05);--theme-columnBg: rgba(255, 255, 255, .06);--theme-columnBgAlt: rgba(255, 255, 255, .08);--theme-columnHover: rgba(255, 255, 255, .01);--theme-headerBg: rgba(255, 255, 255, .07);--theme-inputBg: rgba(255, 255, 255, .1);--theme-inputBorder: rgba(255, 255, 255, .14);--theme-inputFocus: rgba(255, 255, 255, .24);--theme-codeBg: rgba(255, 255, 255, .08);--theme-codeBlockBg: rgba(0, 0, 0, .28);--theme-quoteBorder: rgba(255, 255, 255, .25);--theme-link: #7dd3fc}body{font-family:DM Sans,sans-serif;background:var(--theme-bg);color:var(--theme-text);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transition:background-color .3s ease,color .3s ease}.deck-root{width:100%;height:100%;display:flex;flex-direction:column;overflow:hidden}.deck-columns{flex:1;display:flex;overflow-x:auto;overflow-y:hidden}.deck-columns::-webkit-scrollbar{height:6px}.deck-columns::-webkit-scrollbar-track{background:var(--theme-scrollbarTrack)}.deck-columns::-webkit-scrollbar-thumb{background:var(--theme-scrollbar);border-radius:3px}
|