-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
966 lines (927 loc) · 64 KB
/
Copy pathindex.html
File metadata and controls
966 lines (927 loc) · 64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-eval'; img-src 'self' data: blob: https:; connect-src 'self' https://api.github.com https://api.anthropic.com https://registry.modelcontextprotocol.io https://skills.sh https://telemetry.claudeterminal.dev https://claude-terminal-hub.claudeterminal.workers.dev; style-src 'self' 'unsafe-inline'; frame-src ct-preview:; navigate-to 'none'">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Claude Terminal</title>
<link rel="stylesheet" href="dist/styles.bundle.css">
</head>
<body>
<!-- Title Bar -->
<div class="titlebar">
<div class="titlebar-drag">
<div class="titlebar-icon">
<img src="assets/icon.ico" alt="Claude Terminal" draggable="false">
</div>
<span class="titlebar-title">Claude Terminal</span>
</div>
<!-- Usage Display -->
<div class="titlebar-usage" id="titlebar-usage" data-i18n-title="common.refresh">
<div class="usage-item" data-type="session">
<div class="usage-header">
<span class="usage-label" data-i18n="ui.session">Session</span>
<span class="usage-value"><span class="usage-percent" id="usage-percent-session">--</span><span class="usage-reset" id="usage-reset-session"></span></span>
</div>
<div class="usage-bar-container">
<div class="usage-bar" id="usage-bar-session" style="width: 0%"></div>
</div>
</div>
<div class="usage-item" data-type="weekly">
<div class="usage-header">
<span class="usage-label" data-i18n="ui.weekly">Weekly</span>
<span class="usage-value"><span class="usage-percent" id="usage-percent-weekly">--</span><span class="usage-reset" id="usage-reset-weekly"></span></span>
</div>
<div class="usage-bar-container">
<div class="usage-bar" id="usage-bar-weekly" style="width: 0%"></div>
</div>
</div>
<div class="usage-item" data-type="sonnet">
<div class="usage-header">
<span class="usage-label" data-i18n="ui.sonnet">Sonnet</span>
<span class="usage-value"><span class="usage-percent" id="usage-percent-sonnet">--</span><span class="usage-reset" id="usage-reset-sonnet"></span></span>
</div>
<div class="usage-bar-container">
<div class="usage-bar" id="usage-bar-sonnet" style="width: 0%"></div>
</div>
</div>
<div class="usage-item" data-type="extra" id="usage-item-extra" style="display: none;">
<div class="usage-header">
<span class="usage-label" data-i18n="ui.extra">Extra</span>
<span class="usage-value"><span class="usage-percent" id="usage-percent-extra">$0.00</span></span>
</div>
<div class="usage-bar-container">
<div class="usage-bar" id="usage-bar-extra" style="width: 0%"></div>
</div>
</div>
</div>
<!-- Time Tracking Display -->
<div class="titlebar-time" id="titlebar-time" data-i18n-title="ui.workTime">
<svg class="time-icon" viewBox="0 0 24 24" fill="currentColor" width="14" height="14">
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/>
</svg>
<div class="time-item" data-period="today">
<span class="time-label" data-i18n="common.today">Today</span>
<span class="time-value" id="time-today">0h</span>
</div>
<div class="time-item" data-period="week">
<span class="time-label" data-i18n="timetracking.week">Week</span>
<span class="time-value" id="time-week">0h</span>
</div>
<div class="time-item" data-period="month">
<span class="time-label" data-i18n="timetracking.month">Month</span>
<span class="time-value" id="time-month">0h</span>
</div>
</div>
<div class="titlebar-controls" role="group" aria-label="Window controls">
<button class="titlebar-btn" id="btn-minimize" data-i18n-aria-label="ui.minimize" aria-label="Minimize">
<svg viewBox="0 0 12 12"><rect y="5" width="12" height="2" fill="currentColor"/></svg>
</button>
<button class="titlebar-btn" id="btn-maximize" data-i18n-aria-label="ui.maximize" aria-label="Maximize">
<svg viewBox="0 0 12 12"><rect x="1" y="1" width="10" height="10" fill="none" stroke="currentColor" stroke-width="1.5"/></svg>
</button>
<button class="titlebar-btn btn-close" id="btn-close" aria-label="Close">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
</div>
<!-- Update Banner (GitHub Desktop style) -->
<div class="update-banner" id="update-banner" style="display: none;">
<div class="update-banner-content">
<svg class="update-icon" viewBox="0 0 24 24" fill="currentColor">
<path d="M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1-2.73 2.71-2.73 7.08 0 9.79s7.15 2.71 9.88 0C18.32 15.65 19 14.08 19 12.1h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.5-9.12 0-12.6 3.51-3.47 9.14-3.47 12.65 0L21 3v7.12z"/>
</svg>
<span class="update-message" id="update-message" data-i18n="ui.newVersion">New version available</span>
<div class="update-progress-container" id="update-progress-container" style="display: none;">
<div class="update-progress-bar" id="update-progress-bar"></div>
<span class="update-progress-text" id="update-progress-text">0%</span>
</div>
<button class="update-btn" id="update-btn" style="display: none;" data-i18n="ui.restartToUpdate">Restart to update</button>
<button class="update-changelog-toggle" id="update-changelog-toggle" style="display: none;">
<svg viewBox="0 0 24 24" fill="currentColor" width="12" height="12"><path d="M7 10l5 5 5-5z"/></svg>
<span data-i18n="updates.whatsNew">What's new</span>
</button>
<button class="update-dismiss" id="update-dismiss" data-i18n-title="common.close">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
<div class="update-changelog" id="update-changelog" style="display: none;">
<div class="update-changelog-content" id="update-changelog-content"></div>
</div>
</div>
<!-- Main Container -->
<div class="main-container">
<!-- Sidebar -->
<div class="sidebar">
<nav class="nav-tabs" role="tablist" aria-label="Main navigation">
<button class="nav-tab active" data-tab="claude" title="Claude" data-i18n-title="ui.tooltipClaude" role="tab" aria-selected="true">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.89 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8h16v10zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z"/>
</svg>
<span data-i18n="ui.tabClaude">Claude</span>
</button>
<div class="nav-separator"><span data-i18n="ui.separatorTools">Outils</span></div>
<button class="nav-tab" data-tab="git" title="Git" data-i18n-title="ui.tooltipGit">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M2.6 10.59L8.38 4.8l1.69 1.7c-.24.85.15 1.78.93 2.23v5.54c-.6.34-1 .99-1 1.73a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.74-.4-1.39-1-1.73V9.41l1.35 1.36c-.02.13-.03.26-.03.4a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.14 0-.27.01-.4.04L13.2 7.07a2 2 0 0 0-1.12-2.51L13.71 2.9 21.41 10.59a2 2 0 0 1 0 2.82L13.41 21.41a2 2 0 0 1-2.82 0L2.59 13.41a2 2 0 0 1 0-2.82z"/>
</svg>
<span data-i18n="ui.tabGit">Git</span>
</button>
<button class="nav-tab" data-tab="database" title="Database" data-i18n-title="ui.tooltipDatabase">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 3C7.58 3 4 4.79 4 7v10c0 2.21 3.58 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4zm6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23V17zm0-5c0 .5-2.13 2-6 2s-6-1.5-6-2V9.77C7.61 10.55 9.72 11 12 11s4.39-.45 6-1.23V12zm-6-3c-3.87 0-6-1.5-6-2s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2z"/>
</svg>
<span data-i18n="ui.tabDatabase">Database</span>
</button>
<button class="nav-tab" data-tab="mcp" title="MCP" data-i18n-title="ui.tooltipMcp">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z"/>
</svg>
<span data-i18n="ui.tabMcp">MCP</span>
</button>
<div class="nav-separator"><span data-i18n="ui.separatorAI">AI</span></div>
<button class="nav-tab" data-tab="plugins" title="Plugins" data-i18n-title="ui.tooltipPlugins" role="tab" aria-selected="false">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z"/>
</svg>
<span data-i18n="ui.tabPlugins">Plugins</span>
</button>
<button class="nav-tab" data-tab="skills" title="Skills" data-i18n-title="ui.tooltipSkills">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z"/>
</svg>
<span data-i18n="ui.tabSkills">Skills</span>
</button>
<button class="nav-tab" data-tab="agents" title="Agents" data-i18n-title="ui.tooltipAgents">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/>
</svg>
<span data-i18n="ui.tabAgents">Agents</span>
</button>
<button class="nav-tab" data-tab="workflows" title="Workflows" data-i18n-title="ui.tooltipWorkflows">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="6" height="6" rx="1"/><rect x="16" y="3" width="6" height="6" rx="1"/>
<rect x="9" y="15" width="6" height="6" rx="1"/>
<path d="M5 9v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9"/><path d="M12 12v3"/>
</svg>
<span data-i18n="ui.tabWorkflows">Workflows</span>
</button>
<button class="nav-tab" data-tab="control-tower" title="Control Tower" data-i18n-title="ui.tooltipControlTower">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2L2 7l10 5 10-5-10-5z"/>
<path d="M2 17l10 5 10-5"/>
<path d="M2 12l10 5 10-5"/>
</svg>
<span data-i18n="ui.tabControlTower">Control Tower</span>
</button>
<button class="nav-tab" data-tab="tasks" title="Parallel Tasks" data-i18n-title="ui.tooltipTasks">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="5" height="5" rx="1"/>
<rect x="10" y="3" width="5" height="5" rx="1"/>
<rect x="17" y="3" width="4" height="5" rx="1"/>
<line x1="5.5" y1="8" x2="5.5" y2="12"/>
<line x1="12.5" y1="8" x2="12.5" y2="12"/>
<rect x="3" y="12" width="5" height="5" rx="1"/>
<rect x="10" y="12" width="5" height="5" rx="1"/>
</svg>
<span data-i18n="parallel.tabTitle">Tasks</span>
</button>
<div class="nav-separator"><span data-i18n="ui.separatorAnalytics">Analytique</span></div>
<button class="nav-tab" data-tab="dashboard" title="Dashboard" data-i18n-title="ui.tooltipDashboard">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"/>
</svg>
<span data-i18n="ui.tabDashboard">Dashboard</span>
</button>
<button class="nav-tab" data-tab="timetracking" title="Time Tracking" data-i18n-title="ui.tooltipTimeTracking">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/>
</svg>
<span data-i18n="ui.tabTimeTracking">Time Tracking</span>
</button>
<button class="nav-tab" data-tab="session-replay" title="Session Replay" data-i18n-title="ui.tooltipSessionReplay">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/>
</svg>
<span data-i18n="ui.tabSessionReplay">Replay</span>
</button>
<div class="nav-separator nav-separator--bare"></div>
<button class="nav-tab" data-tab="memory" title="Memory" data-i18n-title="ui.tooltipMemory">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/>
</svg>
<span data-i18n="ui.memory">Memory</span>
</button>
<button class="nav-tab" data-tab="workspace" title="Workspaces" data-i18n-title="ui.tooltipWorkspace">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="7" height="7" rx="1"/>
<rect x="14" y="3" width="7" height="7" rx="1"/>
<rect x="3" y="14" width="7" height="7" rx="1"/>
<rect x="14" y="14" width="7" height="7" rx="1"/>
</svg>
<span data-i18n="workspace.title">Workspaces</span>
</button>
<button class="nav-tab" data-tab="errorlog" title="Error Log" data-i18n-title="ui.tooltipErrorLog" role="tab" aria-selected="false">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"/>
<line x1="12" y1="9" x2="12" y2="13"/>
<line x1="12" y1="17" x2="12.01" y2="17"/>
</svg>
<span data-i18n="errorLog.tabTitle">Error Log</span>
</button>
<button class="nav-tab" data-tab="connectivity" title="Connectivity" data-i18n-title="ui.tooltipConnectivity" role="tab" aria-selected="false">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"/>
</svg>
<span data-i18n="connectivity.tabTitle">Connectivity</span>
</button>
<!-- More tabs button (shown only when there are hidden tabs) -->
<div class="nav-separator nav-separator--bare" id="nav-separator-more" style="display:none"></div>
<button class="nav-tab more-tabs-btn" id="btn-more-tabs" title="Plus" style="display:none" role="tab" aria-haspopup="true">
<svg viewBox="0 0 24 24" fill="currentColor" width="18" height="18">
<path d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/>
</svg>
<span data-i18n="ui.moreTabs">Plus</span>
<span class="more-tabs-badge" id="more-tabs-badge"></span>
</button>
</nav>
<!-- More tabs dropdown (portal) -->
<div class="more-tabs-dropdown" id="more-tabs-dropdown" style="display:none" role="menu"></div>
<div class="sidebar-footer">
<button class="sidebar-collapse-btn" id="btn-collapse-sidebar" data-i18n-title="ui.collapseSidebar" title="Collapse sidebar">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="collapse-icon">
<path d="M15 18l-6-6 6-6"/>
</svg>
</button>
<button class="notification-toggle active" id="btn-notifications" data-i18n-title="ui.notifications">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"/>
</svg>
<span data-i18n="ui.notifications">Notifications</span>
</button>
<button class="settings-btn" id="btn-settings" data-i18n-title="settings.button">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z"/>
</svg>
<span data-i18n="settings.button">Settings</span>
</button>
<span class="version" id="app-version"></span>
</div>
</div>
<!-- Content Area -->
<div class="content" role="main">
<!-- Claude Tab -->
<div class="tab-content active" id="tab-claude" role="tabpanel" aria-label="Claude">
<div class="claude-layout" id="claude-layout">
<!-- Show projects button (visible when panel is hidden) -->
<button class="btn-show-projects" id="btn-show-projects" data-i18n-title="ui.showProjects" title="Show projects" aria-label="Show projects">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>
</button>
<!-- Projects Panel -->
<div class="projects-panel" role="complementary" aria-label="Projects">
<div class="panel-header">
<h2 data-i18n="projects.title">Projets</h2>
<div class="panel-actions">
<button class="btn-icon" id="btn-new-folder" data-i18n-title="projects.newFolder" aria-label="New folder">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z"/></svg>
</button>
<button class="btn-icon" id="btn-new-project" data-i18n-title="common.new" aria-label="New project">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
</button>
<button class="btn-icon" id="btn-toggle-projects" data-i18n-title="ui.hideProjects" title="Hide projects" aria-label="Toggle projects panel">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>
</button>
</div>
</div>
<div class="projects-search" id="projects-search">
<svg class="projects-search-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="projects-search-input" data-i18n-placeholder="projects.searchPlaceholder" placeholder="Search projects..." autocomplete="off" spellcheck="false">
<button class="projects-search-clear" id="projects-search-clear" style="display:none" aria-label="Clear">×</button>
</div>
<div class="projects-list" id="projects-list" role="list" aria-label="Projects"></div>
<div class="panel-resizer" id="projects-panel-resizer"></div>
</div>
<!-- File Explorer Panel -->
<div class="file-explorer-panel" id="file-explorer-panel" style="display: none;">
<div class="panel-header">
<h2 data-i18n="fileExplorer.title">Explorer</h2>
<div class="panel-actions">
<button class="btn-icon" id="btn-collapse-explorer" data-i18n-title="ui.collapseAll" title="Collapse all">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zM16.59 5.41L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"/></svg>
</button>
<button class="btn-icon" id="btn-refresh-explorer" data-i18n-title="common.refresh" title="Refresh">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>
</button>
<button class="btn-icon" id="btn-close-explorer" data-i18n-title="common.close" title="Close">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
</div>
<div class="fe-search-container" id="fe-search-container" style="display: none;">
<svg class="fe-search-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.35-4.35"/></svg>
<input type="text" id="fe-search-input" class="fe-search-input" data-i18n-placeholder="fileExplorer.searchPlaceholder" placeholder="Search files...">
<button class="fe-content-search-toggle" id="fe-content-search-toggle" data-i18n-title="fileExplorer.searchContentToggle" title="Search in contents">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="12" height="12"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
</button>
<button class="fe-sort-btn" id="fe-sort-btn" data-i18n-title="fileExplorer.sortFiles" title="Sort">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="12" height="12"><path d="M3 6h18M3 12h12M3 18h6"/></svg>
</button>
<button class="fe-search-clear" id="fe-search-clear" data-i18n-title="ui.clearSearch" title="Clear" style="display: none;">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
<div class="file-explorer-tree" id="file-explorer-tree"></div>
<div class="panel-resizer" id="file-explorer-resizer"></div>
</div>
<!-- Terminals Panel -->
<div class="terminals-panel">
<div class="terminals-header">
<button class="btn-icon btn-toggle-explorer" id="btn-toggle-explorer" data-i18n-title="ui.toggleExplorer" title="Toggle Explorer">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"/></svg>
</button>
<div class="terminals-filter" id="terminals-filter" style="display: none;">
<span class="filter-project" id="filter-project-name"></span>
<button class="filter-resume-session-btn" id="btn-resume-session" data-i18n-title="terminals.resumeSession">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M9 21h6"/>
<path d="M12 2a7 7 0 0 1 4 12.9V17a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-2.1A7 7 0 0 1 12 2z"/>
</svg>
</button>
<button class="filter-new-terminal-btn" id="btn-new-terminal" data-i18n-title="ui.newTerminal" title="New terminal (Ctrl+T)">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="12" y1="5" x2="12" y2="19"/>
<line x1="5" y1="12" x2="19" y2="12"/>
</svg>
</button>
<!-- CI/CD Status Pill -->
<div class="filter-ci-pill" id="filter-ci-pill" style="display: none;">
<div class="filter-ci-icon">
<svg class="ci-spin" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"><path d="M12 2a10 10 0 0 1 0 20"/></svg>
<svg class="ci-check" viewBox="0 0 24 24" fill="currentColor"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
<svg class="ci-fail" viewBox="0 0 24 24" fill="currentColor"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
</div>
<span class="filter-ci-text" id="filter-ci-text"></span>
<span class="filter-ci-step" id="filter-ci-step" style="display: none;"></span>
<button class="filter-ci-fix" id="filter-ci-fix" style="display: none;">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/>
</svg>
<span data-i18n="ci.fixIt">Fix it</span>
</button>
</div>
<div class="filter-git-actions" id="filter-git-actions" style="display: none;">
<div class="filter-git-group">
<button class="filter-git-btn" id="filter-btn-pull" data-i18n-title="projects.gitPull" title="Pull">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M17 11l-5 5-5-5"/><path d="M5 21h14"/></svg>
</button>
<button class="filter-git-btn" id="filter-btn-push" data-i18n-title="projects.gitPush" title="Push">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 21V9"/><path d="M7 14l5-5 5 5"/><path d="M5 3h14"/></svg>
</button>
</div>
<button class="filter-git-btn filter-btn-changes" id="filter-btn-changes" data-i18n-title="ui.viewChanges">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="12" y1="18" x2="12" y2="12"/><line x1="9" y1="15" x2="15" y2="15"/></svg>
<span data-i18n="ui.changes">Changes</span>
<span class="changes-count" id="changes-count" style="display: none;">0</span>
</button>
<div class="branch-btn-wrapper">
<button class="filter-branch-btn" id="filter-btn-branch" data-i18n-title="ui.switchBranch">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="6" y1="3" x2="6" y2="15"/><circle cx="18" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><path d="M18 9a9 9 0 0 1-9 9"/></svg>
<span id="filter-branch-name">main</span>
<span class="worktree-badge" id="worktree-badge" style="display:none">WT</span>
<svg class="branch-arrow" viewBox="0 0 12 12"><path d="M3 5l3 3 3-3" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
<!-- Branch Dropdown -->
<div class="branch-dropdown" id="branch-dropdown">
<div class="branch-dropdown-header">
<span data-i18n="ui.switchBranch">Switch branch</span>
</div>
<div class="branch-dropdown-list" id="branch-dropdown-list"></div>
</div>
</div>
</div>
<div class="actions-dropdown-wrapper" id="actions-dropdown-wrapper" style="display: none;">
<button class="filter-actions-btn" id="filter-btn-actions">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
<span data-i18n="ui.actionsLabel">Actions</span>
<svg class="actions-arrow" viewBox="0 0 12 12"><path d="M3 5l3 3 3-3" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
<div class="actions-dropdown" id="actions-dropdown"></div>
</div>
<div class="prompts-dropdown-wrapper" id="prompts-dropdown-wrapper" style="display: none;">
<button class="filter-actions-btn" id="filter-btn-prompts">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
<span data-i18n="prompts.inject">Prompts</span>
<svg class="actions-arrow" viewBox="0 0 12 12"><path d="M3 5l3 3 3-3" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
<div class="prompts-dropdown" id="prompts-dropdown"></div>
</div>
<button class="filter-clear" id="btn-show-all" data-i18n-title="ui.showAllTerminals">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
<!-- Git Changes Panel -->
<div class="git-changes-panel" id="git-changes-panel">
<div class="git-changes-header">
<div class="git-changes-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>
<span data-i18n="ui.changes">Changements</span>
<span class="git-changes-project" id="git-changes-project"></span>
</div>
<div class="git-changes-actions">
<button class="btn-icon btn-small" id="btn-refresh-changes" data-i18n-title="common.refresh">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>
</button>
<button class="btn-icon btn-small" id="btn-close-changes" data-i18n-title="common.close">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
</div>
<div class="git-changes-toolbar">
<label class="git-select-all">
<input type="checkbox" id="git-select-all">
<span data-i18n="ui.selectAll">Select all</span>
</label>
<div class="git-changes-stats" id="git-changes-stats"></div>
</div>
<div class="git-changes-list" id="git-changes-list">
<div class="git-changes-loading" data-i18n="common.loading">Loading...</div>
</div>
<div class="git-commit-section">
<div class="git-commit-header">
<span data-i18n="ui.commitMessage">Commit message</span>
<button class="btn-generate" id="btn-generate-commit" data-i18n-title="ui.generateCommitMessage">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2z"/></svg>
<span data-i18n="ui.generate">Generate</span>
</button>
<button class="btn-smart-commit" id="btn-smart-commit" style="display:none">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 3h5v5M4 20L21 3M21 16v5h-5M15 15l6 6M4 4l5 5"/></svg>
<span data-i18n="gitChanges.smartCommit">Smart Commit</span>
</button>
<button class="btn-generate-pr" id="btn-generate-pr" data-i18n-title="git.generatePr.button">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="18" cy="18" r="3"/><circle cx="6" cy="6" r="3"/><path d="M13 6h3a2 2 0 0 1 2 2v7"/><line x1="6" y1="9" x2="6" y2="21"/></svg>
<span data-i18n="git.generatePr.button">Generate PR</span>
</button>
</div>
<textarea id="git-commit-message" data-i18n-placeholder="gitChanges.commitPlaceholder" placeholder="feat: describe changes..." rows="2"></textarea>
<div class="git-commit-options">
<label class="git-amend-label" title="Amend last commit">
<input type="checkbox" id="git-amend-checkbox">
<span data-i18n="gitChanges.amendCommit">Amend</span>
</label>
<button class="git-discard-selected-btn" id="btn-discard-selected" disabled>
<svg viewBox="0 0 24 24" fill="currentColor" width="12" height="12"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
<span data-i18n="gitChanges.discardSelected">Discard</span>
</button>
<button class="git-reset-btn" id="btn-git-reset">
<svg viewBox="0 0 24 24" fill="currentColor" width="12" height="12"><path d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"/></svg>
<span data-i18n="gitChanges.undoLastCommit">Undo commit</span>
</button>
</div>
<div class="git-commit-actions">
<button class="btn-primary" id="btn-commit-selected" disabled>
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>
<span data-i18n="ui.commitSelected">Commit</span> (<span id="commit-count">0</span>)
</button>
</div>
</div>
</div>
</div>
<div class="terminals-tabs" id="terminals-tabs" role="tablist" aria-label="Terminal tabs"></div>
<div class="terminals-container" id="terminals-container" role="region" aria-label="Terminals">
<div class="empty-state" id="empty-terminals">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.89 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8h16v10z"/>
</svg>
<p data-i18n="terminals.selectProject">Select a project and click "Claude Code"</p>
<p class="hint" data-i18n="terminals.terminalOpensHere">The terminal will open here</p>
</div>
</div>
<!-- Project Detail View -->
<div class="project-detail-view" id="project-detail-view" style="display: none;">
<div class="project-detail-header">
<div class="project-detail-info">
<div class="project-detail-icon" id="project-detail-icon"></div>
<div class="project-detail-text">
<h2 id="project-detail-name"></h2>
<span class="project-detail-path" id="project-detail-path"></span>
</div>
</div>
<button class="btn-close-detail" id="btn-close-detail" data-i18n-title="common.close">
<svg viewBox="0 0 12 12"><path d="M1 1l10 10M11 1L1 11" stroke="currentColor" stroke-width="1.5" fill="none"/></svg>
</button>
</div>
<div class="project-detail-actions" id="project-detail-actions"></div>
<div class="project-detail-content" id="project-detail-content">
<!-- FiveM Console will be rendered here for FiveM projects -->
</div>
</div>
</div>
</div>
</div>
<!-- Plugins Tab -->
<div class="tab-content" id="tab-plugins">
<div class="plugins-layout">
<div class="plugins-header">
<div class="plugins-header-left">
<h2 data-i18n="plugins.title">Plugins</h2>
<div class="plugins-sub-tabs">
<button class="plugins-sub-tab active" data-subtab="discover" data-i18n="plugins.discover">Discover</button>
<button class="plugins-sub-tab" data-subtab="installed" data-i18n="plugins.installed">Installed</button>
<button class="plugins-sub-tab" data-subtab="marketplaces" data-i18n="plugins.marketplaces">Marketplaces</button>
</div>
</div>
<div class="plugins-header-right">
<div class="plugins-search-container" id="plugins-search-container">
<svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="plugins-search-input" data-i18n-placeholder="plugins.search" placeholder="Search plugins...">
</div>
<div class="plugins-category-filter" id="plugins-category-filter"></div>
</div>
</div>
<div class="plugins-content" id="plugins-content"></div>
</div>
</div>
<!-- Skills Tab -->
<div class="tab-content" id="tab-skills">
<div class="list-layout">
<div class="list-header">
<div class="skills-header-left">
<h2 data-i18n="ui.tabSkills">Skills</h2>
<p class="panel-description" data-i18n="skillsAgents.panelDescription">Skills customize how Claude responds. Agents are autonomous workers with their own tools.</p>
<div class="skills-sub-tabs">
<button class="skills-sub-tab active" data-subtab="local" data-i18n="marketplace.mySkills">My Skills</button>
<button class="skills-sub-tab" data-subtab="marketplace" data-i18n="ui.skillsMarketplace">Marketplace</button>
</div>
</div>
<div class="skills-header-right">
<button class="btn-primary" id="btn-new-skill">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
<span data-i18n="ui.newSkill">New Skill</span>
</button>
<div class="skills-search-container" id="skills-marketplace-search" style="display:none">
<svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="marketplace-search-input" data-i18n-placeholder="marketplace.searchPlaceholder" placeholder="Search skills...">
</div>
</div>
</div>
<div class="list-container" id="skills-list"></div>
</div>
</div>
<!-- Agents Tab -->
<div class="tab-content" id="tab-agents">
<div class="list-layout">
<div class="list-header">
<div>
<h2 data-i18n="ui.tabAgents">Agents</h2>
<p class="panel-description" data-i18n="skillsAgents.panelDescription">Skills customize how Claude responds. Agents are autonomous workers with their own tools.</p>
</div>
<button class="btn-primary" id="btn-new-agent">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
<span data-i18n="ui.newAgent">Nouvel Agent</span>
</button>
</div>
<div class="list-container" id="agents-list"></div>
</div>
</div>
<!-- Git Tab -->
<div class="tab-content" id="tab-git">
<div class="git-tab-layout">
<div class="git-tab-sidebar">
<div class="git-sidebar-section git-sidebar-projects">
<div class="git-sidebar-header">
<h3 data-i18n="projects.title">Projets</h3>
</div>
<div class="git-projects-list" id="git-projects-list"></div>
</div>
<div class="git-sidebar-section git-sidebar-quick-actions">
<div class="git-sidebar-header">
<h3 data-i18n="ui.quickActions">Quick Actions</h3>
</div>
<div class="git-quick-actions" id="git-quick-actions"></div>
</div>
<div class="git-sidebar-section git-sidebar-branches">
<div class="git-sidebar-header">
<h3 data-i18n="git.branches">Branches</h3>
<button class="btn-icon btn-small" id="git-btn-new-branch" data-i18n-title="gitTab.newBranch" title="New branch">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
</button>
</div>
<div class="git-branch-search" id="git-branch-search"></div>
<div class="git-branches-list" id="git-branches-list"></div>
</div>
<div class="git-sidebar-section git-sidebar-worktrees">
<div class="git-sidebar-header">
<h3 data-i18n="gitTab.worktrees">Worktrees</h3>
<div class="git-sidebar-header-actions">
<button class="btn-icon btn-small" id="git-btn-prune-worktrees" data-i18n-title="gitTab.pruneWorktrees" title="Prune stale worktrees">
<svg viewBox="0 0 24 24" fill="currentColor" width="14" height="14"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></svg>
</button>
<button class="btn-icon btn-small" id="git-btn-new-worktree" data-i18n-title="projects.newWorktree" title="New worktree">
<svg viewBox="0 0 24 24" fill="currentColor" width="14" height="14"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
</button>
</div>
</div>
<div class="git-worktrees-list" id="git-worktrees-list"></div>
</div>
<div class="git-sidebar-section git-sidebar-tags">
<div class="git-sidebar-header">
<h3 data-i18n="gitTab.tags">Tags</h3>
</div>
<div class="git-tags-list" id="git-tags-list"></div>
</div>
<div class="git-sidebar-section git-sidebar-stashes">
<div class="git-sidebar-header">
<h3 data-i18n="ui.stashes">Stashes</h3>
</div>
<div class="git-stashes-list" id="git-stashes-list"></div>
</div>
<div class="git-sidebar-section git-sidebar-remotes">
<div class="git-sidebar-header">
<h3 data-i18n="gitTab.remotes">Remotes</h3>
</div>
<div class="git-remotes-list" id="git-remotes-list"></div>
</div>
</div>
<div class="git-tab-main">
<div class="git-sub-tabs">
<button class="git-sub-tab active" data-subtab="changes">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>
<span data-i18n="ui.changes">Changes</span>
<span class="git-sub-tab-badge" id="git-changes-badge" style="display:none">0</span>
</button>
<button class="git-sub-tab" data-subtab="history">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z"/></svg>
<span data-i18n="gitTab.history">History</span>
</button>
<button class="git-sub-tab" data-subtab="pullrequests">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M6 3a3 3 0 1 0 0 6 3 3 0 0 0 0-6zM4 6a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm2 8a1 1 0 0 0-1 1v3a3 3 0 1 0 2 0v-3a1 1 0 0 0-1-1zm-2 7a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm14-7a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm-2 3a2 2 0 1 1 4 0 2 2 0 0 1-4 0zM6 7a1 1 0 0 0-1 1v5a1 1 0 1 0 2 0V8a1 1 0 0 0-1-1zm12-4a3 3 0 0 0-3 3v8a1 1 0 1 0 2 0V6a1 1 0 1 1 2 0v8a1 1 0 1 0 2 0V6a3 3 0 0 0-3-3z"/></svg>
<span data-i18n="gitTab.pullRequests">Pull Requests</span>
<span class="git-sub-tab-badge" id="git-pr-badge" style="display:none">0</span>
</button>
<button class="git-sub-tab" data-subtab="issues">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>
<span data-i18n="gitTab.issues">Issues</span>
<span class="git-sub-tab-badge" id="git-issues-badge" style="display:none">0</span>
</button>
</div>
<div class="git-sub-content" id="git-sub-content">
<div class="git-empty-state">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M2.6 10.59L8.38 4.8l1.69 1.7c-.24.85.15 1.78.93 2.23v5.54c-.6.34-1 .99-1 1.73a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.74-.4-1.39-1-1.73V9.41l1.35 1.36c-.02.13-.03.26-.03.4a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.14 0-.27.01-.4.04L13.2 7.07a2 2 0 0 0-1.12-2.51L13.71 2.9 21.41 10.59a2 2 0 0 1 0 2.82L13.41 21.41a2 2 0 0 1-2.82 0L2.59 13.41a2 2 0 0 1 0-2.82z"/>
</svg>
<p data-i18n="gitTab.selectProject">Select a project to view git information</p>
</div>
</div>
</div>
</div>
</div>
<!-- Control Tower Tab -->
<div class="tab-content" id="tab-control-tower">
<div id="ct-panel-root" style="height:100%;overflow-y:auto"></div>
</div>
<!-- Dashboard Tab -->
<div class="tab-content" id="tab-dashboard">
<div class="dashboard-layout">
<div class="dashboard-sidebar">
<div class="dashboard-sidebar-header">
<h3 data-i18n="projects.title">Projets</h3>
</div>
<div class="dashboard-projects-list" id="dashboard-projects-list"></div>
</div>
<div class="dashboard-main">
<div class="dashboard-content" id="dashboard-content">
<div class="dashboard-empty">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"/></svg>
<p data-i18n="ui.selectProjectForDashboard">Select a project to see its dashboard</p>
</div>
</div>
</div>
</div>
</div>
<!-- Time Tracking Tab -->
<div class="tab-content" id="tab-timetracking">
<div class="timetracking-container" id="timetracking-container">
<!-- Content will be rendered by JavaScript -->
</div>
</div>
<!-- Session Replay Tab -->
<div class="tab-content" id="tab-session-replay"></div>
<!-- MCP Tab -->
<div class="tab-content" id="tab-mcp">
<div class="mcp-layout">
<div class="mcp-main">
<div class="list-header">
<div class="mcp-header-left">
<h2 data-i18n="ui.mcpServers">Serveurs MCP</h2>
<p class="panel-description" data-i18n="mcpLocal.panelDescription">MCP servers extend Claude with custom tools like databases, APIs, and file systems.</p>
<div class="mcp-sub-tabs">
<button class="mcp-sub-tab active" data-subtab="local" data-i18n="mcpRegistry.myServers">My Servers</button>
<button class="mcp-sub-tab" data-subtab="registry" data-i18n="mcpRegistry.registry">Registry</button>
</div>
</div>
<div class="mcp-header-right">
<div class="mcp-search-container" id="mcp-registry-search" style="display:none">
<svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="mcp-registry-search-input" data-i18n-placeholder="mcpRegistry.searchPlaceholder" placeholder="Search MCP servers...">
</div>
</div>
</div>
<div class="mcp-list" id="mcp-list"></div>
</div>
</div>
</div>
<!-- Database Tab -->
<div class="tab-content" id="tab-database">
<div class="database-layout">
<div class="database-main">
<div class="list-header">
<div class="database-header-left">
<h2 data-i18n="database.title">Database</h2>
<div class="database-sub-tabs">
<button class="database-sub-tab active" data-subtab="connections" data-i18n="database.connections">Connections</button>
<button class="database-sub-tab" data-subtab="schema" data-i18n="database.schema">Schema</button>
<button class="database-sub-tab" data-subtab="query" data-i18n="database.query">Query</button>
</div>
</div>
<div class="database-header-right">
<div class="database-picker" id="database-picker" style="display:none">
<button class="database-picker-trigger" id="database-picker-trigger"></button>
<div class="database-picker-dropdown" id="database-picker-dropdown"></div>
</div>
<button class="btn-sm" id="database-detect-btn" data-i18n="database.autoDetect">Auto-detect</button>
<button class="btn-sm btn-accent" id="database-add-btn" data-i18n="database.addConnection">Add Connection</button>
</div>
</div>
<div class="database-content" id="database-content"></div>
</div>
</div>
</div>
<!-- Parallel Tasks Tab -->
<div class="tab-content" id="tab-tasks"></div>
<!-- Workflows Tab -->
<div class="tab-content" id="tab-workflows">
<div id="workflow-panel" style="height:100%;"></div>
</div>
<!-- Settings Tab -->
<!-- Workspace Tab -->
<div class="tab-content" id="tab-workspace">
<div class="workspace-layout" id="workspace-panel-root"></div>
</div>
<!-- Error Log Tab -->
<div class="tab-content" id="tab-errorlog">
<div id="errorlog-panel-root"></div>
</div>
<!-- Cloud Tab -->
<div class="tab-content" id="tab-connectivity"></div>
<div class="tab-content" id="tab-settings"></div>
<!-- Memory Tab -->
<div class="tab-content" id="tab-memory">
<div class="memory-layout">
<div class="memory-sidebar">
<div class="memory-sidebar-header">
<h3 data-i18n="ui.sources">Sources</h3>
<p class="panel-description" data-i18n="memory.panelDescription" style="padding: 0 12px; margin-bottom: 4px">Configure how Claude behaves. Global settings apply everywhere, project settings override them.</p>
<div class="memory-search">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="memory-search-input" data-i18n-placeholder="common.search">
</div>
</div>
<div class="memory-sources-list" id="memory-sources-list">
<div class="memory-source-divider" data-i18n="memory.globalSection">Global</div>
<div class="memory-source-item active" data-source="global">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></svg>
<span data-i18n="memory.globalMemory">Global CLAUDE.md</span>
</div>
<div class="memory-source-item" data-source="rules">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></svg>
<span data-i18n="memory.globalRules">Global Rules</span>
</div>
<div class="memory-source-item" data-source="settings">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z"/></svg>
<span data-i18n="memory.claudeSettings">Claude Settings</span>
</div>
<div class="memory-source-item" data-source="commands">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg>
<span data-i18n="memory.allowedCommands">Commands</span>
</div>
<div class="memory-source-divider" data-i18n="memory.projectsSection">Projects</div>
<div id="memory-projects-list"></div>
</div>
<div class="panel-resizer" id="memory-sidebar-resizer"></div>
</div>
<div class="memory-main">
<div class="memory-header">
<div class="memory-title">
<h2 id="memory-title" data-i18n="ui.globalMemory">Global Memory</h2>
<span class="memory-path" id="memory-path">~/.claude/CLAUDE.md</span>
</div>
<div class="memory-stats" id="memory-stats"></div>
<div class="memory-actions">
<button class="btn-secondary" id="btn-memory-refresh" data-i18n-title="common.refresh">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>
</button>
<button class="btn-secondary" id="btn-memory-open" data-i18n-title="ui.openInExplorer">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>
</button>
<button class="btn-secondary btn-template" id="btn-memory-template" data-i18n-title="ui.insertTemplate" style="display: none;">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"/></svg>
</button>
<button class="btn-primary" id="btn-memory-edit">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>
<span data-i18n="common.edit">Editer</span>
</button>
<button class="btn-primary btn-create" id="btn-memory-create" style="display: none;">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></svg>
<span data-i18n="ui.createClaudeMd">Create CLAUDE.md</span>
</button>
</div>
</div>
<div class="memory-content" id="memory-content">
<div class="memory-loading" data-i18n="common.loading">Loading...</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Toast Notifications -->
<div class="toast-container" id="toast-container"></div>
<!-- Modal -->
<div class="modal-overlay" id="modal-overlay">
<div class="modal" id="modal">
<div class="modal-header">
<h3 id="modal-title"></h3>
<button class="btn-icon modal-close" id="modal-close">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
</button>
</div>
<div class="modal-body" id="modal-body"></div>
<div class="modal-footer" id="modal-footer"></div>
</div>
</div>
<!-- Quick Picker Modal -->
<div class="quick-picker-overlay" id="quick-picker-overlay">
<div class="quick-picker">
<div class="quick-picker-search">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="quick-picker-input" data-i18n-placeholder="quickPicker.searchProjects" autocomplete="off">
<span class="quick-picker-shortcut">Ctrl+Shift+P</span>
</div>
<div class="quick-picker-list" id="quick-picker-list"></div>
<div class="quick-picker-footer">
<span><kbd>↑↓</kbd> <span data-i18n="ui.navigate">Naviguer</span></span>
<span><kbd>Enter</kbd> <span data-i18n="ui.open">Open</span></span>
<span><kbd>Esc</kbd> <span data-i18n="common.close">Close</span></span>
</div>
</div>
</div>
<!-- Context Menu -->
<div class="context-menu" id="context-menu"></div>
<!-- Input Modal -->
<div class="modal-overlay" id="input-modal">
<div class="modal-content">
<div class="modal-header" id="input-modal-title"></div>
<input type="text" class="modal-input" id="input-modal-input" placeholder="">
<div class="modal-actions">
<button class="btn-secondary" id="input-modal-cancel" data-i18n="common.cancel">Cancel</button>
<button class="btn-primary" id="input-modal-confirm" data-i18n="common.confirm">Confirm</button>
</div>
</div>
</div>
<!-- Create Skill/Agent Modal -->
<div class="modal-overlay" id="create-modal">
<div class="modal create-modal">
<div class="modal-header">
<h3 id="create-modal-title" data-i18n="ui.newSkill">New Skill</h3>
<button class="btn-icon modal-close" id="create-modal-close" data-i18n-title="common.close">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
</button>
</div>
<div class="modal-body">
<div class="create-modal-intro">
<p data-i18n="ui.describeWhatToCreate">Describe what you want to create and Claude will generate the code for you.</p>
</div>
<div class="create-modal-field">
<label for="create-modal-description" data-i18n="ui.description">Description</label>
<textarea id="create-modal-description" data-i18n-placeholder="ui.skillPlaceholder" rows="4"></textarea>
</div>
<div class="create-modal-field">
<label data-i18n="ui.targetProject">Target project</label>
<select id="create-modal-project">
<option value="" data-i18n="ui.selectProject">Select a project...</option>
</select>
<p class="field-hint" data-i18n="ui.skillAgentHint">The skill/agent will be created in this project's terminal</p>
</div>
</div>
<div class="modal-footer">
<button class="btn-secondary" id="create-modal-cancel" data-i18n="common.cancel">Cancel</button>
<button class="btn-primary btn-create-with-claude" id="create-modal-submit">
<svg viewBox="0 0 24 24" fill="currentColor" width="16" height="16"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>
<span data-i18n="ui.createWithClaude">Create with Claude</span>
</button>
</div>
</div>
</div>
<script src="dist/renderer.bundle.js"></script>
</body>
</html>