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

Markov Analysis

ASecurity

Use when you must run a quantitative Markov analysis for an aircraft system safety model per ARP4761A: compute continuous time Markov chain state probabilities from the transition rate matrix, evaluate two-state failure and repair availability with steady state limits, derive the non-repairable failure probability and the mean time to failure, sum series failure rates, and estimate redundant configuration reliability with k-out-of-n combinations. Produces the state probability vector, the ava...

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 markov-analysis --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Markov Analysis?

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

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

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

Download with Pro
Files
SKILL.md
---
name: markov-analysis
description: "Use when you must run a quantitative Markov analysis for an aircraft system safety model per ARP4761A: compute continuous time Markov chain state probabilities from the transition rate matrix, evaluate two-state failure and repair availability with steady state limits, derive the non-repairable failure probability and the mean time to failure, sum series failure rates, and estimate redundant configuration reliability with k-out-of-n combinations. Produces the state probability vector, the availability, and the MTTF that gate the quantitative safety case for the failed state. Trigger: Markov analysis, Markov chain, state probability, transition rate, failure rate, repair rate, availability, MTTF, absorbing state, k-out-of-n."
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: [markov-analysis, markov-chain, state-probability, transition-rate, absorbing-state, mission-reliability, mean-time-to-failure, availability-analysis, k-out-of-n-reliability]
  version: 0.1.0
  author: Aero Agent Skills
---

# ARP4761A Markov Analysis (systems-engineering-safety/arp4761a/markov-analysis)

Use when the task is quantitative safety or reliability modeling of a
system with Markov analysis per ARP4761A: state probabilities from
transition rates, two-state failure and repair availability, MTTF,
and redundant configuration reliability.

## Domain quick reference

- A continuous time Markov chain (CTMC) models system states (for
  example fully operational, degraded, failed) with transitions at
  constant rates: failure rate lambda and repair rate mu, per hour.
- The state probability vector evolves by dP/dt = P Q, where Q is the
  transition rate matrix with the row sums zeroed on the diagonal, so
  P(t) = P(0) exp(Q t) conserves total probability.
- Two-state failure and repair model: P_failed(t) = lam/(lam+mu) *
  (1 - exp(-(lam+mu) t)); steady state unavailability is lam/(lam+mu)
  and availability is mu/(lam+mu).
- Non-repairable model (absorbing failed state): R(t) = exp(-lam t),
  failure probability 1 - exp(-lam t), mean time to failure 1/lam.
- Series chain total failure rate is the sum of the rates; an n-unit
  active redundancy without repair has MTTF (1/lam) * (1/n + 1/(n-1)
  + ... + 1), so two units give 3/(2 lam).
- At least k of n identical units surviving: sum over i from k to n of
  C(n,i) R^i (1-R)^(n-i) with R the per-unit reliability.
- Markov analysis quantifies failure conditions whose probability is
  then compared against the severity-based requirement in the SSA.

## Workflow

1. Define the states of the system (operational, degraded, failed)
   and the constant transition rates between them.
2. Build the transition rate matrix; diagonal entries are the negative
   row sums.
3. Compute the state probability vector at the mission time with
   state_probabilities.
4. For a two-state model, check availability with
   two_state_availability and the steady state limit.
5. For a non-repairable unit, compute the failure probability and MTTF
   with nonrepairable_probabilities and mttf_exponential.
6. Combine independent units with series_failure_rate and estimate
   redundant configurations with redundancy_mttf and
   k_of_n_reliability.
7. Compare the resulting failure probability against the safety
   requirement for the failure condition.

## Pitfalls

- Using the transition rate matrix with the diagonal filled instead of
  rebuilt as the negative row sum, which breaks probability
  conservation.
- Treating a repairable model as non-repairable and quoting 1/lam as
  the MTTF when repair restores the state.
- Summing failure rates for a redundant parallel pair as if the pair
  were in series, which understates the true reliability.
- Forgetting that k-of-n reliability needs the per-unit reliability
  at the mission time, not the steady state availability.
- Reporting a state probability vector that does not sum to 1 as
  evidence of a modeling error, when the chain conserves probability
  by construction.

## Behavior contract (gate 3)

The Markov logic is exercised by the gate 3 contract test:
scripts/test_markov_analysis.py against
scripts/markov_analysis_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_markov_analysis.py

## Compliance

- Standards referenced, not reproduced: ARP4761A text is proprietary
  (SAE); summary-only per standards-map.yaml and brief 06.
- Markov analysis is common reliability methodology (Annex L of
  ARP4761A), paraphrased; no verbatim standard text.
- 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 →