claudeck 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.
Files changed (157) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +233 -0
  3. package/cli.js +2 -0
  4. package/config/agent-chains.json +16 -0
  5. package/config/agent-dags.json +16 -0
  6. package/config/agents.json +46 -0
  7. package/config/bot-prompt.json +3 -0
  8. package/config/folders.json +66 -0
  9. package/config/prompts.json +92 -0
  10. package/config/repos.json +86 -0
  11. package/config/telegram-config.json +17 -0
  12. package/config/workflows.json +90 -0
  13. package/db.js +1198 -0
  14. package/package.json +55 -0
  15. package/plugins/claude-editor/client.css +171 -0
  16. package/plugins/claude-editor/client.js +183 -0
  17. package/plugins/event-stream/client.css +207 -0
  18. package/plugins/event-stream/client.js +271 -0
  19. package/plugins/linear/client.css +345 -0
  20. package/plugins/linear/client.js +380 -0
  21. package/plugins/linear/config.json +5 -0
  22. package/plugins/linear/server.js +312 -0
  23. package/plugins/repos/client.css +549 -0
  24. package/plugins/repos/client.js +663 -0
  25. package/plugins/repos/server.js +232 -0
  26. package/plugins/sudoku/client.css +196 -0
  27. package/plugins/sudoku/client.js +329 -0
  28. package/plugins/tasks/client.css +414 -0
  29. package/plugins/tasks/client.js +394 -0
  30. package/plugins/tasks/server.js +116 -0
  31. package/plugins/tic-tac-toe/client.css +167 -0
  32. package/plugins/tic-tac-toe/client.js +241 -0
  33. package/public/css/core/components.css +232 -0
  34. package/public/css/core/layout.css +330 -0
  35. package/public/css/core/print.css +18 -0
  36. package/public/css/core/reset.css +36 -0
  37. package/public/css/core/responsive.css +378 -0
  38. package/public/css/core/theme.css +116 -0
  39. package/public/css/core/variables.css +93 -0
  40. package/public/css/features/agent-monitor.css +297 -0
  41. package/public/css/features/agent-sidebar.css +525 -0
  42. package/public/css/features/agents.css +996 -0
  43. package/public/css/features/analytics.css +181 -0
  44. package/public/css/features/background-sessions.css +321 -0
  45. package/public/css/features/cost-dashboard.css +168 -0
  46. package/public/css/features/home.css +313 -0
  47. package/public/css/features/retro-terminal.css +88 -0
  48. package/public/css/features/telegram.css +127 -0
  49. package/public/css/features/tour.css +148 -0
  50. package/public/css/features/voice-input.css +60 -0
  51. package/public/css/features/welcome.css +241 -0
  52. package/public/css/panels/assistant-bot.css +442 -0
  53. package/public/css/panels/dev-docs.css +292 -0
  54. package/public/css/panels/file-explorer.css +322 -0
  55. package/public/css/panels/git-panel.css +221 -0
  56. package/public/css/panels/mcp-manager.css +199 -0
  57. package/public/css/panels/tips-feed.css +353 -0
  58. package/public/css/ui/commands.css +273 -0
  59. package/public/css/ui/context-gauge.css +76 -0
  60. package/public/css/ui/file-picker.css +69 -0
  61. package/public/css/ui/image-attachments.css +106 -0
  62. package/public/css/ui/messages.css +884 -0
  63. package/public/css/ui/modals.css +122 -0
  64. package/public/css/ui/parallel.css +217 -0
  65. package/public/css/ui/permissions.css +110 -0
  66. package/public/css/ui/right-panel.css +481 -0
  67. package/public/css/ui/sessions.css +689 -0
  68. package/public/css/ui/status-bar.css +425 -0
  69. package/public/css/ui/toolbox.css +206 -0
  70. package/public/data/tips.json +218 -0
  71. package/public/icons/favicon.png +0 -0
  72. package/public/icons/icon-192.png +0 -0
  73. package/public/icons/icon-512.png +0 -0
  74. package/public/icons/whaly.png +0 -0
  75. package/public/index.html +1140 -0
  76. package/public/js/core/api.js +591 -0
  77. package/public/js/core/constants.js +3 -0
  78. package/public/js/core/dom.js +270 -0
  79. package/public/js/core/events.js +10 -0
  80. package/public/js/core/plugin-loader.js +153 -0
  81. package/public/js/core/store.js +39 -0
  82. package/public/js/core/utils.js +25 -0
  83. package/public/js/core/ws.js +64 -0
  84. package/public/js/features/agent-monitor.js +222 -0
  85. package/public/js/features/agents.js +1209 -0
  86. package/public/js/features/analytics.js +397 -0
  87. package/public/js/features/attachments.js +251 -0
  88. package/public/js/features/background-sessions.js +475 -0
  89. package/public/js/features/chat.js +589 -0
  90. package/public/js/features/cost-dashboard.js +152 -0
  91. package/public/js/features/dag-editor.js +399 -0
  92. package/public/js/features/easter-egg.js +46 -0
  93. package/public/js/features/home.js +270 -0
  94. package/public/js/features/projects.js +372 -0
  95. package/public/js/features/prompts.js +228 -0
  96. package/public/js/features/sessions.js +332 -0
  97. package/public/js/features/telegram.js +131 -0
  98. package/public/js/features/tour.js +210 -0
  99. package/public/js/features/voice-input.js +185 -0
  100. package/public/js/features/welcome.js +43 -0
  101. package/public/js/features/workflows.js +277 -0
  102. package/public/js/main.js +51 -0
  103. package/public/js/panels/assistant-bot.js +445 -0
  104. package/public/js/panels/dev-docs.js +380 -0
  105. package/public/js/panels/file-explorer.js +486 -0
  106. package/public/js/panels/git-panel.js +285 -0
  107. package/public/js/panels/mcp-manager.js +311 -0
  108. package/public/js/panels/tips-feed.js +303 -0
  109. package/public/js/ui/commands.js +114 -0
  110. package/public/js/ui/context-gauge.js +100 -0
  111. package/public/js/ui/diff.js +124 -0
  112. package/public/js/ui/disabled-tools.js +36 -0
  113. package/public/js/ui/export.js +74 -0
  114. package/public/js/ui/formatting.js +206 -0
  115. package/public/js/ui/header-dropdowns.js +72 -0
  116. package/public/js/ui/input-meta.js +71 -0
  117. package/public/js/ui/max-turns.js +21 -0
  118. package/public/js/ui/messages.js +387 -0
  119. package/public/js/ui/model-selector.js +20 -0
  120. package/public/js/ui/notifications.js +232 -0
  121. package/public/js/ui/parallel.js +176 -0
  122. package/public/js/ui/permissions.js +168 -0
  123. package/public/js/ui/right-panel.js +173 -0
  124. package/public/js/ui/shortcuts.js +143 -0
  125. package/public/js/ui/sidebar-toggle.js +29 -0
  126. package/public/js/ui/status-bar.js +172 -0
  127. package/public/js/ui/tab-sdk.js +623 -0
  128. package/public/js/ui/theme.js +38 -0
  129. package/public/manifest.json +13 -0
  130. package/public/offline.html +190 -0
  131. package/public/style.css +42 -0
  132. package/public/sw.js +91 -0
  133. package/server/agent-loop.js +385 -0
  134. package/server/dag-executor.js +265 -0
  135. package/server/orchestrator.js +514 -0
  136. package/server/paths.js +61 -0
  137. package/server/plugin-mount.js +56 -0
  138. package/server/push-sender.js +31 -0
  139. package/server/routes/agents.js +294 -0
  140. package/server/routes/bot.js +45 -0
  141. package/server/routes/exec.js +35 -0
  142. package/server/routes/files.js +218 -0
  143. package/server/routes/mcp.js +82 -0
  144. package/server/routes/messages.js +36 -0
  145. package/server/routes/notifications.js +37 -0
  146. package/server/routes/projects.js +207 -0
  147. package/server/routes/prompts.js +53 -0
  148. package/server/routes/sessions.js +103 -0
  149. package/server/routes/stats.js +143 -0
  150. package/server/routes/telegram.js +71 -0
  151. package/server/routes/tips.js +135 -0
  152. package/server/routes/workflows.js +81 -0
  153. package/server/summarizer.js +55 -0
  154. package/server/telegram-poller.js +205 -0
  155. package/server/telegram-sender.js +304 -0
  156. package/server/ws-handler.js +926 -0
  157. package/server.js +179 -0
@@ -0,0 +1,313 @@
1
+ /* ── Home Page ──────────────────────────────────────── */
2
+ .home-page {
3
+ flex: 1;
4
+ overflow-y: auto;
5
+ padding: 36px 40px;
6
+ max-width: 960px;
7
+ margin: 0 auto;
8
+ width: 100%;
9
+ }
10
+
11
+ .home-page.hidden { display: none; }
12
+
13
+ .home-section {
14
+ margin-bottom: 32px;
15
+ animation: fadeInUp 0.4s var(--ease-out-expo);
16
+ animation-fill-mode: both;
17
+ }
18
+
19
+ .home-section:nth-child(2) { animation-delay: 0.08s; }
20
+ .home-section:nth-child(3) { animation-delay: 0.16s; }
21
+
22
+ .home-section-header {
23
+ display: flex;
24
+ align-items: baseline;
25
+ gap: 10px;
26
+ margin-bottom: 14px;
27
+ }
28
+
29
+ .home-section-header h2 {
30
+ font-size: 16px;
31
+ font-weight: 700;
32
+ color: var(--text);
33
+ margin: 0;
34
+ font-family: var(--font-display);
35
+ letter-spacing: 0.02em;
36
+ }
37
+
38
+ .home-subtitle {
39
+ font-size: 11px;
40
+ color: var(--text-dim);
41
+ font-family: var(--font-mono);
42
+ }
43
+
44
+ /* ── Activity Grid ─────────────────────────────────── */
45
+ .home-grid-container {
46
+ background: var(--bg-secondary);
47
+ border: 1px solid var(--border-subtle);
48
+ border-radius: var(--radius-lg);
49
+ padding: 20px 24px 16px;
50
+ position: relative;
51
+ overflow: hidden;
52
+ transition: border-color 0.3s;
53
+ }
54
+
55
+ .home-grid-container:hover {
56
+ border-color: var(--border);
57
+ }
58
+
59
+ /* Subtle gradient accent on the grid container */
60
+ .home-grid-container::before {
61
+ content: "";
62
+ position: absolute;
63
+ top: 0;
64
+ left: 0;
65
+ right: 0;
66
+ height: 2px;
67
+ background: linear-gradient(90deg, var(--accent), var(--cyan), var(--accent));
68
+ opacity: 0.3;
69
+ }
70
+
71
+ .home-grid-months {
72
+ display: flex;
73
+ gap: 0;
74
+ margin-bottom: 6px;
75
+ padding-left: 32px;
76
+ font-size: 10px;
77
+ color: var(--text-dim);
78
+ font-family: var(--font-display);
79
+ letter-spacing: 0.02em;
80
+ overflow: hidden;
81
+ }
82
+
83
+ .home-grid-months span {
84
+ flex: none;
85
+ }
86
+
87
+ .home-grid-body {
88
+ display: flex;
89
+ gap: 4px;
90
+ }
91
+
92
+ .home-grid-days {
93
+ display: grid;
94
+ grid-template-rows: repeat(7, 12px);
95
+ gap: 3px;
96
+ font-size: 9px;
97
+ color: var(--text-dim);
98
+ font-family: var(--font-mono);
99
+ width: 28px;
100
+ flex-shrink: 0;
101
+ }
102
+
103
+ .home-grid-days span {
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: flex-end;
107
+ padding-right: 4px;
108
+ }
109
+
110
+ .home-activity-grid {
111
+ display: grid;
112
+ grid-template-rows: repeat(7, 12px);
113
+ grid-auto-flow: column;
114
+ grid-auto-columns: 12px;
115
+ gap: 3px;
116
+ overflow-x: auto;
117
+ }
118
+
119
+ .home-grid-cell {
120
+ width: 12px;
121
+ height: 12px;
122
+ border-radius: 3px;
123
+ background: var(--bg-tertiary);
124
+ cursor: pointer;
125
+ position: relative;
126
+ transition: all 0.15s var(--ease-smooth);
127
+ }
128
+
129
+ .home-grid-cell:hover {
130
+ transform: scale(1.3);
131
+ z-index: 1;
132
+ }
133
+
134
+ .home-grid-cell[data-level="1"] { background: rgba(51,209,122,0.15); }
135
+ .home-grid-cell[data-level="2"] { background: rgba(51,209,122,0.35); }
136
+ .home-grid-cell[data-level="3"] { background: rgba(51,209,122,0.55); box-shadow: 0 0 4px rgba(51,209,122,0.1); }
137
+ .home-grid-cell[data-level="4"] { background: var(--accent); box-shadow: 0 0 6px rgba(51,209,122,0.2); }
138
+
139
+ html[data-theme="light"] .home-grid-cell[data-level="0"] { background: var(--bg-tertiary); }
140
+ html[data-theme="light"] .home-grid-cell[data-level="1"] { background: rgba(26,138,74,0.15); }
141
+ html[data-theme="light"] .home-grid-cell[data-level="2"] { background: rgba(26,138,74,0.30); }
142
+ html[data-theme="light"] .home-grid-cell[data-level="3"] { background: rgba(26,138,74,0.50); }
143
+ html[data-theme="light"] .home-grid-cell[data-level="4"] { background: var(--accent); }
144
+
145
+ .home-grid-legend {
146
+ display: flex;
147
+ align-items: center;
148
+ gap: 4px;
149
+ justify-content: flex-end;
150
+ margin-top: 10px;
151
+ font-size: 10px;
152
+ color: var(--text-dim);
153
+ font-family: var(--font-mono);
154
+ }
155
+
156
+ .home-legend-cell {
157
+ width: 12px;
158
+ height: 12px;
159
+ border-radius: 3px;
160
+ background: var(--bg-tertiary);
161
+ display: inline-block;
162
+ }
163
+
164
+ .home-legend-cell[data-level="1"] { background: rgba(51,209,122,0.15); }
165
+ .home-legend-cell[data-level="2"] { background: rgba(51,209,122,0.35); }
166
+ .home-legend-cell[data-level="3"] { background: rgba(51,209,122,0.55); }
167
+ .home-legend-cell[data-level="4"] { background: var(--accent); }
168
+
169
+ html[data-theme="light"] .home-legend-cell[data-level="1"] { background: rgba(26,138,74,0.15); }
170
+ html[data-theme="light"] .home-legend-cell[data-level="2"] { background: rgba(26,138,74,0.30); }
171
+ html[data-theme="light"] .home-legend-cell[data-level="3"] { background: rgba(26,138,74,0.50); }
172
+ html[data-theme="light"] .home-legend-cell[data-level="4"] { background: var(--accent); }
173
+
174
+ /* ── Tooltip ───────────────────────────────────────── */
175
+ .home-grid-tooltip {
176
+ position: fixed;
177
+ background: var(--bg-elevated);
178
+ border: 1px solid var(--border);
179
+ border-radius: var(--radius-md);
180
+ padding: 8px 12px;
181
+ font-size: 11px;
182
+ font-family: var(--font-sans);
183
+ color: var(--text);
184
+ pointer-events: none;
185
+ z-index: 1000;
186
+ white-space: nowrap;
187
+ box-shadow: var(--shadow-md);
188
+ animation: fadeIn 0.1s;
189
+ }
190
+
191
+ .home-grid-tooltip strong {
192
+ color: var(--accent);
193
+ font-family: var(--font-mono);
194
+ }
195
+
196
+ /* ── Summary Cards ─────────────────────────────────── */
197
+ .home-cards {
198
+ display: grid;
199
+ grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
200
+ gap: 12px;
201
+ animation: fadeInUp 0.4s var(--ease-out-expo);
202
+ animation-fill-mode: both;
203
+ animation-delay: 0.1s;
204
+ }
205
+
206
+ .home-card {
207
+ background: var(--bg-secondary);
208
+ border: 1px solid var(--border-subtle);
209
+ border-radius: var(--radius-lg);
210
+ padding: 18px 16px;
211
+ text-align: center;
212
+ position: relative;
213
+ overflow: hidden;
214
+ transition: all 0.25s var(--ease-smooth);
215
+ }
216
+
217
+ .home-card::before {
218
+ content: "";
219
+ position: absolute;
220
+ inset: 0;
221
+ background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
222
+ opacity: 0;
223
+ transition: opacity 0.3s;
224
+ }
225
+
226
+ .home-card:hover {
227
+ border-color: var(--border-accent);
228
+ transform: translateY(-2px);
229
+ box-shadow: var(--shadow-sm), 0 0 20px var(--accent-dim);
230
+ }
231
+
232
+ .home-card:hover::before {
233
+ opacity: 1;
234
+ }
235
+
236
+ .home-card-label {
237
+ position: relative;
238
+ font-size: 10px;
239
+ font-weight: 600;
240
+ text-transform: uppercase;
241
+ letter-spacing: 0.1em;
242
+ color: var(--text-dim);
243
+ margin-bottom: 6px;
244
+ font-family: var(--font-display);
245
+ }
246
+
247
+ .home-card-value {
248
+ position: relative;
249
+ font-size: 24px;
250
+ font-weight: 700;
251
+ font-family: var(--font-display);
252
+ color: var(--accent);
253
+ letter-spacing: -0.01em;
254
+ }
255
+
256
+ .home-card-sub {
257
+ position: relative;
258
+ font-size: 10px;
259
+ color: var(--text-dim);
260
+ margin-top: 4px;
261
+ font-family: var(--font-mono);
262
+ }
263
+
264
+ /* Card color variations */
265
+ .home-card:nth-child(2) .home-card-value { color: var(--user); }
266
+ .home-card:nth-child(3) .home-card-value { color: var(--amber); }
267
+ .home-card:nth-child(4) .home-card-value { color: var(--cyan); }
268
+
269
+ .home-card:nth-child(2)::before { background: linear-gradient(135deg, var(--user-dim) 0%, transparent 60%); }
270
+ .home-card:nth-child(2):hover { border-color: rgba(123,155,245,0.15); box-shadow: var(--shadow-sm), 0 0 20px var(--user-dim); }
271
+
272
+ .home-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(240,180,41,0.06) 0%, transparent 60%); }
273
+ .home-card:nth-child(3):hover { border-color: rgba(240,180,41,0.15); box-shadow: var(--shadow-sm), 0 0 20px rgba(240,180,41,0.05); }
274
+
275
+ .home-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(86,212,221,0.06) 0%, transparent 60%); }
276
+ .home-card:nth-child(4):hover { border-color: rgba(86,212,221,0.15); box-shadow: var(--shadow-sm), 0 0 20px rgba(86,212,221,0.05); }
277
+
278
+ /* ── Analytics on Home ─────────────────────────────── */
279
+ .home-analytics-section {
280
+ margin-top: 8px;
281
+ padding-top: 24px;
282
+ border-top: 1px solid var(--border-subtle);
283
+ }
284
+
285
+ .home-analytics-section .analytics-content {
286
+ overflow-y: visible;
287
+ padding-right: 0;
288
+ }
289
+
290
+ /* ── Home Button ───────────────────────────────────── */
291
+ .home-btn {
292
+ background: none;
293
+ border: 1px solid transparent;
294
+ color: var(--text-dim);
295
+ cursor: pointer;
296
+ padding: 4px;
297
+ border-radius: var(--radius);
298
+ display: flex;
299
+ align-items: center;
300
+ justify-content: center;
301
+ transition: all 0.2s var(--ease-smooth);
302
+ }
303
+
304
+ .home-btn:hover {
305
+ color: var(--text);
306
+ border-color: var(--border);
307
+ }
308
+
309
+ .home-btn.active {
310
+ color: var(--accent);
311
+ border-color: var(--accent);
312
+ box-shadow: var(--glow);
313
+ }
@@ -0,0 +1,88 @@
1
+ /* Easter Egg — Whaly greeting */
2
+
3
+ /* Whaly wiggle on activation */
4
+ .whaly-placeholder img.whaly-wiggle {
5
+ animation: whalyWiggle 0.5s ease-in-out;
6
+ }
7
+
8
+ @keyframes whalyWiggle {
9
+ 0% { transform: rotate(0deg) scale(1); }
10
+ 20% { transform: rotate(-15deg) scale(1.1); }
11
+ 40% { transform: rotate(12deg) scale(1.1); }
12
+ 60% { transform: rotate(-8deg) scale(1.05); }
13
+ 80% { transform: rotate(5deg) scale(1); }
14
+ 100% { transform: rotate(0deg) scale(1); }
15
+ }
16
+
17
+ /* Chat bubble — comic book speech style, above mascot */
18
+ .whaly-bubble {
19
+ position: relative;
20
+ order: -1;
21
+ background: #fffbe6;
22
+ border: 3px solid #222;
23
+ border-radius: 18px;
24
+ color: #1a1a1a;
25
+ font-family: "Comic Sans MS", "Chalkboard SE", "Patrick Hand", cursive, sans-serif;
26
+ font-size: 15px;
27
+ font-weight: 600;
28
+ line-height: 1.5;
29
+ padding: 14px 20px;
30
+ margin-bottom: 16px;
31
+ max-width: 420px;
32
+ white-space: normal;
33
+ text-align: center;
34
+ box-shadow:
35
+ 3px 3px 0 #222,
36
+ 6px 6px 0 rgba(0,0,0,0.08);
37
+ animation: bubbleIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
38
+ }
39
+
40
+ .whaly-bubble strong {
41
+ color: #d4380d;
42
+ font-size: 16px;
43
+ }
44
+
45
+ /* Comic tail pointing down */
46
+ .whaly-bubble::after {
47
+ content: "";
48
+ position: absolute;
49
+ bottom: -18px;
50
+ left: 50%;
51
+ transform: translateX(-50%);
52
+ width: 20px;
53
+ height: 20px;
54
+ background: #fffbe6;
55
+ border-right: 3px solid #222;
56
+ border-bottom: 3px solid #222;
57
+ border-radius: 0 0 4px 0;
58
+ transform: translateX(-50%) rotate(45deg) skew(8deg, 8deg);
59
+ }
60
+
61
+ /* Shadow for the tail */
62
+ .whaly-bubble::before {
63
+ content: "";
64
+ position: absolute;
65
+ bottom: -21px;
66
+ left: 50%;
67
+ width: 20px;
68
+ height: 20px;
69
+ background: #222;
70
+ border-radius: 0 0 4px 0;
71
+ transform: translateX(-42%) rotate(45deg) skew(8deg, 8deg);
72
+ z-index: -1;
73
+ }
74
+
75
+ .whaly-bubble-out {
76
+ animation: bubbleOut 0.3s ease-in forwards;
77
+ }
78
+
79
+ @keyframes bubbleIn {
80
+ 0% { opacity: 0; transform: scale(0.8); }
81
+ 60% { opacity: 1; transform: scale(1.05); }
82
+ 100% { opacity: 1; transform: scale(1); }
83
+ }
84
+
85
+ @keyframes bubbleOut {
86
+ 0% { opacity: 1; transform: scale(1); }
87
+ 100% { opacity: 0; transform: scale(0.8); }
88
+ }
@@ -0,0 +1,127 @@
1
+ /* Telegram Settings Modal */
2
+ .telegram-modal {
3
+ max-width: 480px;
4
+ }
5
+
6
+ .telegram-form {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: 14px;
10
+ }
11
+
12
+ .telegram-toggle-row {
13
+ display: flex;
14
+ align-items: center;
15
+ gap: 8px;
16
+ font-size: 13px;
17
+ color: var(--text);
18
+ cursor: pointer;
19
+ }
20
+
21
+ .telegram-toggle-row input[type="checkbox"] {
22
+ accent-color: var(--accent);
23
+ }
24
+
25
+ .telegram-field {
26
+ display: flex;
27
+ flex-direction: column;
28
+ gap: 4px;
29
+ }
30
+
31
+ .telegram-field label {
32
+ font-size: 11px;
33
+ font-weight: 600;
34
+ color: var(--text-secondary);
35
+ text-transform: uppercase;
36
+ letter-spacing: 0.04em;
37
+ }
38
+
39
+ .telegram-field input {
40
+ font-family: var(--font-mono);
41
+ font-size: 12px;
42
+ padding: 8px 10px;
43
+ }
44
+
45
+ .telegram-actions {
46
+ display: flex;
47
+ gap: 8px;
48
+ justify-content: flex-end;
49
+ margin-top: 4px;
50
+ }
51
+
52
+ .telegram-status {
53
+ font-size: 12px;
54
+ padding: 6px 10px;
55
+ border-radius: var(--radius);
56
+ text-align: center;
57
+ transition: opacity 0.2s;
58
+ }
59
+
60
+ .telegram-status.success {
61
+ color: var(--success);
62
+ background: rgba(51, 209, 122, 0.1);
63
+ border: 1px solid rgba(51, 209, 122, 0.2);
64
+ }
65
+
66
+ .telegram-status.error {
67
+ color: var(--error);
68
+ background: rgba(237, 51, 59, 0.1);
69
+ border: 1px solid rgba(237, 51, 59, 0.2);
70
+ }
71
+
72
+ .telegram-status.hidden {
73
+ display: none;
74
+ }
75
+
76
+ .telegram-notify-section {
77
+ border-top: 1px solid var(--border);
78
+ padding-top: 12px;
79
+ }
80
+
81
+ .telegram-field-label {
82
+ font-size: 11px;
83
+ font-weight: 600;
84
+ color: var(--text-secondary);
85
+ text-transform: uppercase;
86
+ letter-spacing: 0.04em;
87
+ margin-bottom: 8px;
88
+ display: block;
89
+ }
90
+
91
+ .telegram-notify-grid {
92
+ display: grid;
93
+ grid-template-columns: 1fr 1fr;
94
+ gap: 6px 12px;
95
+ }
96
+
97
+ .telegram-notify-grid .telegram-toggle-row {
98
+ font-size: 12px;
99
+ }
100
+
101
+ .telegram-help {
102
+ font-size: 11px;
103
+ color: var(--text-dim);
104
+ margin-top: 4px;
105
+ }
106
+
107
+ .telegram-help summary {
108
+ cursor: pointer;
109
+ color: var(--text-secondary);
110
+ font-size: 12px;
111
+ }
112
+
113
+ .telegram-help summary:hover {
114
+ color: var(--accent);
115
+ }
116
+
117
+ .telegram-help ol {
118
+ margin: 8px 0 0 16px;
119
+ line-height: 1.8;
120
+ }
121
+
122
+ .telegram-help code {
123
+ background: var(--bg-deep);
124
+ padding: 1px 4px;
125
+ border-radius: 3px;
126
+ font-size: 10px;
127
+ }
@@ -0,0 +1,148 @@
1
+ /* ── Driver.js Claudeck Theme ─────────────────────────── */
2
+
3
+ /* Overlay — light dim so the UI stays readable */
4
+ .driver-overlay {
5
+ background: rgba(0, 0, 0, 0.35) !important;
6
+ }
7
+
8
+ /* Popover container */
9
+ .claudeck-tour.driver-popover {
10
+ background: var(--bg-elevated) !important;
11
+ border: 1px solid var(--accent-mid) !important;
12
+ border-radius: var(--radius-lg) !important;
13
+ box-shadow: var(--shadow-lg), 0 0 30px var(--accent-glow) !important;
14
+ color: var(--text) !important;
15
+ font-family: var(--font-sans) !important;
16
+ max-width: 340px !important;
17
+ z-index: 100001 !important;
18
+ }
19
+
20
+ /* Arrow */
21
+ .claudeck-tour .driver-popover-arrow {
22
+ border: 5px solid transparent !important;
23
+ }
24
+
25
+ .claudeck-tour .driver-popover-arrow-side-left {
26
+ border-left-color: var(--bg-elevated) !important;
27
+ }
28
+
29
+ .claudeck-tour .driver-popover-arrow-side-right {
30
+ border-right-color: var(--bg-elevated) !important;
31
+ }
32
+
33
+ .claudeck-tour .driver-popover-arrow-side-top {
34
+ border-top-color: var(--bg-elevated) !important;
35
+ }
36
+
37
+ .claudeck-tour .driver-popover-arrow-side-bottom {
38
+ border-bottom-color: var(--bg-elevated) !important;
39
+ }
40
+
41
+ /* Title */
42
+ .claudeck-tour .driver-popover-title {
43
+ font-family: var(--font-display) !important;
44
+ font-size: 15px !important;
45
+ font-weight: 700 !important;
46
+ color: var(--accent) !important;
47
+ letter-spacing: 0.02em !important;
48
+ }
49
+
50
+ /* Description */
51
+ .claudeck-tour .driver-popover-description {
52
+ font-family: var(--font-sans) !important;
53
+ font-size: 13px !important;
54
+ line-height: 1.6 !important;
55
+ color: var(--text-secondary) !important;
56
+ }
57
+
58
+ .claudeck-tour .driver-popover-description kbd {
59
+ display: inline-block;
60
+ background: var(--bg-tertiary);
61
+ border: 1px solid var(--border);
62
+ border-radius: 3px;
63
+ padding: 0 5px;
64
+ font-family: var(--font-mono);
65
+ font-size: 11px;
66
+ color: var(--text);
67
+ line-height: 1.6;
68
+ }
69
+
70
+ /* Progress text */
71
+ .claudeck-tour .driver-popover-progress-text {
72
+ font-family: var(--font-mono) !important;
73
+ font-size: 10px !important;
74
+ color: var(--text-dim) !important;
75
+ }
76
+
77
+ /* Navigation buttons */
78
+ .claudeck-tour .driver-popover-navigation-btns {
79
+ gap: 6px !important;
80
+ }
81
+
82
+ .claudeck-tour .driver-popover-next-btn {
83
+ background: var(--accent) !important;
84
+ color: var(--bg) !important;
85
+ border: none !important;
86
+ border-radius: var(--radius) !important;
87
+ font-family: var(--font-display) !important;
88
+ font-size: 12px !important;
89
+ font-weight: 600 !important;
90
+ letter-spacing: 0.03em !important;
91
+ padding: 6px 16px !important;
92
+ cursor: pointer !important;
93
+ transition: all 0.15s var(--ease-smooth) !important;
94
+ text-shadow: none !important;
95
+ box-shadow: 0 0 10px var(--accent-glow) !important;
96
+ }
97
+
98
+ .claudeck-tour .driver-popover-next-btn:hover {
99
+ box-shadow: 0 0 18px var(--accent-glow) !important;
100
+ }
101
+
102
+ .claudeck-tour .driver-popover-prev-btn {
103
+ background: var(--bg-secondary) !important;
104
+ color: var(--text) !important;
105
+ border: 1px solid var(--border) !important;
106
+ border-radius: var(--radius) !important;
107
+ font-family: var(--font-display) !important;
108
+ font-size: 12px !important;
109
+ font-weight: 600 !important;
110
+ letter-spacing: 0.03em !important;
111
+ padding: 6px 16px !important;
112
+ cursor: pointer !important;
113
+ transition: all 0.15s var(--ease-smooth) !important;
114
+ text-shadow: none !important;
115
+ }
116
+
117
+ .claudeck-tour .driver-popover-prev-btn:hover {
118
+ border-color: var(--text-dim) !important;
119
+ }
120
+
121
+ /* Close button */
122
+ .claudeck-tour .driver-popover-close-btn {
123
+ color: var(--text-dim) !important;
124
+ font-size: 18px !important;
125
+ transition: color 0.15s !important;
126
+ }
127
+
128
+ .claudeck-tour .driver-popover-close-btn:hover {
129
+ color: var(--text) !important;
130
+ }
131
+
132
+ /* Highlighted element ring — strong glow so it pops without overlay */
133
+ .driver-active-element {
134
+ box-shadow: 0 0 0 3px var(--accent), 0 0 20px var(--accent-glow), 0 0 40px rgba(51, 209, 122, 0.1) !important;
135
+ border-radius: var(--radius) !important;
136
+ z-index: 100000 !important;
137
+ position: relative;
138
+ }
139
+
140
+ /* Light theme overrides */
141
+ html[data-theme="light"] .claudeck-tour.driver-popover {
142
+ border-color: var(--accent) !important;
143
+ box-shadow: var(--shadow-lg), 0 0 20px rgba(26, 138, 74, 0.12) !important;
144
+ }
145
+
146
+ html[data-theme="light"] .driver-active-element {
147
+ box-shadow: 0 0 0 3px var(--accent), 0 0 16px rgba(26, 138, 74, 0.2) !important;
148
+ }