diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d1a46a0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Jherrod Thomas + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 5c0cbca..40998af 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,197 @@ +
+ # Automotive Safety Suite -Initializing repo. Full README and 76 .skill files coming in next commit. +**76 installable Claude skills covering the full automotive safety, cybersecurity, quality, and process-assessment lifecycle** + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) +[![Skills](https://img.shields.io/badge/Skills-76-blue)](skills/) +[![Standards](https://img.shields.io/badge/Standards-ISO%2026262%20%7C%2021434%20%7C%2021448%20%7C%20IATF%2016949%20%7C%20ASPICE-green)]() +[![Chain](https://img.shields.io/badge/Chain-Builder%20%2B%20Reviewer%20pairs-orange)]() +[![Made for](https://img.shields.io/badge/Made%20for-Claude-purple)](https://claude.com) + +Every artifact-producing skill is paired with a confirmation reviewer. Reviewer outputs include a visual dashboard with KPI tiles, charts, and findings tables. + +[Quickstart](#quickstart) · [The Chain](#the-chain) · [Skills](#skills) · [Standards](#standards-covered) · [Why](#why) + +
+ +--- + +## What this is + +A curated set of 38 builder skills + 38 matching confirmation reviewer skills that automate the structured xlsx deliverables required across the automotive engineering lifecycle: + +- **ISO 26262** functional safety (concept → HW → SW → safety case) +- **ISO/SAE 21434** cybersecurity (TARA → goals → concept → architecture → IR plan) +- **ISO 21448 SOTIF** for ADAS/AV (analysis → triggering conditions → validation strategy) +- **AIAG-VDA quality** (APQP → DFMEA → PFMEA → Control Plan → PPAP) +- **Automotive SPICE** (assessment → gap analysis → improvement → evidence) +- **Continuous improvement** (8D, 5-Why, fishbone, MSA Gauge R&R, SPC) + +Each skill is an installable `.skill` file. The chain is the moat — every downstream skill consumes the upstream skill's xlsx output as a stable file-format contract. + +## Quickstart + +1. Download the skill you need from `skills/` (or the full bundle from Releases) +2. Click "Save skill" in Cowork / Claude Desktop to install +3. Trigger by phrasing — every skill declares its triggering description in its frontmatter + +```bash +# Example: install the HARA builder, then ask Claude +"Build a HARA for a new ECU project — Electronic Stability Control" +``` + +## The chain + +``` +Item Definition → Safety Plan → DIA + ↓ + HARA → FSC → TSC + ↓ ↓ + HW Lane SW Lane + ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ +HW-SR Arch HSI FMEDA SW-SR Arch FMEA HSI + ↓ ↓ + Safety Case (capstone) + +Parallel chains: +TARA → CS Goals → CS Concept → CS Architecture → IR Plan + Secure Coding (ISO/SAE 21434) +SOTIF Analysis → Triggering Conditions → Validation Strategy (ISO 21448) +APQP Plan → DFMEA → PFMEA → Control Plan → PPAP Package (IATF 16949) +ASPICE Assessment → Gap Analysis → Improvement Plan → Process Evidence (ASPICE PAM) +``` + +Every box above has a builder skill AND a matching reviewer skill. + +## Skills + +### Foundation (3 builder/reviewer pairs) +| Skill | Standard | +|-------|----------| +| `item-definition-builder` + reviewer | ISO 26262-3 §5 | +| `safety-plan-builder` + reviewer | ISO 26262-2 §6 | +| `dia-builder` + reviewer | ISO 26262-8 §5 | + +### ISO 26262 Concept Phase (3 pairs) +| Skill | What it produces | +|-------|------------------| +| `hara-builder` + reviewer | Hazard Analysis with 14 malfunction guide words and Cartesian (function × malfunction × environment) | +| `fsc-builder` + reviewer | FTA per safety goal with visual fault tree rendering, FSR derivation, ASIL decomposition | +| `tsc-builder` + reviewer | HW-TSR/SW-TSR with safety mechanisms, HSI scaffold, system FMEA, DFA, draw.io architecture diagram | + +### ISO 26262 HW Lane (4 pairs, Part 5) +| Skill | What it produces | +|-------|------------------| +| `hw-safety-reqs-builder` + reviewer | HW Safety Requirements derived from HW-TSRs | +| `hw-architecture-builder` + reviewer | Refined HW architecture (PCB / IC / package) with safety mechanism allocation | +| `hsi-builder` + reviewer | Contract-grade HW-SW Interface with C header generation | +| `fmeda-builder` + reviewer | Formula-driven SPFM/LFM/PMHF with auto-verification against per-ASIL targets | + +### ISO 26262 SW Lane (4 pairs, Part 6) +| Skill | What it produces | +|-------|------------------| +| `sw-arch-builder` + reviewer | SW architecture with RTOS, scheduling, MPU partitioning, MISRA targets | +| `sw-sr-builder` + reviewer | SW Safety Requirements with verification methods per ASIL | +| `sw-fmea-builder` + reviewer | Software FMEA with qualitative residual risk per ASIL threshold | +| `sw-hsis-builder` + reviewer | SW-side HSI with handler functions and C header | + +### ISO 26262 Capstone +| Skill | What it produces | +|-------|------------------| +| `safety-case-builder` + reviewer | GSN-style argument pulling evidence from all upstream artifacts | + +### ISO/SAE 21434 Cybersecurity (6 pairs, UN R155 mandated) +| Skill | What it produces | +|-------|------------------| +| `tara-builder` + reviewer | Threat Analysis with STRIDE coverage and Risk Value lookup | +| `cs-goals-builder` + reviewer | Cybersecurity Goals with CAL assignment | +| `cs-concept-builder` + reviewer | CSR derivation per cybersecurity property | +| `cs-architecture-builder` + reviewer | Cryptographic inventory, key management, secure boot chain | +| `incident-response-plan-builder` + reviewer | PSIRT plan with UN R155 / ENISA / NHTSA notification deadlines | +| `secure-coding-guidelines-builder` + reviewer | CERT C + MISRA Amendment 1 + AUTOSAR C++14 secure subset | + +### ISO 21448 SOTIF (3 pairs, ADAS / AV) +| Skill | What it produces | +|-------|------------------| +| `sotif-analysis-builder` + reviewer | ODD, performance limitations, scenario quadrant classification | +| `triggering-conditions-builder` + reviewer | Environmental / sensor / road / road-user / system / driver triggering conditions | +| `sotif-validation-strategy-builder` + reviewer | Real-world / simulation / proving ground / field monitoring campaign | + +### AIAG-VDA Quality (5 pairs, IATF 16949) +| Skill | What it produces | +|-------|------------------| +| `apqp-plan-builder` + reviewer | 5-phase product quality plan with gate reviews | +| `dfmea-builder` + reviewer | Design FMEA per AIAG-VDA 2019 (Action Priority replaces RPN) | +| `pfmea-builder` + reviewer | Process FMEA per AIAG-VDA 2019 | +| `control-plan-builder` + reviewer | Production Control Plan with SPC / 100% / mistake-proofing / audit | +| `ppap-package-builder` + reviewer | 18-element PPAP submission with PSW | + +### Automotive SPICE (4 pairs) +| Skill | What it produces | +|-------|------------------| +| `aspice-assessment-builder` + reviewer | Per-process Capability Level scoring per PAM 3.1 | +| `aspice-gap-analysis-builder` + reviewer | Gaps to target CL with severity classification | +| `aspice-improvement-plan-builder` + reviewer | Improvement roadmap with KPIs | +| `aspice-process-evidence-builder` + reviewer | Per-process evidence package | + +### Continuous Improvement (5 pairs) +| Skill | What it produces | +|-------|------------------| +| `8d-problem-solving-builder` + reviewer | 8D method (D1-D8) for warranty / customer complaint | +| `5-why-builder` + reviewer | 5-Why root cause analysis | +| `fishbone-builder` + reviewer | Ishikawa (6Ms) cause-and-effect with auto-Mermaid diagram | +| `msa-gage-rr-builder` + reviewer | AIAG MSA 4th edition with Anova-based Gauge R&R | +| `spc-chart-builder` + reviewer | SPC with Cpk capability and Western Electric / Nelson rules | + +## Standards covered + +ISO 26262:2018 · ISO/SAE 21434:2021 · ISO 21448:2022 · IATF 16949:2016 · AIAG APQP 2nd edition · AIAG-VDA FMEA Handbook 2019 · AIAG PPAP 4th edition · AIAG MSA 4th edition · AIAG SPC 2nd edition · AIAG Control Plan · ASPICE PAM 3.1 / 4.0 · UN R155 · UN R156 · CERT C Secure Coding · MISRA C:2012 + Amendment 1 · AUTOSAR C++14 + +## Why + +Every automotive program ships an avalanche of structured deliverables. Most teams maintain them in xlsx, painstakingly hand-edited, with low audit-trail consistency and high re-keying overhead between phases. This suite turns each phase into a builder + reviewer pair where: + +- The **builder** produces the structured xlsx output from a JSON input plus the upstream artifact +- The **reviewer** runs a confirmation-measures checklist on the builder's output and produces a visual dashboard with KPIs, charts, and findings + +The chain compounds because phases hand off via stable xlsx contracts. A change upstream (HARA) automatically propagates to every downstream skill that consumes it (FSC → TSC → FMEDA → Safety Case). + +## Common patterns across the suite + +- All builder outputs use a consistent NAVY/Calibri styling palette with ASIL/CAL color coding +- All reviewer outputs include visual dashboards (KPI tiles, pie chart, compliance bar, stacked rating breakdown by section, findings table) +- Many reviewers auto-verify quantitative thresholds: + - **FMEDA**: SPFM / LFM / PMHF vs ASIL target + - **PPAP**: Cpk vs threshold (1.33 standard, 1.67 special characteristics) + - **SW FMEA**: residual risk vs ASIL threshold + - **MSA**: Gauge R&R % vs AIAG threshold + - **SPC**: Cpk vs target +- Reviewers never modify source artifacts — gaps land in Recommended Actions +- Every builder is paired with a reviewer for confirmation-measures compliance + +## Repo structure + +``` +automotive-safety-suite/ +├── skills/ # 76 .skill bundles, install individually +├── automotive-safety-suite-bundle.zip # All 76 skills in one download +├── README.md +└── LICENSE +``` + +## Installation + +Each `.skill` file in `skills/` is independently installable. Skills declare triggering descriptions in their frontmatter, so the agent picks them up based on user phrasing (e.g., "build me a HARA" triggers `hara-builder`). + +## License + +MIT — see LICENSE file. + +--- + +
+ +Built with Claude. Designed for automotive safety, cybersecurity, and quality engineers shipping real programs. + +
diff --git a/skills/5-why-builder.skill b/skills/5-why-builder.skill new file mode 100644 index 0000000..2016e81 Binary files /dev/null and b/skills/5-why-builder.skill differ diff --git a/skills/5-why-checklist-reviewer.skill b/skills/5-why-checklist-reviewer.skill new file mode 100644 index 0000000..efdf498 Binary files /dev/null and b/skills/5-why-checklist-reviewer.skill differ diff --git a/skills/8d-problem-solving-builder.skill b/skills/8d-problem-solving-builder.skill new file mode 100644 index 0000000..56f9499 Binary files /dev/null and b/skills/8d-problem-solving-builder.skill differ diff --git a/skills/8d-problem-solving-checklist-reviewer.skill b/skills/8d-problem-solving-checklist-reviewer.skill new file mode 100644 index 0000000..9e97762 Binary files /dev/null and b/skills/8d-problem-solving-checklist-reviewer.skill differ diff --git a/skills/apqp-plan-builder.skill b/skills/apqp-plan-builder.skill new file mode 100644 index 0000000..c944c9e Binary files /dev/null and b/skills/apqp-plan-builder.skill differ diff --git a/skills/apqp-plan-checklist-reviewer.skill b/skills/apqp-plan-checklist-reviewer.skill new file mode 100644 index 0000000..4f567bc Binary files /dev/null and b/skills/apqp-plan-checklist-reviewer.skill differ diff --git a/skills/aspice-assessment-builder.skill b/skills/aspice-assessment-builder.skill new file mode 100644 index 0000000..cadc578 Binary files /dev/null and b/skills/aspice-assessment-builder.skill differ diff --git a/skills/aspice-assessment-checklist-reviewer.skill b/skills/aspice-assessment-checklist-reviewer.skill new file mode 100644 index 0000000..a5db336 Binary files /dev/null and b/skills/aspice-assessment-checklist-reviewer.skill differ diff --git a/skills/aspice-gap-analysis-builder.skill b/skills/aspice-gap-analysis-builder.skill new file mode 100644 index 0000000..a9d689b Binary files /dev/null and b/skills/aspice-gap-analysis-builder.skill differ diff --git a/skills/aspice-gap-analysis-checklist-reviewer.skill b/skills/aspice-gap-analysis-checklist-reviewer.skill new file mode 100644 index 0000000..48cb1eb Binary files /dev/null and b/skills/aspice-gap-analysis-checklist-reviewer.skill differ diff --git a/skills/aspice-improvement-plan-builder.skill b/skills/aspice-improvement-plan-builder.skill new file mode 100644 index 0000000..9233af1 Binary files /dev/null and b/skills/aspice-improvement-plan-builder.skill differ diff --git a/skills/aspice-improvement-plan-checklist-reviewer.skill b/skills/aspice-improvement-plan-checklist-reviewer.skill new file mode 100644 index 0000000..50a87cc Binary files /dev/null and b/skills/aspice-improvement-plan-checklist-reviewer.skill differ diff --git a/skills/aspice-process-evidence-builder.skill b/skills/aspice-process-evidence-builder.skill new file mode 100644 index 0000000..d974f7f Binary files /dev/null and b/skills/aspice-process-evidence-builder.skill differ diff --git a/skills/aspice-process-evidence-checklist-reviewer.skill b/skills/aspice-process-evidence-checklist-reviewer.skill new file mode 100644 index 0000000..9ea510d Binary files /dev/null and b/skills/aspice-process-evidence-checklist-reviewer.skill differ diff --git a/skills/control-plan-builder.skill b/skills/control-plan-builder.skill new file mode 100644 index 0000000..018f05d Binary files /dev/null and b/skills/control-plan-builder.skill differ diff --git a/skills/control-plan-checklist-reviewer.skill b/skills/control-plan-checklist-reviewer.skill new file mode 100644 index 0000000..b670b63 Binary files /dev/null and b/skills/control-plan-checklist-reviewer.skill differ diff --git a/skills/cs-architecture-builder.skill b/skills/cs-architecture-builder.skill new file mode 100644 index 0000000..8464f04 Binary files /dev/null and b/skills/cs-architecture-builder.skill differ diff --git a/skills/cs-architecture-checklist-reviewer.skill b/skills/cs-architecture-checklist-reviewer.skill new file mode 100644 index 0000000..103b13d Binary files /dev/null and b/skills/cs-architecture-checklist-reviewer.skill differ diff --git a/skills/cs-concept-builder.skill b/skills/cs-concept-builder.skill new file mode 100644 index 0000000..932cc25 Binary files /dev/null and b/skills/cs-concept-builder.skill differ diff --git a/skills/cs-concept-checklist-reviewer.skill b/skills/cs-concept-checklist-reviewer.skill new file mode 100644 index 0000000..a95df97 Binary files /dev/null and b/skills/cs-concept-checklist-reviewer.skill differ diff --git a/skills/cs-goals-builder.skill b/skills/cs-goals-builder.skill new file mode 100644 index 0000000..4fa15c1 Binary files /dev/null and b/skills/cs-goals-builder.skill differ diff --git a/skills/cs-goals-checklist-reviewer.skill b/skills/cs-goals-checklist-reviewer.skill new file mode 100644 index 0000000..5222d57 Binary files /dev/null and b/skills/cs-goals-checklist-reviewer.skill differ diff --git a/skills/dfmea-builder.skill b/skills/dfmea-builder.skill new file mode 100644 index 0000000..7691210 Binary files /dev/null and b/skills/dfmea-builder.skill differ diff --git a/skills/dfmea-checklist-reviewer.skill b/skills/dfmea-checklist-reviewer.skill new file mode 100644 index 0000000..8ce80a6 Binary files /dev/null and b/skills/dfmea-checklist-reviewer.skill differ diff --git a/skills/dia-builder.skill b/skills/dia-builder.skill new file mode 100644 index 0000000..4c3a75a Binary files /dev/null and b/skills/dia-builder.skill differ diff --git a/skills/dia-checklist-reviewer.skill b/skills/dia-checklist-reviewer.skill new file mode 100644 index 0000000..1ef2bd3 Binary files /dev/null and b/skills/dia-checklist-reviewer.skill differ diff --git a/skills/fishbone-builder.skill b/skills/fishbone-builder.skill new file mode 100644 index 0000000..416c32d Binary files /dev/null and b/skills/fishbone-builder.skill differ diff --git a/skills/fishbone-checklist-reviewer.skill b/skills/fishbone-checklist-reviewer.skill new file mode 100644 index 0000000..56f22e8 Binary files /dev/null and b/skills/fishbone-checklist-reviewer.skill differ diff --git a/skills/fmeda-builder.skill b/skills/fmeda-builder.skill new file mode 100644 index 0000000..348c26f Binary files /dev/null and b/skills/fmeda-builder.skill differ diff --git a/skills/fmeda-checklist-reviewer.skill b/skills/fmeda-checklist-reviewer.skill new file mode 100644 index 0000000..9bb65d5 Binary files /dev/null and b/skills/fmeda-checklist-reviewer.skill differ diff --git a/skills/fsc-builder.skill b/skills/fsc-builder.skill new file mode 100644 index 0000000..939f4d2 Binary files /dev/null and b/skills/fsc-builder.skill differ diff --git a/skills/fsc-checklist-reviewer.skill b/skills/fsc-checklist-reviewer.skill new file mode 100644 index 0000000..b7dcfee Binary files /dev/null and b/skills/fsc-checklist-reviewer.skill differ diff --git a/skills/hara-builder.skill b/skills/hara-builder.skill new file mode 100644 index 0000000..59d13aa Binary files /dev/null and b/skills/hara-builder.skill differ diff --git a/skills/hara-checklist-reviewer.skill b/skills/hara-checklist-reviewer.skill new file mode 100644 index 0000000..085cdd2 Binary files /dev/null and b/skills/hara-checklist-reviewer.skill differ diff --git a/skills/hsi-builder.skill b/skills/hsi-builder.skill new file mode 100644 index 0000000..00b385c Binary files /dev/null and b/skills/hsi-builder.skill differ diff --git a/skills/hsi-checklist-reviewer.skill b/skills/hsi-checklist-reviewer.skill new file mode 100644 index 0000000..b74f89d Binary files /dev/null and b/skills/hsi-checklist-reviewer.skill differ diff --git a/skills/hw-architecture-builder.skill b/skills/hw-architecture-builder.skill new file mode 100644 index 0000000..80cb827 Binary files /dev/null and b/skills/hw-architecture-builder.skill differ diff --git a/skills/hw-architecture-checklist-reviewer.skill b/skills/hw-architecture-checklist-reviewer.skill new file mode 100644 index 0000000..611e429 Binary files /dev/null and b/skills/hw-architecture-checklist-reviewer.skill differ diff --git a/skills/hw-safety-reqs-builder.skill b/skills/hw-safety-reqs-builder.skill new file mode 100644 index 0000000..b1c49e6 Binary files /dev/null and b/skills/hw-safety-reqs-builder.skill differ diff --git a/skills/hw-safety-reqs-checklist-reviewer.skill b/skills/hw-safety-reqs-checklist-reviewer.skill new file mode 100644 index 0000000..6c24a9e Binary files /dev/null and b/skills/hw-safety-reqs-checklist-reviewer.skill differ diff --git a/skills/incident-response-plan-builder.skill b/skills/incident-response-plan-builder.skill new file mode 100644 index 0000000..ca16714 Binary files /dev/null and b/skills/incident-response-plan-builder.skill differ diff --git a/skills/incident-response-plan-checklist-reviewer.skill b/skills/incident-response-plan-checklist-reviewer.skill new file mode 100644 index 0000000..66cb078 Binary files /dev/null and b/skills/incident-response-plan-checklist-reviewer.skill differ diff --git a/skills/item-def-checklist-reviewer.skill b/skills/item-def-checklist-reviewer.skill new file mode 100644 index 0000000..b2d0504 Binary files /dev/null and b/skills/item-def-checklist-reviewer.skill differ diff --git a/skills/item-definition-builder.skill b/skills/item-definition-builder.skill new file mode 100644 index 0000000..52231a0 Binary files /dev/null and b/skills/item-definition-builder.skill differ diff --git a/skills/msa-gage-rr-builder.skill b/skills/msa-gage-rr-builder.skill new file mode 100644 index 0000000..28117c6 Binary files /dev/null and b/skills/msa-gage-rr-builder.skill differ diff --git a/skills/msa-gage-rr-checklist-reviewer.skill b/skills/msa-gage-rr-checklist-reviewer.skill new file mode 100644 index 0000000..e4b56e4 Binary files /dev/null and b/skills/msa-gage-rr-checklist-reviewer.skill differ diff --git a/skills/pfmea-builder.skill b/skills/pfmea-builder.skill new file mode 100644 index 0000000..66ee08c Binary files /dev/null and b/skills/pfmea-builder.skill differ diff --git a/skills/pfmea-checklist-reviewer.skill b/skills/pfmea-checklist-reviewer.skill new file mode 100644 index 0000000..c5e211e Binary files /dev/null and b/skills/pfmea-checklist-reviewer.skill differ diff --git a/skills/ppap-checklist-reviewer.skill b/skills/ppap-checklist-reviewer.skill new file mode 100644 index 0000000..584d401 Binary files /dev/null and b/skills/ppap-checklist-reviewer.skill differ diff --git a/skills/ppap-package-builder.skill b/skills/ppap-package-builder.skill new file mode 100644 index 0000000..35cbb5a Binary files /dev/null and b/skills/ppap-package-builder.skill differ diff --git a/skills/safety-case-builder.skill b/skills/safety-case-builder.skill new file mode 100644 index 0000000..6d76513 Binary files /dev/null and b/skills/safety-case-builder.skill differ diff --git a/skills/safety-case-checklist-reviewer.skill b/skills/safety-case-checklist-reviewer.skill new file mode 100644 index 0000000..c412712 Binary files /dev/null and b/skills/safety-case-checklist-reviewer.skill differ diff --git a/skills/safety-plan-builder.skill b/skills/safety-plan-builder.skill new file mode 100644 index 0000000..83bda5d Binary files /dev/null and b/skills/safety-plan-builder.skill differ diff --git a/skills/safety-plan-checklist-reviewer.skill b/skills/safety-plan-checklist-reviewer.skill new file mode 100644 index 0000000..f80f838 Binary files /dev/null and b/skills/safety-plan-checklist-reviewer.skill differ diff --git a/skills/secure-coding-guidelines-builder.skill b/skills/secure-coding-guidelines-builder.skill new file mode 100644 index 0000000..b537a06 Binary files /dev/null and b/skills/secure-coding-guidelines-builder.skill differ diff --git a/skills/secure-coding-guidelines-checklist-reviewer.skill b/skills/secure-coding-guidelines-checklist-reviewer.skill new file mode 100644 index 0000000..9b26614 Binary files /dev/null and b/skills/secure-coding-guidelines-checklist-reviewer.skill differ diff --git a/skills/sotif-analysis-builder.skill b/skills/sotif-analysis-builder.skill new file mode 100644 index 0000000..4bc2151 Binary files /dev/null and b/skills/sotif-analysis-builder.skill differ diff --git a/skills/sotif-analysis-checklist-reviewer.skill b/skills/sotif-analysis-checklist-reviewer.skill new file mode 100644 index 0000000..f86dad8 Binary files /dev/null and b/skills/sotif-analysis-checklist-reviewer.skill differ diff --git a/skills/sotif-validation-strategy-builder.skill b/skills/sotif-validation-strategy-builder.skill new file mode 100644 index 0000000..32c4ea5 Binary files /dev/null and b/skills/sotif-validation-strategy-builder.skill differ diff --git a/skills/sotif-validation-strategy-checklist-reviewer.skill b/skills/sotif-validation-strategy-checklist-reviewer.skill new file mode 100644 index 0000000..183814a Binary files /dev/null and b/skills/sotif-validation-strategy-checklist-reviewer.skill differ diff --git a/skills/spc-chart-builder.skill b/skills/spc-chart-builder.skill new file mode 100644 index 0000000..f3e5688 Binary files /dev/null and b/skills/spc-chart-builder.skill differ diff --git a/skills/spc-chart-checklist-reviewer.skill b/skills/spc-chart-checklist-reviewer.skill new file mode 100644 index 0000000..d746d34 Binary files /dev/null and b/skills/spc-chart-checklist-reviewer.skill differ diff --git a/skills/sw-arch-builder.skill b/skills/sw-arch-builder.skill new file mode 100644 index 0000000..93eeac9 Binary files /dev/null and b/skills/sw-arch-builder.skill differ diff --git a/skills/sw-arch-checklist-reviewer.skill b/skills/sw-arch-checklist-reviewer.skill new file mode 100644 index 0000000..984ef62 Binary files /dev/null and b/skills/sw-arch-checklist-reviewer.skill differ diff --git a/skills/sw-fmea-builder.skill b/skills/sw-fmea-builder.skill new file mode 100644 index 0000000..c7b3da6 Binary files /dev/null and b/skills/sw-fmea-builder.skill differ diff --git a/skills/sw-fmea-checklist-reviewer.skill b/skills/sw-fmea-checklist-reviewer.skill new file mode 100644 index 0000000..cf5870a Binary files /dev/null and b/skills/sw-fmea-checklist-reviewer.skill differ diff --git a/skills/sw-hsis-builder.skill b/skills/sw-hsis-builder.skill new file mode 100644 index 0000000..81a73c5 Binary files /dev/null and b/skills/sw-hsis-builder.skill differ diff --git a/skills/sw-hsis-checklist-reviewer.skill b/skills/sw-hsis-checklist-reviewer.skill new file mode 100644 index 0000000..faa691c Binary files /dev/null and b/skills/sw-hsis-checklist-reviewer.skill differ diff --git a/skills/sw-sr-builder.skill b/skills/sw-sr-builder.skill new file mode 100644 index 0000000..dab6369 Binary files /dev/null and b/skills/sw-sr-builder.skill differ diff --git a/skills/sw-sr-checklist-reviewer.skill b/skills/sw-sr-checklist-reviewer.skill new file mode 100644 index 0000000..54745e4 Binary files /dev/null and b/skills/sw-sr-checklist-reviewer.skill differ diff --git a/skills/tara-builder.skill b/skills/tara-builder.skill new file mode 100644 index 0000000..11dcc73 Binary files /dev/null and b/skills/tara-builder.skill differ diff --git a/skills/tara-checklist-reviewer.skill b/skills/tara-checklist-reviewer.skill new file mode 100644 index 0000000..2e3bd85 Binary files /dev/null and b/skills/tara-checklist-reviewer.skill differ diff --git a/skills/triggering-conditions-builder.skill b/skills/triggering-conditions-builder.skill new file mode 100644 index 0000000..3146f3d Binary files /dev/null and b/skills/triggering-conditions-builder.skill differ diff --git a/skills/triggering-conditions-checklist-reviewer.skill b/skills/triggering-conditions-checklist-reviewer.skill new file mode 100644 index 0000000..f1842a9 Binary files /dev/null and b/skills/triggering-conditions-checklist-reviewer.skill differ diff --git a/skills/tsc-builder.skill b/skills/tsc-builder.skill new file mode 100644 index 0000000..fd0f5f2 Binary files /dev/null and b/skills/tsc-builder.skill differ diff --git a/skills/tsc-checklist-reviewer.skill b/skills/tsc-checklist-reviewer.skill new file mode 100644 index 0000000..98225ae Binary files /dev/null and b/skills/tsc-checklist-reviewer.skill differ