Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Zonal Safety Analysis

ASecurity

Use when you must perform or review the zonal safety analysis per ARP4761A: identify the physical zones of the aircraft, classify each zonal hazard by severity, assess separation and containment between the zone sources and the protected components, confirm the zonal hazard checklist is complete, and produce the ZSA report for the safety assessment. The zonal safety analysis finds the hazards created by the zone contents and the external threats that enter the zone, and flags the zones that n...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythongo

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill zonal-safety-analysis --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Zonal Safety Analysis?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Zonal Safety Analysis
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-zonal-safety-analysis/badge)](https://www.skillsdirectory.com/skills/ashfordeou-zonal-safety-analysis)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: zonal-safety-analysis
description: "Use when you must perform or review the zonal safety analysis per ARP4761A: identify the physical zones of the aircraft, classify each zonal hazard by severity, assess separation and containment between the zone sources and the protected components, confirm the zonal hazard checklist is complete, and produce the ZSA report for the safety assessment. The zonal safety analysis finds the hazards created by the zone contents and the external threats that enter the zone, and flags the zones that need action. Trigger: zonal safety analysis, zone identification, zonal hazard, hazard severity, separation, containment, fire zone, arp4761a, zsa."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: arp4761a
    reference-only: true
gated: false
domain: systems-engineering-safety
pack: systems-engineering-safety
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: systems-engineering-safety
  subdomain: arp4761a
  tags: [zonal-safety-analysis, zonal-hazard, zone-identification, hazard-severity, fire-zone, separation, containment, zsa, arp4761a]
  version: 0.1.0
  author: Aero Agent Skills
---

# ARP4761A Zonal Safety Analysis (systems-engineering-safety/arp4761a/zonal-safety-analysis)

Use when the task is the zonal safety analysis (ZSA) per ARP4761A:
zone identification, hazard severity classification, separation and
containment assessment, zonal hazard checklist completeness, and the
ZSA report that rolls the findings up for the safety assessment.

## Domain quick reference

- ZSA is one of the three common cause analyses in ARP4761A, next to
  particular risk analysis (PRA) and common mode analysis (CMA). It
  examines each physical zone of the aircraft: the components
  installed in the zone, the structure, the wiring, the plumbing, and
  the external threats that can enter the zone such as fire, fluid
  leaks, and impacts.
- Severity classes follow the ARP4761A ladder: minor (rank 1), major
  (2), hazardous (3), catastrophic (4). A zone with findings
  ['minor', 'major', 'hazardous'] rolls up to 'hazardous' (the
  highest severity present); an empty finding list rolls up to
  'none'.
- The zonal hazard checklist must be fully assessed before the zone
  can be accepted: 9 of 12 items assessed is 0.75 coverage and not
  complete; 12 of 12 is 1.0 and complete.
- Separation verdict: measured clearance at least the required gap is
  'ok' (50.0 mm against 50.0 mm required), any shortfall is 'action'
  (49.0 against 50.0).
- Containment verdict: barrier rating at least the hazard energy is
  'ok' (rating 3 against energy 2), otherwise 'action' (rating 2
  against energy 3).
- Report rollup (verified by the contract test): three zones with
  assessed/total 10/10, 8/10, 6/6 and severity rollups major,
  hazardous, none give total_zones 3, action_zones ['142', '143'],
  checklist coverage 24/26 (about 0.923), and verdict 'action'.

## Workflow

1. Identify the physical zones of the aircraft and the components in
   each zone (zone_identification in the logic module).
2. Classify the hazards in each zone by severity with
   severity_rank and zone_severity_rollup.
3. Assess separation between the zone components and the hazard
   sources with separation_verdict, and containment of the sources
   with containment_verdict.
4. Check the zonal hazard checklist completeness with
   checklist_coverage and checklist_complete.
5. Produce the ZSA report with zsa_report and gate the safety
   assessment on the zone verdicts and the checklist coverage.

## Pitfalls

- Confusing ZSA with the ARP4761A safety-assessment skill: severity
  here is categorized per physical zone content and external threats,
  not per failure condition in the FHA/PSSA/SSA sequence.
- Confusing ZSA with the whole common-cause-analysis skill: CCA
  covers ZSA, PRA, and CMA; a zonal pass list alone is not a
  completed common cause analysis.
- Rating the zone findings without the severity classification, so
  the rollup and the report verdict lose their basis.
- Forgetting the external threats that enter the zone (fire, fluid
  leaks, impacts) and assessing only the components inside it.
- Accepting a zone while checklist items remain unassessed (coverage
  below 1.0); an incomplete checklist is an open finding.
- Treating separation or containment as absolute when the verdict is
  'action' and the zone still needs mitigation before acceptance.
- Double counting a hazard already covered by the fault tree or the
  particular risk analysis without a cross-reference in the report.
- Reusing a zone definition across programs without re-identifying
  the zones, since zone boundaries depend on the installed
  configuration.

## Behavior contract (gate 3)

The severity classification, rollup, checklist coverage and
completeness, separation and containment verdicts, and report rollup
logic is exercised by the gate 3 contract test:
scripts/test_zonal_safety_analysis.py against
scripts/zonal_safety_analysis_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_zonal_safety_analysis.py

## Compliance

- Standards referenced, not reproduced: ARP4761A text is
  proprietary (SAE); summary-only per standards-map.yaml and
  brief 06.
- compliance: STANDARDS-REF, gated: false.

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →