agentsclimarketplace

Perrow system safety

Skill Mason-1011/Mason_Skills/skills/perrow-system-safety

Install
npx -y skills add Mason-1011/Mason_Skills --skill perrow-system-safety

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Apply Charles Perrow's Normal Accident Theory to analyze complex systems for interactive complexity, tight coupling, and accident potential. Use when the user wants to review system architecture, diagnose incidents, assess risk in high-risk systems, or invokes /perrow-system-safety.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

12.3 KB, as published. Nobody here has run it

Normal Accident System Safety

Based on Charles Perrow's Normal Accidents: Living with High-Risk Technologies (1984). Apply these frameworks when analyzing systems for safety, diagnosing incidents, or reviewing architecture.

Core Thesis

In systems with interactive complexity AND tight coupling, accidents are inevitable ("normal"). They arise from unanticipated interactions of multiple small failures, not from single catastrophic failures.

The Interaction/Coupling (I/C) Chart

Classify any system on two axes to assess accident potential:

                    INTERACTION
              Linear ◄─────────► Complex
         ┌─────────────────┬─────────────────┐
  Loose  │  Quadrant I     │  Quadrant II    │
COUPLING │  Low risk       │  Moderate risk  │
         │  e.g. Auto      │  e.g. University│
         │  manufacturing  │  research lab   │
         ├─────────────────┼─────────────────┤
  Tight  │  Quadrant III   │  Quadrant IV    │
         │  Moderate risk  │  HIGHEST RISK   │
         │  e.g. Hydro     │  e.g. Nuclear   │
         │  electric dam   │  power, chemical│
         │                 │  plants, aviation│
         └─────────────────┴─────────────────┘

Quadrant IV systems (complex + tight) are where normal accidents occur. Most high-profile disasters live here.

Interactive Complexity — Assessment Checklist

A system has high interactive complexity if it has:

FactorComplex (score +1)Linear (score 0)
ProximityComponents in close proximity, shorting possibleSpatially segregated subsystems
Common-mode connectionsShared connections that couple subsystemsDedicated, independent connections
Interconnected subsystemsTight interconnections between subsystemsSubsystems can operate independently
SubstitutabilityLimited ability to substitute components or rolesEasy to substitute supplies/equipment/personnel
Feedback loopsMultiple, unfamiliar feedback loopsFew feedback loops, all understood
ControlsMultiple controls per functionSingle-purpose controls
InformationIndirect, inferred informationDirect, observable information
UnderstandingUnfamiliar, unexpected sequencesWell-understood production sequences

Scoring: 0-3 = Linear; 4-6 = Moderately Complex; 7-8 = Highly Complex

Tight Coupling — Assessment Checklist

A system is tightly coupled if:

FactorTight (score +1)Loose (score 0)
TimingDelays not possible, must proceed on scheduleCan delay, hold, or pause processes
SequenceInvariant sequence requiredMultiple valid sequences possible
MethodsOnly one way to achieve goalMultiple methods available
SlackNo slack/buffer between componentsSome buffer exists between stages
BuffersNo designed-in buffersFortuitous buffers can absorb failures

Scoring: 0-2 = Loose; 3 = Moderate; 4-5 = Tight

DEPOSE Failure Analysis Framework

When diagnosing any failure or incident, systematically examine six components:

  • Design — Was the system designed with inadequate safety margins? Are safety features built in but flawed?
  • Equipment — Did hardware/components fail? Were redundancies present but defeated?
  • Procedures — Were established procedures followed? Were they adequate for the actual conditions?
  • Operators — Did human error contribute? (But: "human error" is often a symptom, not a cause)
  • Supplies & Materials — Were materials substandard? Were consumables adequate?
  • Environment — What environmental conditions contributed? (Weather, terrain, temperature, etc.)

DEPOSE Analysis Process

  1. List all observed failures across all six DEPOSE categories
  2. Identify which failures were independent vs interacting
  3. Map the interaction sequence — which failures combined to produce the accident?
  4. Determine if this was a system accident (unanticipated interactions) or component failure accident (single anticipated failure)
  5. Ask: were there designed-in safety features that were themselves defeated by the interactions?

System Accident vs Component Failure

CharacteristicSystem AccidentComponent Failure
Number of failuresMultiple, interactingSingle point of failure
PredictabilityUnanticipated sequencesExpected failure mode
Root causeInteractive complexity + tight couplingDesign flaw, wear, operator error
Post-incident blameOften misattributed to "operator error"Correctly attributed to component
PreventionRedesign for loose coupling / linearityRedundancy, maintenance, training

Error-Inducing Systems

Some systems are structurally configured to induce errors and defeat attempts at error reduction. Key indicators:

  • Blame inversion: Victims are low-status, unorganized, or anonymous; perpetrators face no accountability
  • Regulatory fragmentation: International/multi-jurisdictional systems with weak enforcement (e.g., flags of convenience)
  • Production pressure dominance: Safety is subordinated to schedule/economic pressure at every level
  • Information asymmetry: Operators have poor information; surveillance is inadequate or absent
  • Authority concentration: Single-person authority with insufficient checks (the "captain" problem)
  • Safety feature defeat: Designed-in safety features are bypassed, degraded, or rendered ineffective by the system's own structure
  • Error normalization: Frequent small failures become invisible through familiarity ("the traditions of the sea")

Key insight: In error-inducing systems, improving any single component may be inconsequential because other components will be allowed to express more risk. Only wholesale reconfiguration can make the system error-avoiding.

System Type Classification

Perrow distinguishes three types of systems by how they transform inputs:

TypeDescriptionRisk Profile
TransformationChanges the nature of materials (nuclear, chemical)Highest risk — poorly understood dynamics, unobservable processes
FabricatingAssembles components into products (manufacturing)Lower risk — linear, well-understood sequences
AdditiveMoves things without changing them (transport)Variable — depends on complexity/coupling

Aviation is largely additive but becomes transformational at high speed/altitude ("exceeding the buffet boundary"), where it takes on the dangerous characteristics of transformation systems.

Production Pressure Analysis

Production pressures are a systemic force, not individual greed. Assess:

  1. Schedule pressure: Are operators incentivized to meet timelines at the expense of safety?
  2. Economic pressure: Does the organization profit from tighter coupling or reduced margins?
  3. Regulatory capture: Does the industry influence its own regulators?
  4. Risk homeostasis: Do safety improvements get consumed by increased risk-taking rather than increased safety? (e.g., better brakes → drivers go faster)
  5. Blame patterns: Does the organization attribute systemic failures to individual "operator error"?
  6. Insurance failure: Does insurance actually penalize risky behavior, or are costs passed to consumers?
  7. International fragmentation: Can organizations evade regulation through flags of convenience, multiple jurisdictions?

Practical Application: System Design Review

When reviewing any system (software architecture, organizational process, physical plant):

  1. Classify on I/C chart — Where does it fall? If Quadrant IV, it needs special attention.
  2. Run DEPOSE checklist — Identify weak points across all six categories.
  3. Look for linearization opportunities — Can subsystems be decoupled? Can sequences be made flexible?
  4. Look for coupling reduction — Can buffers, slack, or delays be introduced?
  5. Check for automation paradoxes — Does automation reduce workload but increase consequence of failure when humans must intervene?
  6. Assess error-inducing features — Does the system's structure encourage risky behavior?
  7. Evaluate redundancy independence — Are backup systems truly independent, or can a single event defeat multiple "redundant" systems?

Practical Application: Incident Diagnosis

When an incident occurs:

  1. Don't stop at "operator error" — Ask what system conditions made the error likely or inevitable
  2. Map all concurrent failures — Use DEPOSE to identify every contributing factor
  3. Trace the interaction chain — How did independent failures combine in unexpected ways?
  4. Identify defeated safety features — Were there safeguards that should have caught this but didn't?
  5. Check for tight coupling indicators — Could the cascade have been halted? Were there buffers?
  6. Look for organizational factors — Production pressures, training gaps, regulatory failures

Policy Framework: System Classification for Action

Perrow proposes classifying high-risk systems along two dimensions: net catastrophic potential and cost of alternatives. This yields three action categories:

Category 1: Abandon (High Risk + Low Alternative Cost)

Systems where inevitable risks outweigh reasonable benefits:

  • Nuclear power (complex + tightly coupled transformation system, no organizational fix possible)
  • Nuclear weapons (catastrophic potential + arms race dynamics)

Category 2: Constrain & Improve (Moderate-High Risk + High Alternative Value)

Systems we cannot easily do without, but where risks should be reduced:

  • Marine transport (error-inducing system, needs wholesale restructuring)
  • Recombinant DNA (enormous potential benefits, but needs strict controls)

Category 3: Self-Correcting with Modest Effort (Lower Risk + Existing Self-Correction)

Systems that are partially self-correcting and can be further improved:

  • Chemical plants (mostly linear, loosely coupled)
  • Airliners and air traffic control (strong safety culture, self-reporting systems like ASRS)
  • Mining, fossil fuel plants, highway/automobile safety

Risk Assessment Critique

Perrow argues that conventional risk assessment is flawed because it:

  • Monetizes social goods and human life ($300,000 per life in 1984)
  • Treats 50 scattered highway deaths as equivalent to 50 deaths in one catastrophe
  • Ignores the difference between voluntary risks (skiing) and imposed risks (nuclear plants)
  • Fails to account for third-party and fourth-party victims (innocent bystanders + future generations)
  • Is dominated by industry-funded researchers with a vested interest

Key insight: "Ultimately, the issue is not risk, but power; the power to impose risks on the many for the benefit of the few."

Key Quotes for Context

"In tightly coupled systems, failures can cascade rapidly, and there is little slack or buffer to absorb them."

"Complex systems produce more unfamiliar sequences than are actually displayed in any given accident."

"Operator error is a convenient catch-all for mishaps whose real cause is uncertain, complex, or embarrassing to the system."

"There is no organizational structure that we would or should tolerate that could prevent [system accidents in nuclear power]."

"The issue is not risk, but power; the power to impose risks on the many for the benefit of the few."

References

  • Perrow, C. (1984). Normal Accidents: Living with High-Risk Technologies. Basic Books.
  • Case studies covered: Nuclear power (TMI, Fermi, Dresden), Petrochemical (Bhopal, Texas City, Flixborough), Aviation (DC-10, Orange County, ATC), Marine transport, Space (Mercury, Apollo), DNA research

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.