-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathindex.html
More file actions
2480 lines (2264 loc) · 217 KB
/
index.html
File metadata and controls
2480 lines (2264 loc) · 217 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
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-59VEGSNHB8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-59VEGSNHB8');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Claude Skills for GRC — Governance, Risk & Compliance</title>
<meta name="description" content="Expert-level compliance guidance for ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, PCI DSS, TSA Cybersecurity, ISO 42001 AI Management System, ISO 27701 Privacy Information Management, DORA Digital Operational Resilience, India's Digital Personal Data Protection Act (DPDPA), CMMC 2.0 Cybersecurity Maturity Model Certification, NIST AI Risk Management Framework, SWIFT Customer Security Programme (CSP), Australian Information Security Manual (ISM), EU NIS2 Directive, and CCPA/CPRA California Privacy — powered by Claude Skills." />
<meta name="google-site-verification" content="ngS8wu36B4P3ZyQBK7Q8rlwMd53-rFN55y8IFsFVApw" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--primary: #2c6fad;
--primary-dark: #1a4f80;
--primary-light: #e8f1fb;
--accent: #159957;
--accent-dark: #0d6e3a;
--text: #1a1a2e;
--text-muted: #555;
--border: #d0d7de;
--bg: #f6f8fa;
--white: #ffffff;
--tab-active-bg: #ffffff;
--tab-inactive-bg: #eef2f7;
--shadow: 0 2px 8px rgba(0,0,0,0.08);
--radius: 8px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.65;
color: var(--text);
background: var(--bg);
}
/* ── HEADER ── */
.site-header {
background: linear-gradient(135deg, #155799 0%, #159957 100%);
color: #fff;
padding: 2.5rem 1.5rem 2rem;
text-align: center;
}
.site-header h1 {
font-size: clamp(1.5rem, 4vw, 2.4rem);
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 0.6rem;
}
.site-header p {
font-size: clamp(0.9rem, 2vw, 1.05rem);
opacity: 0.92;
max-width: 680px;
margin: 0 auto 1.2rem;
}
.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.badges img { height: 20px; }
/* ── TAB NAV ── */
.tab-nav-wrapper {
background: var(--white);
border-bottom: 2px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
box-shadow: var(--shadow);
}
.tab-nav {
display: flex;
max-width: 1080px;
margin: 0 auto;
overflow-x: auto;
scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
flex-shrink: 0;
padding: 1rem 1.4rem;
border: none;
background: none;
font-size: 0.92rem;
font-weight: 500;
color: var(--text-muted);
cursor: pointer;
border-bottom: 3px solid transparent;
margin-bottom: -2px;
transition: all 0.2s;
white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); background: var(--primary-light); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }
/* ── MAIN LAYOUT ── */
.main { max-width: 1080px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
/* ── TAB PANELS ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }
/* ── CONTENT STYLES ── */
h2 { font-size: 1.65rem; font-weight: 700; margin: 2rem 0 0.8rem; color: var(--text); border-bottom: 2px solid var(--border); padding-bottom: 0.4rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin: 1.6rem 0 0.5rem; color: var(--primary-dark); }
h4 { font-size: 1rem; font-weight: 700; margin: 1.2rem 0 0.4rem; }
p { margin: 0.6rem 0; }
ul, ol { margin: 0.5rem 0 0.5rem 1.4rem; }
li { margin: 0.25rem 0; }
strong { font-weight: 700; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
font-family: "SFMono-Regular", Consolas, monospace;
font-size: 0.85em;
background: #f0f4f8;
padding: 0.15em 0.4em;
border-radius: 4px;
border: 1px solid #dde3ea;
}
pre {
background: #1e2733;
color: #e8edf3;
padding: 1.2rem;
border-radius: var(--radius);
overflow-x: auto;
margin: 1rem 0;
font-size: 0.88rem;
line-height: 1.55;
}
pre code { background: none; border: none; padding: 0; font-size: inherit; color: inherit; }
blockquote {
border-left: 4px solid var(--accent);
margin: 1.2rem 0;
padding: 0.8rem 1.2rem;
background: #f0faf5;
border-radius: 0 var(--radius) var(--radius) 0;
font-style: italic;
color: #2d4a3e;
}
blockquote .attribution {
display: block;
margin-top: 0.4rem;
font-style: normal;
font-weight: 600;
font-size: 0.9rem;
color: var(--text-muted);
}
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
/* ── TABLES ── */
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { background: var(--primary); color: #fff; text-align: left; padding: 0.65rem 0.9rem; font-weight: 600; }
td { padding: 0.55rem 0.9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
tr:nth-child(even) td { background: #eef2f7; }
tr:hover td { background: var(--primary-light); }
/* ── SKILL CARDS ── */
.skill-card {
background: var(--white);
border: 1px solid var(--border);
border-left: 4px solid var(--accent);
border-radius: var(--radius);
padding: 1.35rem 1.55rem 1.4rem;
margin: 1.2rem 0;
box-shadow: 0 2px 8px rgba(30,58,95,.07), 0 1px 2px rgba(0,0,0,.04);
transition: box-shadow .2s ease, transform .18s ease;
}
.skill-card:hover {
box-shadow: 0 6px 22px rgba(30,58,95,.13), 0 2px 6px rgba(0,0,0,.06);
transform: translateY(-2px);
}
.skill-card h3 {
margin: 0 0 0.45rem;
font-size: 1.04rem;
font-weight: 700;
color: var(--primary-dark);
line-height: 1.3;
}
.skill-card p {
font-size: 0.93rem;
line-height: 1.65;
color: var(--text);
margin: 0 0 0.7rem;
}
.skill-card ul {
margin: 0 0 0.5rem 0;
padding: 0;
list-style: none;
}
.skill-card ul li {
font-size: 0.9rem;
color: var(--text);
margin: 0.28rem 0;
line-height: 1.5;
padding-left: 1.1rem;
position: relative;
}
.skill-card ul li::before {
content: '›';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
font-size: 1.05rem;
line-height: 1.45;
}
.skill-card .file-badge {
display: inline-flex;
align-items: center;
font-size: 0.76rem;
background: #eff6ff;
border: 1px solid #bfdbfe;
border-radius: 20px;
padding: 0.18em 0.72em;
margin-bottom: 0.8rem;
color: #1d4ed8;
font-weight: 500;
font-family: ui-monospace, 'SF Mono', 'Fira Mono', monospace;
letter-spacing: -0.01em;
}
.trigger-tags {
margin-top: 0.9rem;
font-size: 0.83rem;
color: var(--text-muted);
}
.trigger-tags strong {
display: block;
font-size: 0.71rem;
text-transform: uppercase;
letter-spacing: 0.07em;
color: var(--text-muted);
margin-bottom: 0.35rem;
font-weight: 700;
}
.trigger-tags code {
background: #eff6ff;
border: 1px solid #bfdbfe;
color: #1d4ed8;
border-radius: 20px;
padding: 0.15em 0.62em;
font-size: 0.77rem;
font-family: inherit;
font-weight: 500;
display: inline-block;
margin: 0.15rem 0.1rem;
}
.use-cases {
margin-top: 0.9rem;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 6px;
padding: 0.65rem 0.9rem 0.55rem;
}
.use-cases > strong {
display: block;
font-size: 0.71rem;
text-transform: uppercase;
letter-spacing: 0.07em;
color: #64748b;
margin-bottom: 0.4rem;
font-weight: 700;
}
.use-cases ul {
margin: 0;
padding: 0;
list-style: none;
}
.use-cases li {
font-size: 0.86rem;
color: var(--text-muted);
margin: 0.22rem 0;
line-height: 1.45;
padding-left: 1.1rem;
position: relative;
}
.use-cases li::before {
content: '→';
position: absolute;
left: 0;
color: #10b981;
font-size: 0.82rem;
font-weight: 600;
}
/* ── SKILL CARD ACCORDION ── */
.skill-toggle {
width: 100%;
background: var(--primary-light);
border: 1px solid #b8d0ed;
border-radius: 6px;
padding: 0.75rem 1rem;
margin: -0.2rem 0 0;
text-align: left; cursor: pointer; font: inherit; color: inherit;
display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
transition: background 0.15s ease, border-color 0.15s ease;
}
.skill-toggle:hover { background: #d0e4f5; border-color: var(--primary); }
.skill-toggle[aria-expanded="true"] {
background: var(--primary);
border-color: var(--primary);
border-radius: 6px 6px 0 0;
}
.skill-toggle[aria-expanded="true"] h3 { color: #fff; }
.skill-toggle[aria-expanded="true"] .skill-chevron { color: #fff; }
.skill-toggle h3 { margin: 0; flex: 1; font-size: 1.05rem; }
.skill-chevron {
font-size: 1.2rem; line-height: 1; color: var(--primary);
transition: transform 0.22s ease; flex-shrink: 0; font-weight: bold;
}
.skill-toggle[aria-expanded="true"] .skill-chevron { transform: rotate(180deg); }
.skill-body { margin-top: 0; padding: 1rem 1.2rem 0.4rem; border: 1px solid #b8d0ed; border-top: none; border-radius: 0 0 6px 6px; }
.skill-body { margin-top: 0.75rem; }
.skill-body[hidden] { display: none; }
/* ── STAT CARDS ── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 1.4rem 0; }
.stat-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.2rem 1rem;
text-align: center;
box-shadow: var(--shadow);
}
.stat-card .value { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-card .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
.stat-card.green .value { color: var(--accent); }
.stat-card.delta .value { color: #d97706; }
/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; margin: 1.4rem 0; }
.testimonial-card {
background: var(--white);
border: 1px solid var(--border);
border-left: 4px solid var(--accent);
border-radius: var(--radius);
padding: 1.1rem 1.3rem;
box-shadow: var(--shadow);
}
.testimonial-card p { font-style: italic; color: #2d3748; font-size: 0.95rem; margin: 0 0 0.6rem; }
.testimonial-card .author { font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--text-muted); }
.linkedin-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
overflow: hidden;
margin: 1.4rem 0;
display: flex;
gap: 0;
}
.linkedin-card-accent { width: 4px; background: #0a66c2; flex-shrink: 0; }
.linkedin-card-body { padding: 1.25rem 1.5rem; flex: 1; }
.linkedin-card-body p { font-style: italic; color: #2d3748; font-size: 0.95rem; margin: 0 0 0.8rem; }
.linkedin-card-author { font-weight: 600; font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.linkedin-badge { display: inline-flex; align-items: center; gap: 4px; background: #0a66c2; color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.15em 0.6em; border-radius: 20px; text-decoration: none; }
.linkedin-badge:hover { background: #004182; }
.linkedin-card-image { flex: 1; min-width: 0; }
.linkedin-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 680px) { .linkedin-card { flex-direction: column; } .linkedin-card-image { width: 100%; max-height: 260px; } }
/* ── SKILLS HEADER CATEGORIES ── */
.skills-category-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.85rem 1.6rem;
max-width: 900px;
margin: 1rem auto 1.3rem;
text-align: left;
}
.skill-cat-label {
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(255,255,255,0.5);
margin-bottom: 0.4rem;
border-bottom: 1px solid rgba(255,255,255,0.15);
padding-bottom: 0.2rem;
}
.skill-cat-chips {
display: flex;
flex-wrap: wrap;
gap: 0.2rem 0.7rem;
}
.skill-cat-chips span {
font-size: 0.8rem;
color: rgba(255,255,255,0.92);
white-space: nowrap;
display: flex;
align-items: center;
gap: 0.28rem;
}
@media (max-width: 720px) {
.skills-category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
.skills-category-grid { grid-template-columns: 1fr 1fr; }
}
/* ── FEEDBACK FORM ── */
.form-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 2rem;
box-shadow: var(--shadow);
margin: 1.4rem 0;
max-width: 680px;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; }
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.65rem 0.9rem;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 0.95rem;
font-family: inherit;
background: #fafbfc;
transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
background: #fff;
box-shadow: 0 0 0 3px rgba(44,111,173,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
background: linear-gradient(135deg, #155799 0%, #159957 100%);
color: #fff;
border: none;
padding: 0.75rem 2rem;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.8rem; }
/* ── STEP LIST ── */
.step-list { counter-reset: steps; list-style: none; margin-left: 0; }
.step-list li {
counter-increment: steps;
display: flex;
gap: 1rem;
align-items: flex-start;
margin: 0.9rem 0;
}
.step-list li::before {
content: counter(steps);
flex-shrink: 0;
width: 28px;
height: 28px;
background: var(--primary);
color: #fff;
border-radius: 50%;
font-weight: 700;
font-size: 0.85rem;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.1rem;
}
/* ── INFO BOX ── */
.info-box {
background: #fff8e1;
border: 1px solid #f6c94a;
border-left: 4px solid #f59e0b;
border-radius: var(--radius);
padding: 0.9rem 1.2rem;
margin: 1rem 0;
font-size: 0.92rem;
}
.note-box {
background: var(--primary-light);
border: 1px solid #b8d0ed;
border-left: 4px solid var(--primary);
border-radius: var(--radius);
padding: 0.9rem 1.2rem;
margin: 1rem 0;
font-size: 0.92rem;
}
/* ── VIDEO ── */
.video-wrap {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
border-radius: var(--radius);
box-shadow: var(--shadow);
margin: 1.4rem 0;
}
.video-wrap iframe {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
border: none;
}
/* ── INSTALL TABLE ── */
.install-table td:first-child { font-size: 1.1em; }
.install-table a { font-weight: 500; }
/* ── FOOTER ── */
.site-footer {
text-align: center;
padding: 1.5rem;
font-size: 0.85rem;
color: var(--text-muted);
border-top: 1px solid var(--border);
background: var(--white);
}
/* ── EVAL LINK ── */
.eval-link-btn {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 0.6rem 1.4rem;
border-radius: 6px;
font-weight: 600;
margin-top: 1rem;
transition: background 0.2s;
}
.eval-link-btn:hover { background: var(--primary-dark); text-decoration: none; }
/* ── RELEASE NOTES ── */
/* ── What's New tab ── */
.whats-new-month-header { margin-bottom: 1.2rem; }
.whats-new-month-header h3 { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 0.25rem; font-size: 1.25rem; }
.whats-new-current-badge { background: #10b981; color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.15em 0.6em; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; vertical-align: middle; }
.whats-new-published { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 1.5rem; }
.whats-new-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; margin-bottom: 2rem; }
.wnf-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); box-shadow: var(--shadow); overflow: hidden; }
.wnf-card-header { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1rem; background: var(--primary-light); border-bottom: 1px solid var(--border); }
.wnf-icon { font-size: 1.15rem; }
.wnf-card-header h4 { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--primary); }
.wnf-card-body { padding: 0.85rem 1rem 1rem; }
.wnf-card-body p { font-size: 0.88rem; line-height: 1.6; color: var(--text); margin: 0; }
.whats-new-archive { margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 0; }
.whats-new-archive summary { cursor: pointer; padding: 0.85rem 1.1rem; font-weight: 600; font-size: 0.95rem; color: var(--text-muted); list-style: none; display: flex; align-items: center; gap: 0.5rem; }
.whats-new-archive summary::-webkit-details-marker { display: none; }
.whats-new-archive[open] summary { border-bottom: 1px solid var(--border); }
.whats-new-archive-empty { padding: 1rem 1.25rem; font-size: 0.875rem; color: var(--text-muted); font-style: italic; margin: 0; }
@media (max-width: 640px) { .whats-new-grid { grid-template-columns: 1fr; } }
.release { margin: 1.6rem 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.release-header { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.2rem; background: var(--primary); color: #fff; flex-wrap: wrap; }
.release-header .tag { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; }
.release-header .date { font-size: 0.85rem; opacity: 0.85; margin-left: auto; }
.release-header .latest { background: #f59e0b; color: #1a1a2e; font-size: 0.72rem; font-weight: 700; padding: 0.15em 0.55em; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.release-body { padding: 1rem 1.2rem; background: var(--white); }
.release-body h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin: 0.8rem 0 0.3rem; }
.release-body h4:first-child { margin-top: 0; }
.release-body ul { margin: 0 0 0 1.2rem; }
.release-body li { font-size: 0.92rem; margin: 0.2rem 0; }
.release-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 0.1em 0.5em; border-radius: 4px; margin-right: 0.25rem; vertical-align: middle; }
.badge-new { background: #dcfce7; color: #166534; }
.badge-fix { background: #fef3c7; color: #92400e; }
.badge-improve { background: #dbeafe; color: #1e40af; }
/* ── SECTION NAV (within Skills tab) ── */
.section-nav-wrapper {
background: var(--white);
border-bottom: 1px solid var(--border);
border-top: 1px solid var(--border);
position: sticky;
top: 54px;
z-index: 90;
margin: -2rem -1.5rem 2rem;
padding: 0 1.5rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.section-nav {
display: flex;
max-width: 1080px;
margin: 0 auto;
overflow-x: auto;
scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav-btn {
flex-shrink: 0;
padding: 0.65rem 1.2rem;
border: none;
background: none;
font-size: 0.88rem;
font-weight: 500;
color: var(--text-muted);
cursor: pointer;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: color 0.2s, border-color 0.2s;
white-space: nowrap;
}
.section-nav-btn:hover { color: var(--primary); }
.section-nav-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }
/* Offset anchors so sticky navs don't cover headings */
[id^="section-"] { scroll-margin-top: 108px; }
/* ── USE CASE FILTER BAR ── */
.filter-bar {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
margin: 0.8rem 0 1rem;
}
.filter-btn {
padding: 0.3rem 0.85rem;
border: 1px solid var(--border);
border-radius: 20px;
background: var(--white);
font-size: 0.82rem;
font-weight: 500;
color: var(--text-muted);
cursor: pointer;
transition: all 0.15s;
white-space: nowrap;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
/* ── RESPONSIVE ── */
@media (max-width: 600px) {
.tab-btn { padding: 0.75rem 0.9rem; font-size: 0.82rem; }
.main { padding: 1.2rem 1rem 3rem; }
h2 { font-size: 1.35rem; }
.form-card { padding: 1.2rem; }
}
/* ── AUDIENCE CARDS ── */
.audience-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin: 1.4rem 0;
}
.audience-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.1rem 1.2rem;
box-shadow: var(--shadow);
}
.audience-card .aud-icon { font-size: 1.5rem; margin-bottom: 0.4rem; display: block; }
.audience-card strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--primary-dark); }
.audience-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
@media (max-width: 700px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .audience-grid { grid-template-columns: 1fr; } }
/* ── QUICK-START STRIP ── */
.quickstart-strip {
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 0.75rem 1.5rem;
}
.quickstart-inner {
max-width: 1080px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 0;
}
.qs-step {
display: flex;
align-items: center;
gap: 0.45rem;
font-size: 0.875rem;
color: var(--text-muted);
padding: 0.2rem 0.7rem;
}
.qs-num {
width: 22px; height: 22px;
background: var(--primary); color: #fff;
border-radius: 50%;
font-size: 0.73rem; font-weight: 700;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.qs-step strong { color: var(--text); font-weight: 600; }
.qs-arrow { color: #c0cad6; font-size: 1.1rem; padding: 0 0.2rem; }
@media (max-width: 560px) {
.qs-step { font-size: 0.8rem; padding: 0.15rem 0.4rem; }
.qs-arrow { display: none; }
}
/* ── DETAILS COLLAPSE (old releases) ── */
.releases-archive { margin-top: 1.5rem; }
.releases-archive summary {
cursor: pointer; list-style: none;
display: flex; align-items: center; gap: 0.5rem;
font-weight: 600; font-size: 0.92rem; color: var(--text-muted);
padding: 0.7rem 1rem;
background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
}
.releases-archive summary::-webkit-details-marker { display: none; }
.releases-archive[open] summary { border-radius: var(--radius) var(--radius) 0 0; border-bottom-color: transparent; }
.releases-archive-body { border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 0.5rem 0; }
</style>
</head>
<body>
<!-- ══════════════ HEADER ══════════════ -->
<header class="site-header">
<h1>Claude Skills for Governance, Risk, & Compliance Frameworks</h1>
<p style="font-size:clamp(0.88rem,2vw,1rem);opacity:0.88;margin-bottom:0.2rem;">Expert-level, framework-specific compliance guidance — powered by Claude Skills.</p>
<p style="font-size:clamp(0.8rem,1.8vw,0.93rem);opacity:0.78;margin-bottom:0.6rem;">Benchmarked to deliver 96% accuracy across 675 assertions (vs. 81% baseline). Open-source (<a href="https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance" target="_blank" rel="noopener" style="color:inherit;text-decoration:underline;opacity:0.9;">GitHub</a>)</p>
<div class="skills-category-grid" id="header-skills-grid">
<!-- Privacy & Data Protection -->
<div class="skill-cat">
<div class="skill-cat-label">🔐 Privacy & Data Protection</div>
<div class="skill-cat-chips">
<span>🇪🇺 GDPR [EU]</span>
<span><img src="assets/Logos/hipaa.png" alt="HIPAA" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> HIPAA [US]</span>
<span><img src="assets/Logos/iso27701.png" alt="ISO 27701" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> ISO 27701</span>
<span>🇮🇳 DPDPA [India]</span>
<span><img src="https://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_California.svg" alt="CA" style="height:0.95em;width:auto;vertical-align:middle;border-radius:1px;"> CCPA/CPRA [CA]</span>
<span><img src="assets/Logos/lgpd-brazil.svg" alt="Brazil" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> LGPD [Brazil]</span>
<span>🇻🇳 VN-PDPL [Vietnam]</span>
</div>
</div>
<!-- Information Security -->
<div class="skill-cat">
<div class="skill-cat-label">🛡️ Information Security</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/iso27001.jpg" alt="ISO 27001" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> ISO 27001</span>
<span><img src="assets/Logos/soc2.jpeg" alt="SOC 2" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> SOC 2</span>
<span><img src="assets/Logos/nist-csf.jpeg" alt="NIST CSF" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> NIST CSF</span>
<span>🇦🇺 ISM [Australia]</span>
<span>🇳🇿 NZISM [New Zealand]</span>
<span><img src="assets/Logos/CIS logo.png" alt="CIS" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> CIS Controls v8</span>
</div>
</div>
<!-- Cybersecurity Regulation -->
<div class="skill-cat">
<div class="skill-cat-label">🏛️ Cybersecurity Regulation</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/fedramp.svg" alt="FedRAMP" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> FedRAMP [US]</span>
<span><img src="assets/Logos/cmmc.png" alt="CMMC" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> CMMC 2.0 [US]</span>
<span>🇪🇺 NIS2 [EU]</span>
<span>🚨 TSA [US]</span>
<span><img src="assets/Logos/NIST SP 800-53 logo.webp" alt="NIST SP 800-53" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> NIST SP 800-53 [US]</span>
<span>🇪🇺 EU CRA [EU]</span>
</div>
</div>
<!-- Accessibility -->
<div class="skill-cat">
<div class="skill-cat-label">♿ Accessibility</div>
<div class="skill-cat-chips">
<span>♿ Section 508 [US]</span>
<span>♿ WCAG [International]</span>
</div>
</div>
<!-- Financial Services -->
<div class="skill-cat">
<div class="skill-cat-label">🏦 Financial Services</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/pci-dss.png" alt="PCI DSS" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> PCI DSS</span>
<span><img src="assets/Logos/dora.png" alt="DORA" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> DORA [EU]</span>
<span><img src="assets/Logos/swift-csp.png" alt="SWIFT CSP" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> SWIFT CSP</span>
</div>
</div>
<!-- AI & Governance -->
<div class="skill-cat">
<div class="skill-cat-label">🤖 AI & Governance</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/iso42001.webp" alt="ISO 42001" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> ISO 42001</span>
<span><img src="assets/Logos/nist-ai-rmf.svg" alt="NIST AI RMF" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> NIST AI RMF</span>
<span><img src="assets/Logos/Euro AI act logo.jpg" alt="EU AI Act" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> EU AI Act [EU]</span>
</div>
</div>
<!-- Export & Defense -->
<div class="skill-cat">
<div class="skill-cat-label">🚀 Export & Defense</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/itar.jpg" alt="ITAR" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> ITAR [US]</span>
<span><img src="assets/Logos/EAR logo.webp" alt="EAR" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> EAR [US]</span>
</div>
</div>
<!-- ESG & Sustainability -->
<div class="skill-cat">
<div class="skill-cat-label">🌱 ESG & Sustainability</div>
<div class="skill-cat-chips">
<span><img src="assets/Logos/csrd-eu.svg" alt="EU" style="height:1.1em;width:auto;vertical-align:middle;object-fit:contain;"> CSRD [EU]</span>
</div>
</div>
</div>
<div class="badges">
<img src="https://img.shields.io/badge/Release-v1.1.0-brightgreen.svg" alt="Release v1.1.0" />
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="MIT License" />
<img src="https://img.shields.io/badge/Skills-30-green.svg" alt="30 Skills" />
<img src="https://img.shields.io/badge/Built%20with-Claude-orange.svg" alt="Built with Claude" />
<a href="https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance" target="_blank" rel="noopener">
<img src="https://img.shields.io/github/stars/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance?style=flat&label=Stars&color=gold" alt="GitHub Stars" />
</a>
</div>
</header>
<!-- ══════════════ QUICK-START STRIP ══════════════ -->
<div class="quickstart-strip">
<div class="quickstart-inner">
<div class="qs-step"><span class="qs-num">1</span> <span><strong>Download</strong> a .skill file below</span></div>
<span class="qs-arrow">›</span>
<div class="qs-step"><span class="qs-num">2</span> <span><strong>Upload</strong> it in Claude → Customize → Skills</span></div>
<span class="qs-arrow">›</span>
<div class="qs-step"><span class="qs-num">3</span> <span><strong>Ask</strong> any compliance question — Claude activates the skill and provides expert-level compliance guidance</span></div>
</div>
</div>
<!-- ══════════════ TAB NAV ══════════════ -->
<div class="tab-nav-wrapper">
<nav class="tab-nav" role="tablist">
<button class="tab-btn active" data-tab="skills" role="tab" aria-selected="true">🛡️ GRC Skills</button>
<button class="tab-btn" data-tab="installation" role="tab">📦 Installation</button>
<button class="tab-btn" data-tab="evaluation" role="tab">📊 Evaluation</button>
<button class="tab-btn" data-tab="whats-new" role="tab">📅 Monthly GRC Updates</button>
<button class="tab-btn" data-tab="resources" role="tab">📚 Resources</button>
<button class="tab-btn" data-tab="feedback" role="tab">💬 Feedback</button>
</nav>
</div>
<!-- ══════════════ MAIN ══════════════ -->
<main class="main">
<!-- ═══ TAB 1: GRC Claude AI Skills ═══ -->
<section class="tab-panel active" id="tab-skills" role="tabpanel">
<nav class="section-nav-wrapper" id="skills-section-nav" aria-label="Skills tab sections">
<div class="section-nav">
<button class="section-nav-btn active" data-section="section-overview">Overview</button>
<button class="section-nav-btn" data-section="section-skills">The Skills</button>
</div>
</nav>
<h2 id="section-overview">What Are Claude Skills?</h2>
<p>Claude Skills are installable knowledge packages that extend Claude's capabilities for specific domains. A skill is a <code>.skill</code> file — a bundled archive containing a <code>SKILL.md</code> instruction file and optional reference materials — that you upload to Claude once and use across all your conversations.</p>
<p>Once installed, a skill activates <strong>automatically</strong> when your conversation touches its topic area. You don't need to invoke it by name or use special commands. Claude simply becomes a deeper expert in that domain for the duration of your session.</p>
<h4>Skills are ideal when you need:</h4>
<ul>
<li>Consistent, expert-level responses on a specialized topic</li>
<li>Outputs formatted to professional or regulatory standards (e.g., audit-ready control narratives, policy templates with the right clauses)</li>
<li>Domain knowledge that goes beyond general LLM training — such as knowing which specific NIST 800-53 controls apply to a given scenario, or which GDPR articles govern international data transfers</li>
</ul>
<p><strong>How skills work under the hood:</strong> Each <code>.skill</code> file contains a primary <code>SKILL.md</code> that is loaded into Claude's context when the skill triggers, plus reference files that are loaded on demand for deeper sub-topics. This "progressive disclosure" pattern keeps context usage efficient while making comprehensive knowledge available when needed.</p>
<div class="video-wrap">
<iframe src="https://www.youtube.com/embed/-IBLNR0N2vE" title="Claude Skills for GRC Demo" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr />
<h2>Who Is This For?</h2>
<p>Designed for professionals who work on information security, privacy, and regulatory compliance — whether at organizations seeking certification, development teams building compliant systems, or advisors supporting clients.</p>
<div class="audience-grid">
<div class="audience-card">
<span class="aud-icon">🔍</span>
<strong>Security & Compliance Teams</strong>
<p>Accelerate gap assessments, generate first-draft policies, map controls, and prepare evidence packages in minutes.</p>
</div>
<div class="audience-card">
<span class="aud-icon">💻</span>
<strong>Developers & Engineers</strong>
<p>Understand what controls your systems must implement and audit code or architecture for compliance issues.</p>
</div>
<div class="audience-card">
<span class="aud-icon">⚖️</span>
<strong>Legal, Privacy & GRC Professionals</strong>
<p>Draft DPAs, BAAs, and privacy notices; answer client questions with precise article-level regulatory citations.</p>
</div>
<div class="audience-card">
<span class="aud-icon">🏥</span>
<strong>Healthcare Organizations</strong>
<p>Assess systems, generate NPPs and BAAs, and get HIPAA guidance without a compliance consultant for every question.</p>
</div>
<div class="audience-card">
<span class="aud-icon">☁️</span>
<strong>Cloud Service Providers</strong>
<p>Navigate FedRAMP ATO, write SSP narratives, manage POA&Ms, and prepare for 3PAO assessments.</p>
</div>
<div class="audience-card">
<span class="aud-icon">🚀</span>
<strong>Startups & SMBs</strong>
<p>Scope compliance programs, understand framework requirements, and get expert-quality output without a large in-house team.</p>
</div>
</div>
<hr />
<h2 id="section-skills">The Skills</h2>
<div class="skill-card">
<h3>1. <img src="assets/Logos/iso27001.jpg" alt="ISO 27001" style="height:1.25em;width:auto;vertical-align:middle;object-fit:contain;"> ISO 27001</h3>
<span class="file-badge">ISO 27001 - Claude Skill/iso27001.skill</span>
<p>Turns Claude into an expert ISO 27001 Lead Auditor and ISMS implementation consultant. Covers both <strong>ISO 27001:2013</strong> (114 controls, 14 domains) and <strong>ISO 27001:2022</strong> (93 controls, 4 themes), defaulting to 2022.</p>
<ul>
<li>Runs structured <strong>gap analyses</strong> against mandatory clauses (4–10) and all Annex A controls</li>
<li>Generates complete, audit-ready <strong>policy documents</strong> with document control blocks, scope statements, and clause-to-control mappings</li>
<li>Builds <strong>risk registers</strong> and <strong>risk treatment plans</strong> using the likelihood × impact methodology</li>
<li>Creates <strong>Statement of Applicability (SoA)</strong> templates covering all 93 controls</li>
<li>Guides <strong>2013 → 2022 transition</strong>, explaining the 11 new controls and mapping changes</li>
</ul>
<div class="trigger-tags"><strong>Trigger phrases:</strong> <code>ISO 27001</code> <code>ISMS</code> <code>Annex A</code> <code>SoA</code> <code>gap analysis</code> <code>risk register</code> <code>certification readiness</code> <code>internal audit</code></div>
<div class="use-cases"><strong>Potential Use Cases:</strong><ul><li>Preparing for an ISO 27001:2022 Stage 2 certification audit with gap analysis across all Annex A controls</li><li>Writing an Information Security Policy and Statement of Applicability (SoA) mapped to all 93 controls</li><li>Building a risk register and risk treatment plan using the likelihood × impact scoring method</li><li>Guiding a 2013 → 2022 transition, including the 11 new controls and mapping changes</li></ul></div>
</div>
<div class="skill-card">
<h3>2. <img src="assets/Logos/soc2.jpeg" alt="SOC 2" style="height:1.25em;width:auto;vertical-align:middle;object-fit:contain;"> SOC 2</h3>
<span class="file-badge">SOC 2 - Claude Skill/soc2.skill</span>
<p>Turns Claude into an expert SOC 2 compliance advisor grounded in the <strong>AICPA 2017 Trust Services Criteria (TSC) with 2022 Revised Points of Focus</strong>. Covers all five TSC: Security (CC1–CC9), Availability (A1), Confidentiality (C1), Processing Integrity (PI1), and Privacy (P1–P8).</p>
<ul>
<li>Conducts <strong>gap analyses</strong> across in-scope TSC criteria with 🔴/🟡/🟢 status ratings and remediation roadmaps</li>
<li>Drafts all <strong>12 core SOC 2 policies</strong> — Information Security, Access Control, Incident Response, Change Management, and more</li>
<li>Documents <strong>controls</strong> in auditor-ready format: Control ID, TSC criterion, type, owner, frequency, evidence, and test procedure</li>
<li>Handles <strong>vendor risk</strong>: tiering, 32-question security questionnaires, SOC 2 report review, CUEC tracking</li>
</ul>
<div class="trigger-tags"><strong>Trigger phrases:</strong> <code>SOC 2</code> <code>Trust Services Criteria</code> <code>TSC</code> <code>CC6</code> <code>Type 1</code> <code>Type 2</code> <code>AICPA</code> <code>audit readiness</code> <code>control statement</code></div>
<div class="use-cases"><strong>Potential Use Cases:</strong><ul><li>Running a SOC 2 readiness assessment before engaging an external auditor</li><li>Documenting controls for a SOC 2 Type 2 report with auditor-ready evidence tables</li><li>Reviewing a vendor’s SOC 2 report and tracking Customer User Entity Controls (CUECs)</li><li>Responding to a customer security questionnaire spanning multiple frameworks</li></ul></div>
</div>
<div class="skill-card">
<h3>3. <img src="assets/Logos/fedramp.svg" alt="FedRAMP" style="height:1.25em;width:auto;vertical-align:middle;object-fit:contain;"> FedRAMP [US]</h3>
<span class="file-badge">FedRamp - Claude Skill/fedramp.skill</span>
<p>Turns Claude into a knowledgeable FedRAMP advisor covering the full authorization lifecycle for Cloud Service Providers under <strong>NIST SP 800-53 Rev 5</strong>. Current as of 2025–2026, incorporating the Rev 5 transition, September 2026 OSCAL mandate, and December 2024 template updates.</p>
<ul>
<li>Conducts <strong>readiness and gap assessments</strong> using a 75+ item checklist across 14 security domains</li>
<li>Guides authoring of <strong>ATO documentation</strong>: SSP, POA&Ms, SAPs, SARs, and all required appendices (A–Q)</li>
<li>Maps <strong>NIST 800-53 Rev 5 controls</strong> across all 20 control families</li>
<li>Provides <strong>cloud architecture guidance</strong> for AWS GovCloud, Azure Government, and Google Cloud Government</li>
<li>Supports <strong>Continuous Monitoring (ConMon)</strong> obligations and guides the <strong>Rev 4 → Rev 5 transition</strong></li>
</ul>
<div class="trigger-tags"><strong>Trigger phrases:</strong> <code>FedRAMP</code> <code>ATO</code> <code>SSP</code> <code>POA&M</code> <code>3PAO</code> <code>NIST 800-53</code> <code>ConMon</code> <code>AWS GovCloud</code> <code>impact level</code> <code>OSCAL</code></div>
<div class="use-cases"><strong>Potential Use Cases:</strong><ul><li>Scoping a FedRAMP Moderate authorisation on AWS GovCloud or Azure Government</li><li>Writing SSP control narratives for all 20 NIST SP 800-53 control families</li><li>Preparing a POA&M with FedRAMP-compliant remediation timelines</li><li>Navigating the FedRAMP 20x pathway and the September 2026 OSCAL mandate</li></ul></div>
</div>
<div class="skill-card">
<h3>4. 🇪🇺 GDPR [EU]</h3>
<span class="file-badge">GDPR - Claude Skill/gdpr-compliance.skill</span>
<p>Turns Claude into an expert GDPR compliance assistant bridging technical and legal perspectives. Covers full <strong>EU GDPR</strong> with notes on <strong>UK GDPR (DPA 2018)</strong> where rules differ.</p>
<ul>
<li><strong>Audits code, APIs, database schemas, and architectures</strong> for GDPR violations with severity-graded findings (🔴/🟡/🟢) mapped to specific GDPR articles</li>
<li><strong>Drafts compliance documents</strong>: Privacy Notices (Art. 13/14), Data Processing Agreements (Art. 28), Cookie/Consent Banners, DPIAs (Art. 35), Data Retention Policies</li>
<li><strong>Answers compliance questions</strong> with authoritative article citations — every response leads with the governing article</li>
<li>Covers lawful basis, consent, data subject rights (Arts. 15–22), international transfers (Arts. 44–49), breach response (Arts. 32–34)</li>
</ul>
<div class="trigger-tags"><strong>Trigger phrases:</strong> <code>GDPR</code> <code>data protection</code> <code>privacy</code> <code>personal data</code> <code>DPA</code> <code>DPIA</code> <code>lawful basis</code> <code>data subject rights</code> <code>consent</code> <code>RoPA</code></div>
<div class="use-cases"><strong>Potential Use Cases:</strong><ul><li>Auditing an API or database schema for GDPR compliance before product launch</li><li>Drafting a DPIA for a new AI feature that processes personal data</li><li>Preparing an Article 28 Data Processing Agreement for a third-party vendor relationship</li><li>Managing a 72-hour breach notification to a national supervisory authority</li></ul></div>
</div>
<div class="skill-card">
<h3>5. <img src="assets/Logos/hipaa.png" alt="HIPAA" style="height:1.25em;width:auto;vertical-align:middle;object-fit:contain;"> HIPAA [US]</h3>
<span class="file-badge">HIPAA - Claude Skill/hipaa-compliance.skill</span>
<p>Turns Claude into a knowledgeable HIPAA compliance advisor covering the <strong>Privacy Rule, Security Rule, and Breach Notification Rule</strong> (45 CFR Parts 160 and 164, as amended by HITECH).</p>
<ul>
<li><strong>Reviews documents, systems, and architectures</strong> for HIPAA compliance with structured findings: CFR citations, risk levels (High / Medium / Low), and remediation steps</li>
<li><strong>Generates HIPAA-compliant documents</strong> from nine ready-to-use templates: NPP, BAA, Authorization Forms, Workforce Training Acknowledgments, Security Incident Reports, Risk Analysis Templates</li>
<li><strong>Advises on technical safeguards</strong> for AWS, Azure, GCP, FHIR APIs, mobile/BYOD, and DevOps — all 54 Security Rule implementation specifications</li>
<li><strong>Guides breach response</strong> using the 4-factor risk assessment, notification timelines, and HHS reporting obligations</li>
</ul>
<div class="trigger-tags"><strong>Trigger phrases:</strong> <code>HIPAA</code> <code>PHI</code> <code>ePHI</code> <code>covered entity</code> <code>business associate</code> <code>BAA</code> <code>NPP</code> <code>breach notification</code> <code>Privacy Rule</code> <code>Security Rule</code></div>
<div class="use-cases"><strong>Potential Use Cases:</strong><ul><li>Generating a Business Associate Agreement (BAA) for a healthcare SaaS vendor relationship</li><li>Assessing whether a data incident constitutes a reportable HIPAA breach using the 4-factor risk assessment</li><li>Advising on technical safeguards for AWS, Azure, or GCP healthcare cloud deployments</li><li>Completing an HIPAA Security Rule risk analysis for a new healthcare application</li></ul></div>
</div>
<div class="skill-card">
<h3>6. <img src="assets/Logos/nist-csf.jpeg" alt="NIST CSF" style="height:1.25em;width:auto;vertical-align:middle;object-fit:contain;"> NIST CSF</h3>