-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1075 lines (1041 loc) · 55.1 KB
/
index.html
File metadata and controls
1075 lines (1041 loc) · 55.1 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
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A modern dashboard for managing GitHub pull requests"
/>
<title>reviewGOOSE - GitHub PR Dashboard</title>
<link rel="stylesheet" href="https://reviewGOOSE.dev/assets/styles.css?v=BUILD_TIMESTAMP" />
<link rel="icon" href="https://reviewGOOSE.dev/favicon.ico" />
<link rel="preconnect" href="https://api.github.com" />
<link rel="dns-prefetch" href="https://api.github.com" />
<link rel="preconnect" href="https://avatars.githubusercontent.com" />
<link rel="dns-prefetch" href="https://avatars.githubusercontent.com" />
<link rel="modulepreload" href="https://reviewGOOSE.dev/assets/app.js?v=BUILD_TIMESTAMP" />
<link rel="modulepreload" href="https://reviewGOOSE.dev/assets/user.js?v=BUILD_TIMESTAMP" />
<link rel="modulepreload" href="https://reviewGOOSE.dev/assets/utils.js?v=BUILD_TIMESTAMP" />
<link rel="modulepreload" href="https://reviewGOOSE.dev/assets/workspace.js?v=BUILD_TIMESTAMP" />
</head>
<body>
<div id="app">
<!-- Header -->
<header class="dashboard-header">
<div class="container">
<div class="header-content">
<div class="header-left">
<button
id="hamburgerMenu"
class="hamburger-menu"
aria-label="Menu"
aria-expanded="false"
>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
<h1 class="header-title">
<a
href="/"
class="header-logo-link"
>🚀
<span class="gradient-text"
>reviewGOOSE</span
></a
>
</h1>
<div class="controls">
<input
type="search"
id="searchInput"
class="search-input"
placeholder="Search PRs..."
aria-label="Search pull requests"
/>
<!-- Filters in header -->
<div class="header-filters" id="headerFilters" hidden>
<div class="filter-group filter-group-compact">
<button type="button" id="hideOrgsDropdown" class="filter-dropdown-btn">
<span>Hide PRs in...</span>
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M4.427 7.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 7H4.604a.25.25 0 00-.177.427z"/>
</svg>
</button>
<div id="hideOrgsMenu" class="filter-dropdown-menu" hidden>
<!-- Org items will be dynamically added here -->
</div>
</div>
<div class="filter-group">
<label class="filter-checkbox">
<input
type="checkbox"
id="globalFilterStale"
/>
<span title="Hide PRs last modified more than 90 days ago">Hide stale PRs</span>
</label>
</div>
</div>
</div>
</div>
<div class="header-right">
<div id="userInfo" class="user-info">
<button id="loginBtn" class="btn btn-primary">
Login with GitHub
</button>
</div>
</div>
</div>
</div>
</header>
<!-- Slide-out Menu -->
<aside id="slideMenu" class="slide-menu">
<div class="slide-menu-header">
<h2 class="slide-menu-title">Menu</h2>
<button
id="closeMenu"
class="close-menu"
aria-label="Close menu"
>
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M18 6L6 18M6 6l12 12" />
</svg>
</button>
</div>
<div class="workspace-selector-container">
<select
id="workspaceSelect"
class="workspace-select"
aria-label="Select workspace"
>
<option value="">Personal</option>
</select>
</div>
<nav class="slide-menu-nav">
<a href="/" id="dashboardLink" class="menu-link">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M16 3h5v5M8 3H3v5M16 21h5v-5M8 21H3v-5M12 8v8M8 12h8"
/>
</svg>
Pull Requests
</a>
<a
href="/notifications"
id="notificationsLink"
class="menu-link"
>
<span class="menu-emoji">📢</span>
Notifications
</a>
<a href="/stats" id="statsLink" class="menu-link">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M12 20V10M6 20V4m12 16v-6" />
<rect
x="3"
y="20"
width="18"
height="1"
fill="currentColor"
/>
</svg>
Statistics
</a>
<a
href="/changelog"
id="changelogLink"
class="menu-link"
>
<svg
width="20"
height="20"
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"
></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
</svg>
Changelog
</a>
<a
href="/leaderboard"
id="leaderboardLink"
class="menu-link"
>
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<rect x="4" y="12" width="3" height="8" rx="1" />
<rect x="10.5" y="6" width="3" height="14" rx="1" />
<rect x="17" y="9" width="3" height="11" rx="1" />
</svg>
Leaderboard
</a>
</nav>
</aside>
<!-- Menu Backdrop -->
<div id="menuBackdrop" class="menu-backdrop"></div>
<!-- Main Content -->
<main class="main-content">
<div class="container">
<!-- Login Prompt -->
<div id="loginPrompt" class="login-prompt" hidden>
<div class="card login-card">
<svg
class="login-icon"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
/>
</svg>
<h2>Welcome to reviewGOOSE</h2>
<p class="login-tagline">
<strong>PRs that merge in minutes, not days.</strong>
</p>
<p class="login-description">
A deterministic state machine that tracks every PR from creation through merge.
Get notified when it's your turn to act - and only then.
</p>
<div class="login-features">
<div class="login-feature">🧠 Always know whose turn it is</div>
<div class="login-feature">🔕 Zero notification noise</div>
<div class="login-feature">⚡ Ship 20X faster</div>
</div>
<div class="login-options">
<a
id="demoButton"
href="?demo=true"
class="btn btn-secondary btn-large"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"
/>
<path
d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>
Try Demo Mode
</a>
<button
id="githubAppLoginBtn"
class="btn btn-primary btn-large"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
/>
</svg>
Login with GitHub App
</button>
<button
id="patLoginBtn"
class="btn btn-outline btn-large"
>
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M15 7h3a5 5 0 015 5 5 5 0 01-5 5h-3m-6 0H6a5 5 0 01-5-5 5 5 0 015-5h3"
/>
<line x1="8" y1="12" x2="16" y2="12" />
</svg>
Use Personal Access Token
</button>
</div>
<div class="login-note">
<strong>Note:</strong> GitHub OAuth Apps may not
show all PRs in your repositories, particularly
those created by bots (like Dependabot). For
complete access, use a Personal Access Token.
</div>
</div>
</div>
<!-- GitHub App Installation Modal -->
<div id="githubAppModal" class="modal" hidden>
<div
id="githubAppModalBackdrop"
class="modal-backdrop"
></div>
<div class="modal-content">
<div class="modal-header">
<h3>Install reviewGOOSE GitHub App</h3>
<button
id="closeGitHubAppModalBtn"
class="modal-close"
>
×
</button>
</div>
<div class="modal-body">
<p>
To use the GitHub App authentication, you
need to first install the reviewGOOSE
app on your GitHub account or organization.
</p>
<ol>
<li>
Visit
<a
href="https://github.com/apps/reviewGOOSE-real-time"
target="_blank"
rel="noopener"
>reviewGOOSE GitHub App</a
>
</li>
<li>
Click "Install" or "Configure" to add it
to your repositories
</li>
<li>
Select the repositories you want to
access
</li>
<li>Complete the installation</li>
<li>
Come back here and click "Continue to
Login"
</li>
</ol>
<div class="modal-actions">
<button
id="cancelGitHubAppBtn"
class="btn btn-secondary"
>
Cancel
</button>
<button
id="proceedWithOAuthBtn"
class="btn btn-primary"
>
Continue to Login
</button>
</div>
</div>
</div>
</div>
<!-- PAT Instructions Modal -->
<div id="patModal" class="modal" hidden>
<div
id="patModalBackdrop"
class="modal-backdrop"
></div>
<div class="modal-content">
<div class="modal-header">
<h3>Create a GitHub Personal Access Token</h3>
<button
id="closePATModalBtn"
class="modal-close"
>
×
</button>
</div>
<div class="modal-body">
<p>
<strong>Quick method:</strong> If you have
the GitHub CLI installed, run:
</p>
<pre class="code-block"><code>gh auth token</code></pre>
<p>Then paste the token below.</p>
<hr class="divider" />
<p>
<strong>Alternative:</strong> Visit
<a
href="https://github.com/settings/personal-access-tokens"
target="_blank"
rel="noopener"
>GitHub Personal Access Tokens</a
>
to create a longer-lived token with these
permissions:
</p>
<ul class="permission-list">
<li>
<strong>Pull requests:</strong>
Read-only
</li>
</ul>
<div class="pat-input-group">
<input
type="password"
id="patInput"
class="pat-input"
placeholder="Paste your token here"
/>
<button
id="submitPATBtn"
class="btn btn-primary"
>
Save Token
</button>
</div>
<div
id="patError"
class="error-message"
hidden
></div>
</div>
</div>
</div>
<!-- PR Sections -->
<div id="prSections" class="pr-sections" hidden>
<!-- Loading State -->
<div
id="prLoadingOverlay"
class="pr-loading-state"
hidden
>
<div class="pr-loading-content">
<div class="pr-loading-animation">
<div class="pr-loading-spinner"></div>
<div class="pr-loading-icon">⚡</div>
</div>
<div class="pr-loading-text">
<h3>Loading pull requests</h3>
<p id="prLoadingStatus">Searching GitHub</p>
<div
id="prLoadingProgress"
class="pr-loading-progress"
hidden
>
<span class="pr-count-found"
><strong id="prCountFound"
>0</strong
>
PRs found</span
>
<span class="pr-count-loaded" hidden
>Loading
<strong id="prCountLoaded"
>0</strong
>
details</span
>
</div>
</div>
</div>
</div>
<!-- Incoming PRs -->
<section class="pr-section">
<header class="section-header">
<div class="section-title">
<svg
class="section-icon icon-incoming"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M19 14l-7 7m0 0l-7-7m7 7V3" />
</svg>
<h2>Incoming</h2>
<span id="incomingCount" class="count"
>0</span
>
</div>
<div class="section-stats">
<span
id="incomingAverage"
class="stat-text"
></span>
</div>
</header>
<div id="incomingPRs" class="pr-list"></div>
</section>
<!-- Outgoing PRs -->
<section class="pr-section">
<header class="section-header">
<div class="section-title">
<svg
class="section-icon icon-outgoing"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M5 10l7-7m0 0l7 7m-7-7v18" />
</svg>
<h2>Outgoing</h2>
<span id="outgoingCount" class="count"
>0</span
>
</div>
<div class="section-stats">
<span
id="outgoingAverage"
class="stat-text"
></span>
</div>
</header>
<div id="outgoingPRs" class="pr-list"></div>
</section>
<!-- Empty State -->
<div id="emptyState" class="empty-state" hidden>
<svg
class="empty-icon"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 01-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 01.53-.88 10 10 0 019.94 0A1 1 0 0115 6v7"
/>
<circle cx="12" cy="12" r="1" />
</svg>
<p>No pull requests found</p>
<p class="text-secondary">
Pull requests will appear here when they're
ready for review
</p>
</div>
<!-- Blocker Logic Note -->
<div class="subscription-note">
NOTE: access to private repositories will eventually
require a subscription.
</div>
</div>
<!-- Stats Page -->
<div id="statsPage" class="stats-page" hidden>
<header class="stats-header">
<h1 class="stats-title">
Pull Request Health Dashboard
</h1>
<p class="stats-subtitle">
Track your organization's PR review efficiency
and throughput
</p>
</header>
<div class="stats-calculator-banner">
<div class="calculator-banner-content">
<div class="calculator-banner-icon">📊</div>
<div class="calculator-banner-text">
<h3 class="calculator-banner-title">Want deeper insights?</h3>
<p class="calculator-banner-description">
Our PR Efficiency Calculator offers a more modern and comprehensive view of your organization's performance, including cost analysis and improvement recommendations.
</p>
</div>
<a
href="https://cost.github.codegroove.app/?mode=org"
target="_blank"
rel="noopener"
class="calculator-banner-button"
>
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M12 20V10M6 20V4m12 16v-6" />
<rect
x="3"
y="20"
width="18"
height="1"
fill="currentColor"
/>
</svg>
Open Calculator
</a>
</div>
</div>
<div id="orgStatsContainer" class="org-stats-container">
<!-- Organization sections will be dynamically added here -->
</div>
</div>
<!-- Notifications Page -->
<div
id="notificationsPage"
class="notifications-page"
hidden
>
<div class="notifications-hero">
<div class="notifications-hero-content">
<h1 class="notifications-title">
Get notified when it's your turn
</h1>
<p class="notifications-subtitle">
Choose how you want to receive PR notifications. Mix and match multiple options for maximum coverage.
</p>
</div>
</div>
<div class="notifications-content">
<div class="notification-methods">
<!-- Slack Card - Primary Integration -->
<div class="notification-card slack-card">
<div class="card-decoration">
<div class="floating-icon">💬</div>
</div>
<div class="card-content">
<div class="card-header">
<h3>Slack</h3>
<span class="badge-new">MOST POPULAR</span>
</div>
<p class="card-description">
Auto-threads PRs in channels. Smart DMs with configurable delays. Daily reminders in your timezone.
</p>
<div class="feature-grid">
<div class="feature-item">📢 Channel threads</div>
<div class="feature-item">⏰ Smart timing</div>
<div class="feature-item">🌍 Timezone-aware</div>
<div class="feature-item">🎯 Turn detection</div>
</div>
<div class="card-actions">
<a
href="https://slack.com/oauth/v2/authorize?client_id=9426269265270.9443955134789&scope=channels:history,channels:read,chat:write,chat:write.public,commands,im:write,reactions:write,team:read,users:read,users:read.email,groups:read,groups:history&user_scope="
target="_blank"
rel="noopener"
class="action-button primary"
>
Add to Slack
</a>
<a
href="https://docs.codegroove.dev/reviewgoose/slack/"
target="_blank"
rel="noopener"
class="action-button secondary"
>
Documentation
</a>
</div>
</div>
</div>
<!-- Discord Card -->
<div class="notification-card discord-card">
<div class="card-decoration">
<div class="floating-icon">🎮</div>
</div>
<div class="card-content">
<div class="card-header">
<h3>Discord</h3>
<span class="badge-preview">PREVIEW</span>
</div>
<p class="card-description">
Forum threads for PRs. Auto-discovery. Smart notifications. Perfect for dev communities.
</p>
<div class="feature-grid">
<div class="feature-item">💭 Forum threads</div>
<div class="feature-item">🔍 Auto-discovery</div>
<div class="feature-item">📣 Guild channels</div>
<div class="feature-item">👥 User mapping</div>
</div>
<div class="card-actions">
<a
href="https://discord.com/oauth2/authorize?client_id=1461368540190871831&permissions=2147485696&scope=bot%20applications.commands"
target="_blank"
rel="noopener"
class="action-button primary"
>
Add to Discord
</a>
<a
href="https://docs.codegroove.dev/reviewgoose/discord/"
target="_blank"
rel="noopener"
class="action-button secondary"
>
Documentation
</a>
</div>
</div>
</div>
<!-- Desktop App Card -->
<div class="notification-card desktop-card">
<div class="card-decoration">
<div class="floating-icon">🖥️</div>
</div>
<div class="card-content">
<div class="card-header">
<h3>Desktop App</h3>
</div>
<p class="card-description">
Menubar app with sound notifications. Honks when blocking, jets when advancing. Works everywhere.
</p>
<div class="platform-badges">
<span class="platform-badge">🍎 macOS</span>
<span class="platform-badge">🐧 Linux</span>
<span class="platform-badge">🪟 Windows</span>
<span class="platform-badge">😈 FreeBSD</span>
</div>
<div class="card-actions">
<a
href="https://docs.codegroove.dev/reviewgoose/goose/"
target="_blank"
rel="noopener"
class="action-button primary"
>
Install
</a>
<a
href="https://github.com/codeGROOVE-dev/goose"
target="_blank"
rel="noopener"
class="action-button secondary"
>
Source
</a>
</div>
</div>
</div>
<!-- Command Line Tool Card -->
<div class="notification-card cli-card">
<div class="card-decoration">
<div class="floating-icon">⌨️</div>
</div>
<div class="card-content">
<div class="card-header">
<h3>CLI Tool</h3>
</div>
<p class="card-description">
Shows only PRs waiting for you. Watch mode for live updates. Perfect for tmux, terminals, and embedded displays.
</p>
<div class="feature-grid">
<div class="feature-item">🎯 Blocking detection</div>
<div class="feature-item">👀 Watch mode</div>
<div class="feature-item">🔗 Clickable links</div>
<div class="feature-item">⚡ Real-time</div>
</div>
<div class="card-actions">
<a
href="https://docs.codegroove.dev/reviewgoose/cli/"
target="_blank"
rel="noopener"
class="action-button primary"
>
Install
</a>
<a
href="https://github.com/codeGROOVE-dev/prs"
target="_blank"
rel="noopener"
class="action-button secondary"
>
Source
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Settings Page -->
<div id="settingsPage" class="settings-page" hidden>
<header class="settings-header">
<h1 class="settings-title">
🤖 Robot Army Configuration
</h1>
<p class="settings-subtitle">
Configure automated workflows for your
repositories
</p>
</header>
<div class="settings-content">
<!-- Robot Configuration -->
<div id="robotConfig" class="robot-config" hidden>
<!-- Robot cards will be dynamically added here -->
<div id="robotCards" class="robot-cards"></div>
<!-- Export Section -->
<div class="export-section">
<button
id="exportConfig"
class="btn btn-primary btn-large"
>
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"
/>
<polyline
points="7 10 12 15 17 10"
/>
<line
x1="12"
y1="15"
x2="12"
y2="3"
/>
</svg>
Export Configuration
</button>
</div>
</div>
</div>
<!-- YAML Export Modal -->
<div id="yamlModal" class="modal" hidden>
<div
id="yamlModalBackdrop"
class="modal-backdrop"
></div>
<div class="modal-content modal-large">
<div class="modal-header">
<h3>Export Robot Configuration</h3>
<button
id="closeYAMLModalBtn"
class="modal-close"
>
×
</button>
</div>
<div class="modal-body">
<p>
Copy the configuration below and commit
it to:
</p>
<code
class="yaml-path"
id="yamlPathModal"
></code>
<pre
id="yamlContent"
class="yaml-content"
></pre>
<button
id="copyYaml"
class="btn btn-primary"
>
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<rect
x="9"
y="9"
width="13"
height="13"
rx="2"
ry="2"
/>
<path
d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"
/>
</svg>
Copy to Clipboard
</button>
</div>
</div>
</div>
</div>
<!-- Changelog Page -->
<div id="changelogContent" class="changelog-content" hidden>
<div class="changelog-header">
<h1 class="changelog-title" id="changelogTitleText">
What's New
</h1>
<p
class="changelog-period"
id="changelogPeriod"
></p>
<div
class="changelog-org-link"
id="changelogOrgLink"
hidden
>
<a href="#" id="changelogOrgLinkAnchor"
>See everyone's changes to this
organization</a
>
</div>
<div class="changelog-controls">
<div class="changelog-filters">
<select
id="changelogUserFilter"
class="changelog-filter-select"
aria-label="Filter by user"
>
<option value="">All users</option>
</select>
<select
id="changelogTeamFilter"
class="changelog-filter-select"
aria-label="Filter by team"
>
<option value="">All teams</option>
</select>
</div>
<div
class="changelog-bot-toggle"
id="changelogBotToggle"
hidden
>
<label class="toggle-switch">
<input
type="checkbox"
id="includeBots"
/>
<span class="toggle-slider"></span>
</label>
<span class="toggle-label"
>Include automated changes</span
>
</div>
<a
href="#"
id="clearChangelogCache"
class="changelog-refresh-link"
>
<svg
width="14"
height="14"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M21.5 2v6h-6M2.5 22v-6h6M2 12c0-4.75 3.25-9 9-9s9 3 9 8.5M22 12c0 4.75-3.25 9-9 9s-9-3-9-8.5"
/>
</svg>
Update
</a>
</div>
</div>
<div
id="changelogSummary"
class="changelog-summary"
hidden
>
<!-- Executive summary will be inserted here -->
</div>
<div id="changelogProjects" class="changelog-projects">
<!-- Projects will be dynamically inserted here -->
</div>
<div
id="changelogLoading"
class="changelog-loading"
hidden
>