Skip to content

Commit 4c2c658

Browse files
committed
Add Transportation Security Administration compliance on critical infrastructureskill.
1 parent 0f6796d commit 4c2c658

File tree

10 files changed

+1332
-9
lines changed

10 files changed

+1332
-9
lines changed

.claude-plugin/marketplace.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
33
"name": "grc-skills",
4-
"description": "Claude Code skills for Governance, Risk & Compliance — ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, and PCI DSS.",
4+
"description": "Claude Code skills for Governance, Risk & Compliance — ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, PCI DSS, and TSA Cybersecurity.",
55
"owner": {
66
"name": "Hemant Naik",
77
"email": "hemant.naik@gmail.com"
@@ -97,6 +97,19 @@
9797
"homepage": "https://sushegaad.github.io/Claude-Skills-Governance-Risk-and-Compliance/",
9898
"category": "compliance",
9999
"keywords": ["pci-dss", "pci-compliance", "payment-security", "cardholder-data", "cde", "saq", "qsa", "grc"]
100+
},
101+
{
102+
"name": "tsa-compliance",
103+
"source": "./plugins/tsa-compliance",
104+
"description": "TSA cybersecurity compliance advisor for critical infrastructure — pipeline, freight rail, and transit Security Directive requirements including CIP/COIP, IRP, ADR, CAP, incident reporting, and OT/ICS security.",
105+
"version": "0.1.0",
106+
"author": {
107+
"name": "Hemant Naik",
108+
"email": "hemant.naik@gmail.com"
109+
},
110+
"homepage": "https://sushegaad.github.io/Claude-Skills-Governance-Risk-and-Compliance/",
111+
"category": "compliance",
112+
"keywords": ["tsa", "transportation-security", "critical-infrastructure", "pipeline-security", "rail-security", "ot-security", "ics-security", "grc"]
100113
}
101114
]
102115
}

INSTALLATION.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation Guide — GRC Skills for Claude Code
22

3-
This guide covers how to install the GRC Skills marketplace in [Claude Code](https://claude.ai/claude-code), the AI-powered CLI for developers. The marketplace provides seven compliance skills as Claude Code plugins — each one extends Claude Code with deep, framework-specific expertise for ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, and PCI DSS.
3+
This guide covers how to install the GRC Skills marketplace in [Claude Code](https://claude.ai/claude-code), the AI-powered CLI for developers. The marketplace provides eight compliance skills as Claude Code plugins — each one extends Claude Code with deep, framework-specific expertise for ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, PCI DSS, and TSA Cybersecurity.
44

55
---
66

@@ -68,16 +68,20 @@ Once the marketplace is registered, install only the frameworks you need.
6868
/plugin install pci-compliance@grc-skills
6969
```
7070

71+
```shell
72+
/plugin install tsa-compliance@grc-skills
73+
```
74+
7175
Each plugin is installed to a local cache (`~/.claude/plugins/cache`) and activates immediately in new Claude Code sessions.
7276

7377
---
7478

75-
## 3. Install All Seven at Once
79+
## 3. Install All Eight at Once
7680

7781
To install the full GRC suite in a single command:
7882

7983
```shell
80-
/plugin install iso27001@grc-skills soc2@grc-skills fedramp@grc-skills gdpr-compliance@grc-skills hipaa-compliance@grc-skills nist-csf@grc-skills pci-compliance@grc-skills
84+
/plugin install iso27001@grc-skills soc2@grc-skills fedramp@grc-skills gdpr-compliance@grc-skills hipaa-compliance@grc-skills nist-csf@grc-skills pci-compliance@grc-skills tsa-compliance@grc-skills
8185
```
8286

8387
---
@@ -105,12 +109,13 @@ Add the following to your project's `.claude/settings.json`:
105109
"gdpr-compliance@grc-skills": true,
106110
"hipaa-compliance@grc-skills": true,
107111
"nist-csf@grc-skills": true,
108-
"pci-compliance@grc-skills": true
112+
"pci-compliance@grc-skills": true,
113+
"tsa-compliance@grc-skills": true
109114
}
110115
}
111116
```
112117

113-
Commit this file to your repository. The next time a team member trusts the project folder in Claude Code, the marketplace and plugins will be registered automatically. Only enable the skills your team actually needs — you don't have to include all seven.
118+
Commit this file to your repository. The next time a team member trusts the project folder in Claude Code, the marketplace and plugins will be registered automatically. Only enable the skills your team actually needs — you don't have to include all eight.
114119

115120
---
116121

@@ -157,6 +162,7 @@ To remove the marketplace entirely:
157162
| `hipaa-compliance` | HIPAA | Document generation, technical safeguards for cloud, breach response guidance |
158163
| `nist-csf` | NIST CSF 2.0 / 1.1 | Gap assessments, organisational profiles, implementation tiers, roadmaps, cross-framework mapping |
159164
| `pci-compliance` | PCI DSS v4.0.1 | CDE scoping, SAQ selection, gap assessments, control guidance, QSA audit prep, remediation planning |
165+
| `tsa-compliance` | TSA Security Directives | Pipeline, freight rail, and transit OT/ICS cybersecurity — CIP/COIP, IRP, ADR, CAP, incident reporting, NPRM guidance |
160166

161167
---
162168

README.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Claude Skills for Governance, Risk & Compliance (GRC)
2-
Expert-level compliance guidance for ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, and PCI DSS — powered by Claude Skills.
2+
Expert-level compliance guidance for ISO 27001, SOC 2, FedRAMP, GDPR, HIPAA, NIST CSF, PCI DSS, and TSA Cybersecurity — powered by Claude Skills.
33

44
Benchmarked across 10 test cases (2 per framework) using eval framework — each graded against 7 verifiable assertions by independent agents. Skills scored **99% ± 4%** vs a baseline of 93% ± 7%.
55

66
[![Release: v0.1.0](https://img.shields.io/badge/Release-v0.1.0-brightgreen.svg)](../../releases/tag/v0.1.0)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8-
[![Skills: 7](https://img.shields.io/badge/Skills-7-green.svg)](#the-skills)
8+
[![Skills: 8](https://img.shields.io/badge/Skills-8-green.svg)](#the-skills)
99
[![Built with Claude](https://img.shields.io/badge/Built%20with-Claude-orange.svg)](https://claude.ai)
1010

1111
---
@@ -22,6 +22,7 @@ Benchmarked across 10 test cases (2 per framework) using eval framework — each
2222
- [HIPAA](#-hipaa)
2323
- [NIST CSF](#-nist-csf)
2424
- [PCI DSS](#-pci-dss)
25+
- [TSA Cybersecurity](#-tsa-cybersecurity)
2526
- [Potential Use Cases](#potential-use-cases)
2627
- [How to Install a Skill](#how-to-install-a-skill)
2728
- [Install via Claude Code Marketplace](#install-via-claude-code-marketplace)
@@ -193,6 +194,27 @@ The PCI DSS skill turns Claude into an expert PCI DSS compliance advisor coverin
193194

194195
---
195196

197+
### 🚨 TSA Cybersecurity
198+
199+
**File:** `TSA Compliance - Claude Skill/TSA-Compliance.skill`
200+
201+
The TSA Cybersecurity skill turns Claude into an expert TSA cybersecurity directive advisor for **critical transportation infrastructure**. It covers all current TSA Security Directive series — **SD Pipeline-2021-01G**, **SD Pipeline-2021-02F**, **SD 1580-21-01E** (freight rail), and **SD 1582-21-01E** (transit/passenger rail) — plus the **November 2024 NPRM** proposing to formalise these directives as permanent federal regulations.
202+
203+
> **Note on SSI:** TSA Security Directives are classified as **Sensitive Security Information (SSI)** under 49 CFR Part 1520. This skill is built from publicly available summaries, Federal Register notices, and DHS/CISA publications — not the classified full directive text. Covered entities receive the actual directive directly from TSA.
204+
205+
**What it does:**
206+
- **Determines applicability** — which directive series applies to your organisation (pipeline, freight rail, transit, or bus) and what that means for your compliance obligations
207+
- Runs structured **gap assessments** across the four technical domains: IT/OT network segmentation, access controls (MFA), continuous monitoring, and patch management
208+
- **Drafts Cyber Risk Management Program (CRMP) documents**: Cybersecurity Implementation Plan (CIP/COIP), Incident Response Plan (IRP), Architecture Design Review (ADR), and Cybersecurity Assessment Plan (CAP)
209+
- Guides **OT/ICS-specific implementation** — data diodes, jump servers for legacy HMIs, passive monitoring tools (Claroty, Dragos, Nozomi), OT patch lifecycle with vendor coordination
210+
- Explains **24-hour CISA incident reporting** obligations: what qualifies, how to report, sample initial report language, and CIRCIA overlap
211+
- Advises on **annual IRP testing** — two objectives minimum, test scenarios, documentation requirements, and after-action review process
212+
- Explains the **2024 NPRM** impact: NIST CSF 2.0 alignment, CISA CPG baseline, proposed COIP structure, and what changes when the rule is finalised
213+
214+
**Trigger phrases:** `TSA Security Directive`, `SD Pipeline-2021`, `SD 1580-21-01`, `SD 1582-21-01`, `TSA cybersecurity`, `Critical Cyber Systems`, `CCS`, `Cybersecurity Coordinator`, `Cybersecurity Implementation Plan`, `CIP`, `CRMP`, `IRP testing`, `Architecture Design Review`, `ADR`, `CAP`, `CISA 24-hour reporting`, `OT segmentation TSA`, `pipeline cybersecurity`, `rail cybersecurity directive`, `transit cybersecurity`, `TSA NPRM 2024`
215+
216+
---
217+
196218
## Potential Use Cases
197219

198220
| Scenario | Relevant Skill(s) |
@@ -225,6 +247,14 @@ The PCI DSS skill turns Claude into an expert PCI DSS compliance advisor coverin
225247
| Implementing the new PCI DSS v4.0 payment page script integrity requirements | PCI DSS |
226248
| Extending MFA to all CDE access per Req 8.4.2 | PCI DSS |
227249
| Managing third-party service providers under PCI DSS Req 12.8 | PCI DSS |
250+
| Determining whether your pipeline or rail operation is a TSA covered entity | TSA Cybersecurity |
251+
| Drafting a Cybersecurity Implementation Plan (CIP) for pipeline OT/SCADA environments | TSA Cybersecurity |
252+
| Planning and documenting annual IRP testing for TSA directive compliance | TSA Cybersecurity |
253+
| Responding to ransomware on IT that may spread to OT — reporting obligations to CISA | TSA Cybersecurity |
254+
| Conducting an Architecture Design Review (ADR) for IT/OT network segmentation | TSA Cybersecurity |
255+
| Implementing MFA and PAM for legacy OT/HMI systems with limited native controls | TSA Cybersecurity |
256+
| Understanding what changes if TSA's November 2024 NPRM becomes final regulation | TSA Cybersecurity |
257+
| Aligning a TSA CRMP to NIST CSF 2.0 and CISA Cross-Sector CPGs | TSA Cybersecurity + NIST CSF |
228258

229259
---
230260

@@ -241,6 +271,7 @@ The PCI DSS skill turns Claude into an expert PCI DSS compliance advisor coverin
241271
| 🏥 HIPAA | [hipaa-compliance.skill](https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance/raw/main/HIPAA%20-%20Claude%20Skill/hipaa-compliance.skill) |
242272
| 🛡️ NIST CSF | [NIST Cybersecurity.skill](https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance/raw/main/NIST%20Cybersecurity%20framework%20-%20Claude%20Skill/NIST%20Cybersecurity.skill) |
243273
| 💳 PCI DSS | [PCI-Compliance.skill](https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance/raw/main/PCI%20Compliance%20-%20Claude%20Skill/PCI-Compliance.skill) |
274+
| 🚨 TSA Cybersecurity | [TSA-Compliance.skill](https://github.com/Sushegaad/Claude-Skills-Governance-Risk-and-Compliance/raw/main/TSA%20Compliance%20-%20Claude%20Skill/TSA-Compliance.skill) |
244275

245276
2. Open Claude and navigate to **Customize → Skills**.
246277
3. Click **Upload Skill** and select the `.skill` file.
@@ -260,7 +291,7 @@ Add the marketplace and install the skills you need directly from the terminal:
260291

261292
```shell
262293
/plugin marketplace add Sushegaad/Claude-Skills-Governance-Risk-and-Compliance
263-
/plugin install iso27001@grc-skills soc2@grc-skills fedramp@grc-skills gdpr-compliance@grc-skills hipaa-compliance@grc-skills nist-csf@grc-skills pci-compliance@grc-skills
294+
/plugin install iso27001@grc-skills soc2@grc-skills fedramp@grc-skills gdpr-compliance@grc-skills hipaa-compliance@grc-skills nist-csf@grc-skills pci-compliance@grc-skills tsa-compliance@grc-skills
264295
```
265296

266297
Teams can pre-wire the marketplace in `.claude/settings.json` so every developer gets the skills automatically when they open the project — no manual install required.

0 commit comments

Comments
 (0)