
Mission Critical
- 27 installs
- 7 repo stars
- Updated May 20, 2026
- daemon-blockint-tech/agentic-enteprises-skill
Guides mission-critical system framing: criticality tiering, availability/integrity/continuity objectives, blast-radius mapping, redundant architecture, and Tier 0/1 release governance.
About
Guides mission-critical system framing across criticality tiering, availability/RTO/RPO objectives, dependency and blast-radius mapping, redundant architecture patterns, and change/release governance by tier. A team uses it when classifying criticality, setting continuity targets, or governing Tier 0/1 releases.
- Criticality tiering with RTO/RPO/MTPD and integrity targets
- Active-active, geo-redundant, fail-safe architecture pattern selection
Mission Critical by the numbers
- 27 all-time installs (skills.sh)
- Ranked #160 of 248 Release Management skills by installs in the Skillselion catalog
- Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill mission-criticalAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 27 |
|---|---|
| repo stars | ★ 7 |
| Last updated | May 20, 2026 |
| Repository | daemon-blockint-tech/agentic-enteprises-skill ↗ |
What it does
Guides mission-critical system framing: criticality tiering, availability/integrity/continuity objectives, blast-radius mapping, redundant architecture, and Tier 0/1 release governance.
Files
Mission-Critical Systems
When to Use
- Classify criticality tiers (mission-critical, business-critical, important) with explicit impact criteria
- Set availability, integrity, and continuity objectives (uptime, RTO/RPO, MTPD, data loss tolerance)
- Map dependencies, failure domains, and blast radius for severe-impact services
- Select architecture patterns—active-active, geo-redundancy, quorum, deterministic execution, fail-safe defaults
- Define change and release governance—hold points, CAB tiers, emergency change, rollback criteria
- Tailor monitoring, alerting, and escalation to criticality (SLOs alone are insufficient for Tier 0)
- Align engineering with contractual SLAs, sector regulation, and continuity obligations (generic framing)
- Produce criticality registers, architecture decision records, and governance briefs for leadership
When NOT to Use
- Own SLI/SLO definitions, error-budget policy, burn-rate alerting, and toil reduction →
site-reliability-engineer - Establish failure-prevention culture, HRO principles, stop-the-line, and defect-escape metrics →
zero-tolerance-for-failure - Run live incident war room, containment, and forensic preservation →
incident-responder - Design backup/immutability, ransomware recovery, and resilience test evidence →
cyber-resilience-engineer - Own enterprise BCM program, BIA facilitation, and regulatory BCM policy →
bcm-disaster-recovery-specialist - Enterprise security reference architecture and control frameworks without tiering lens →
enterprise-security-architect - Greenfield integration patterns and ADRs without criticality classification →
senior-system-architecture - Cleared program ATO, inspection, and personnel security without operational tiering →
classified-cyber-security-senior-manager - CI compile/lint gates without release governance for critical services →
build-validator
Related skills
| Need | Skill |
|---|---|
| SLOs, error budgets, reliability dashboards, capacity toil | site-reliability-engineer |
| HRO mindset, verification gates, fail-safe design, pre-mortem/FMEA | zero-tolerance-for-failure |
| RTO/RPO recovery architecture, immutability, attack playbooks | cyber-resilience-engineer |
| Enterprise BCM/DR program, tabletops, crisis comms | bcm-disaster-recovery-specialist |
| Active CSIRT response and containment | incident-responder |
| Incident program, SEV, on-call, postmortem process | incident-management-engineer |
| NFRs, architecture review, ADRs | senior-system-architecture |
| Security reference architecture, zero trust, governance | enterprise-security-architect |
| Cleared program governance and accreditation interfaces | classified-cyber-security-senior-manager |
| Cloud DR regions, landing zone, service placement | cloud-engineer |
Core Workflows
1. Scope and criticality tiering
Define what “mission-critical” means in context; classify services and data; document drivers.
See `references/mission_critical_scope_and_tiering.md`.
2. Objectives: availability, integrity, continuity
Set measurable targets and exclusions; align tiers to RTO/RPO/MTPD and integrity classes.
See `references/objectives_availability_integrity_continuity.md`.
3. Architecture patterns for critical systems
Choose redundancy, partitioning, determinism, and degradation modes for Tier 0/1 workloads.
See `references/architecture_patterns_for_critical_systems.md`.
4. Dependencies and blast radius
Map upstream/downstream, shared fate, control planes, and containment boundaries.
See `references/dependencies_and_blast_radius.md`.
5. Change control and release governance
Tier releases, evidence gates, emergency change, and rollback for high-criticality paths.
See `references/change_control_and_release_governance.md`.
6. Operations, monitoring, and escalation
Observability depth, synthetic probes, runbooks, and escalation matched to impact.
See `references/operations_monitoring_and_escalation.md`.
Outputs
- Criticality register — tier, owner, impact narrative, objectives, last review
- Objectives sheet — availability, integrity, RTO/RPO/MTPD per tier with measurement method
- Dependency / blast-radius map — failure domains, shared components, isolation notes
- Architecture decision pack — pattern choice, trade-offs, degradation and fail-safe behavior
- Release governance matrix — change type × tier → gates, approvers, evidence, rollback
- Operations brief — alert routes, escalation tree, runbook index, drill calendar hooks
Principles
- Tier before tooling — criticality drives architecture and governance; do not retrofit labels after build
- Integrity equals availability — corruption or unauthorized change can be worse than downtime
- Contain blast radius — shared control planes and “single throat to choke” are Tier 0 risks
- Govern change proportionally — higher tier → more evidence, independence, and rollback discipline
- Measure what customers and regulators care about — pair SRE SLIs with tier-specific continuity proofs
- Pair with peers — reliability math (SRE), prevention culture (zero-tolerance), recovery (resilience), incidents (IR)
Architecture patterns for critical systems
Table of contents
1. Pattern selection 2. Redundancy and active-active 3. Geographic and zone isolation 4. Determinism and overload behavior 5. Fail-safe, fail-closed, degradation 6. Control plane vs data plane 7. Anti-patterns
Pattern selection
Choose patterns from tier, failure modes, and integrity class:
| Need | Pattern direction |
|---|---|
| Survive AZ/region loss | N+1 capacity, active-active or warm standby, geo DNS/traffic management |
| Survive operator error | Immutable deploy artifacts, config validation, progressive rollout |
| Survive dependency outage | Timeouts, bulkheads, circuit breakers, cached read models |
| Survive corruption | Append-only event log, point-in-time recovery, out-of-band verification |
| Survive overload | Admission control, fair queuing, shed load by tier |
Document decisions in ADRs; pair senior-system-architecture for general NFR templates.
Redundancy and active-active
| Pattern | When | Caveats |
|---|---|---|
| Active-passive | RTO allows failover time; simpler consistency | Test failover; avoid stale secondary |
| Active-active | Low RTO; horizontal scale | Split-brain, write conflicts, clock skew |
| N+1 / M-of-N | Capacity + failure tolerance | Shared fate in one cluster |
| Quorum systems | Strong consistency requirements | Latency; operator complexity |
Mission-critical default: prefer proven failover over theoretical multi-master unless conflict resolution is specified and tested.
Geographic and zone isolation
- Failure domains — account, region, AZ, cluster, rack; map on blast-radius diagram
- Traffic steering — health-based routing; avoid flapping during partial degradation
- Data residency — sovereignty constraints as hard requirements (generic regulatory framing)
- Clocks and ordering — use logical clocks or external coordination where wall-clock unsafe
Pair cloud-engineer for regional placement; you own tier fit and continuity proof.
Determinism and overload behavior
Tier 0/1 systems should behave predictably under stress:
| Technique | Purpose |
|---|---|
| Fixed thread pools / bounded queues | Prevent retry storms |
| Idempotent handlers | Safe replay after partial failure |
| Explicit state machines | Reject illegal transitions |
| Resource budgets per tenant | Fairness; contain noisy neighbor |
| Load shedding | Drop or defer non-critical work first |
Avoid “best effort” background jobs on Tier 0 paths without isolation.
Fail-safe, fail-closed, degradation
Align with zero-tolerance-for-failure:
| Mode | Default for Tier 0/1 |
|---|---|
| Auth / authZ ambiguous | Deny |
| Safety interlock | Safe physical/logical state |
| Partial data | Fail transaction; do not guess |
| Degraded read | Only if explicitly designed and labeled to users |
Define degradation levels (L0 full → L3 minimal) with customer-visible behavior and rollback triggers.
Control plane vs data plane
| Plane | Tiering guidance |
|---|---|
| Data plane | User/mission traffic; highest redundancy |
| Control plane | Provisioning, identity, DNS, K8s API—often shared fate; tier as Tier 0 if many dependents |
| Management / CI | Compromise = widespread blast radius; isolate and harden |
Never assume “internal only” control planes are low tier if Tier 0 services depend on them.
Anti-patterns
- Stretch cluster across regions without split-brain design
- Shared database for unrelated Tier 0 domains
- Silent fail-open on auth or validation for availability
- Chaos in production without tier approval and rollback (
site-reliability-engineercoordinates) - Undocumented manual runbooks as the only failover path
Change control and release governance
Table of contents
1. Governance principles 2. Change categories 3. Tiered release gates 4. Emergency change 5. Rollback and verification 6. Interfaces with SRE and prevention
Governance principles
High-criticality change management optimizes for predictable outcomes, not maximum deploy frequency:
- Evidence before production — tests, peer review, security review proportionate to tier
- Independence — separate build, verify, approve roles for Tier 0 (
zero-tolerance-for-failure) - Reversibility — every Tier 0/1 change has tested rollback or forward-fix with same rigor
- Audit trail — who approved, what artifact hash, what window, what validation ran
- Freeze alignment — honor error-budget freeze and regulatory/contractual blackouts
Change categories
| Category | Examples | Typical path |
|---|---|---|
| Standard | Routine config within policy | Automated pipeline + policy checks |
| Normal | Feature release, schema migration | CAB or delegated approver by tier |
| Emergency | Active SEV, safety patch, active exploit | Expedited approvers + post-implementation review |
| Maintenance | Planned outage, DR test | Pre-notified window; customer comms hook |
Tag every change record with service tier and blast-radius estimate.
Tiered release gates
Illustrative gate matrix—adapt to org process:
| Gate | Tier 0 | Tier 1 | Tier 2+ |
|---|---|---|---|
| Architecture / ARB | Required | Required for structural change | As needed |
| Security review | Required | Required for trust boundary | Risk-based |
| Peer review | Two-person + specialist | Two-person | Standard |
| Automated test | Full suite + contract tests | Full suite | Standard CI |
| Canary / progressive | Mandatory; defined success criteria | Mandatory | Recommended |
| PRR / readiness | Formal sign-off (site-reliability-engineer) | Checklist | Lightweight |
| CAB approval | Executive + ops + security | Service owner + delegate | Team lead |
| Comms / customer | Pre-approved template | If user-visible | Optional |
Hold points: pipeline must stop until human approval for Tier 0 production deploy.
Emergency change
Allowed when active harm exceeds delay risk:
1. Declare emergency change ID linked to incident if applicable 2. Minimum approvers — named roster (not “any manager”) 3. Scope limit — smallest change that mitigates; defer unrelated fixes 4. Real-time comms — ops bridge + stakeholder awareness 5. PIR within 48–72h — retroactive evidence, test gap, tier appropriateness
Document why normal path was unsafe; repeated emergencies signal tier or architecture debt.
Rollback and verification
| Element | Tier 0/1 requirement |
|---|---|
| Rollback artifact | Previous version pinned; DB migration reversible or forward-only plan |
| Health checks | Automated post-deploy; synthetic journey success |
| Integrity checks | Reconciliation, sample transactions, config drift detection |
| Observation window | Minimum soak before closing change; on-call staffed |
| Stop-the-line | Any ambiguous signal → rollback first (zero-tolerance-for-failure) |
Interfaces with SRE and prevention
| Peer | Contribution |
|---|---|
site-reliability-engineer | PRR, canary metrics, error-budget linkage |
zero-tolerance-for-failure | Independent verification, gate catalog, stop-the-line |
build-validator | CI quality gates—not substitute for Tier 0 CAB |
deployment-strategist | Cutover choreography for large migrations |
devops | Pipeline implementation of hold points |
Your deliverable: release governance matrix mapping change type × tier → gates, owners, evidence.
Dependencies and blast radius
Table of contents
1. Dependency mapping scope 2. Blast radius concepts 3. Mapping workflow 4. Shared fate and choke points 5. Containment strategies 6. Outputs and maintenance
Dependency mapping scope
For each Tier 0/1 service, document:
| Layer | Examples |
|---|---|
| Runtime | Compute, containers, serverless, OT gateways |
| Data | Primary DB, caches, queues, object stores, search |
| Identity | IdP, MFA, API keys, service accounts, HSM/KMS |
| Network | DNS, LB, WAF, private links, CDN |
| Platform | K8s control plane, service mesh, GitOps, CI/CD |
| Third party | SaaS APIs, payment rails, market data, SMS/email |
| People / process | On-call vendor, manual reconciliation desk |
Mark direction (sync/async), criticality of path, and fallback if dependency fails.
Blast radius concepts
| Term | Meaning |
|---|---|
| Blast radius | Maximum scope of impact from one failure or change |
| Failure domain | Boundary within which a fault propagates freely |
| Shared fate | Independent-looking services that fail together |
| Cascading failure | Overload or retry storm amplifies initial fault |
Tier 0 design goal: limit blast radius even when availability SLO is momentarily met (e.g., corrupt downstream).
Mapping workflow
1. Anchor on Tier 0/1 service and primary user journeys 2. Walk the request path — ingress → app → data → async consumers 3. Walk the change path — commit → build → deploy → config → secrets 4. Walk the ops path — metrics, logs, traces, paging, runbooks 5. Label each node with tier, owner, and max outage if node fails alone 6. Identify cycles — mutual dependencies (A→B→A) are high risk 7. Validate with game day or tabletop; update quarterly minimum
Use dependency truth from CMDB/service catalog; challenge “unknown” edges for Tier 0.
Shared fate and choke points
Flag components that concentrate risk:
| Choke point type | Why it matters |
|---|---|
| Regional control plane | One API outage affects all clusters in region |
| Global load balancer / DNS | Misconfig affects all regions |
| Shared secrets store | Rotation or outage hits many services |
| Central logging/SIEM | Blind spot during incident—not always Tier 0 but document |
| Monolithic database | Schema change or corruption spans domains |
| Single vendor SaaS | Contract RTO may exceed your MTPD |
For each choke point: mitigation (shard, isolate, dual-vendor, break-glass) or accepted risk with sponsor sign-off.
Containment strategies
| Strategy | Use when |
|---|---|
| Bulkheads | Isolate thread pools, queues, or cells per tenant/region |
| Cell-based architecture | Limit customer blast to one cell |
| Async boundaries | Queue between domains; absorb spikes |
| Read replicas / CQRS | Protect write path from read overload |
| Feature flags | Disable non-critical features under stress |
| Manual break-glass | Last resort; audited and rehearsed |
Pair cyber-resilience-engineer when dependency loss is attack-driven (IdP, logging, backup).
Outputs and maintenance
| Artifact | Contents |
|---|---|
| Dependency graph | Nodes, edges, tier, sync/async, owner |
| Blast-radius sheet | Top N failure scenarios ranked by impact × likelihood |
| Choke-point register | Mitigation status, target date, executive owner |
| Interface contracts | Timeout, retry, idempotency requirements for Tier 0 consumers |
Trigger refresh on: new Tier 0 promotion, major vendor change, merger integration, or post-incident learning.
Mission-critical scope and tiering
Table of contents
1. Purpose and boundaries 2. Criticality tiers 3. Classification criteria 4. Sector and contractual drivers 5. Stakeholders and RACI 6. Deliverables and review cadence
Purpose and boundaries
Mission-critical systems engineering frames how services are classified, designed, operated, and governed when outage or corruption causes severe harm—safety, legal/regulatory breach, large financial loss, or loss of essential public function.
This skill is a design and governance lens. It complements:
| Peer | Focus |
|---|---|
site-reliability-engineer | Steady-state SLOs, error budgets, toil |
zero-tolerance-for-failure | Prevention culture, HRO, verification gates |
cyber-resilience-engineer | Recovery architecture and restore evidence |
senior-system-architecture | General NFRs and integration patterns |
enterprise-security-architect | Enterprise security reference architecture |
You own tiering, objectives, and proportional controls—not incident command, BCM policy ownership, or SRE math alone.
Criticality tiers
Use a small, enforced taxonomy (example—adapt names to org glossary):
| Tier | Label | Typical impact if failed |
|---|---|---|
| 0 | Mission-critical | Loss of life, major safety event, systemic market/public-service failure, or severe regulatory sanction |
| 1 | Business-critical | Material revenue/regulatory breach; widespread customer incapacity; multi-hour executive crisis |
| 2 | Important | Degraded experience for many users; recoverable within business day with workarounds |
| 3 | Standard | Limited blast radius; standard IT change and monitoring |
Rules:
- One tier per service in the register; subcomponents may differ only with documented decomposition
- Tier 0/1 require named service owner, deputy, and executive sponsor
- Down-tiering needs written rationale and risk acceptance—not budget convenience
Classification criteria
Score each dimension; highest sustained score drives tier (document overrides):
| Dimension | Questions |
|---|---|
| Safety | Could failure cause injury, loss of life, or unsafe physical state? |
| Legal / regulatory | Mandatory reporting, license to operate, or sector rules (finance, health, utilities)? |
| Financial | Revenue, settlement, or liability beyond delegated authority? |
| Operational continuity | Essential function for customers, citizens, or warfighter mission (generic)? |
| Data integrity | Corruption worse than outage (ledger, dosing, control commands, evidence)? |
| Dependency centrality | Many Tier 0/1 services depend on this component? |
| Recoverability | Is rebuild/restore unproven or longer than MTPD without workaround? |
Anti-patterns: labeling everything Tier 0; tiering by team prestige; ignoring integrity and covert change scenarios.
Sector and contractual drivers
Frame drivers generically—do not invent customer-specific obligations:
| Sector (generic) | Common drivers |
|---|---|
| Finance | Market integrity, settlement windows, record accuracy, operational resilience expectations |
| Healthcare | Patient safety, PHI integrity, care continuity, device/software safety classes |
| Public safety / utilities | Service continuity, SCADA/OT safety interlocks, emergency communications |
| Defense industrial base | Mission assurance, supply chain integrity, export/control interfaces (pair classified-cyber-security-senior-manager when cleared) |
Extract contractual SLAs, audit clauses, and notification timelines into the criticality register as constraints, not legal advice.
Stakeholders and RACI
| Role | Responsibility |
|---|---|
| Service owner | Tier proposal, objectives, dependency truth, runbook currency |
| Architecture / platform | Pattern standards, shared fate reviews, control-plane tiering |
| SRE / operations | Measurement, alerting hooks, drill participation |
| Security / GRC | Integrity class, regulatory mapping inputs |
| BCM | MTPD alignment, exercise calendar (bcm-disaster-recovery-specialist) |
| Executive sponsor | Tier 0/1 risk acceptance, investment prioritization |
Deliverables and review cadence
| Artifact | Minimum content | Review |
|---|---|---|
| Criticality register | Tier, owner, drivers, objectives link, dependencies | Quarterly; after major architecture change |
| Tier decision record | Criteria scores, dissent, approver | Per promotion to Tier 0/1 |
| Exception log | Temporary down-tier or control gap with expiry | Monthly until closed |
Escalate unresolved tier disputes to architecture review with explicit residual risk statement.
Objectives: availability, integrity, continuity
Table of contents
1. Objective families 2. Availability targets 3. Integrity and authenticity 4. Continuity: RTO, RPO, MTPD 5. Measurement and exclusions 6. Tier-to-objective mapping
Objective families
Mission-critical engineering treats three families as co-equal:
| Family | Protects against | Example metrics |
|---|---|---|
| Availability | User-visible outage or unresponsive dependency | Uptime %, successful transaction rate, probe success |
| Integrity | Wrong, corrupted, or unauthorized data/state | Reconciliation breaks, audit failures, unsafe commands |
| Continuity | Cannot restore within required time | RTO achieved, RPO met, MTPD not breached |
Pair SRE SLIs (site-reliability-engineer) with tier-specific continuity proofs—error budgets alone do not satisfy Tier 0 obligations.
Availability targets
Define per user journey or control loop, not per server:
- Target — e.g., 99.95% monthly for Tier 1 payment initiation (illustrative; set per contract)
- Window — calendar month vs rolling 28d; align with SLA text
- Scope — regions, channels, customer segments included
- Dependencies — explicit upstream exclusions (identity, network) documented
Degraded modes: specify minimum viable function when full feature set is unavailable (read-only, queue-and-replay, manual fallback).
Integrity and authenticity
For Tier 0/1, specify:
| Control theme | Engineering ask |
|---|---|
| Correctness | Idempotency, exactly-once semantics, reconciliation jobs |
| Tamper evidence | Immutable logs, WORM, hash chains where warranted |
| Authorization | Fail-closed authZ; break-glass audited (zero-tolerance-for-failure) |
| Dual control | Four-eyes for irreversible or high-value state changes |
| Determinism | Bounded behavior under overload; no unbounded retries on shared resources |
Integrity SLO examples: max undetected ledger divergence duration; max time to detect unauthorized config drift.
Continuity: RTO, RPO, MTPD
| Term | Definition | Owner interface |
|---|---|---|
| RTO | Max acceptable time to restore service function | Engineering + ops; validated by drill |
| RPO | Max acceptable data loss window | Backup/replication design; pair cyber-resilience-engineer |
| MTPD | Max tolerable business disruption before unacceptable impact | BCM input (bcm-disaster-recovery-specialist) |
Document RTA (actual recovery in tests) vs RTO (target)—gaps drive backlog.
Measurement and exclusions
| Practice | Guidance |
|---|---|
| Synthetic probes | Black-box journeys for Tier 0/1; not only infra metrics |
| Real user monitoring | Sample critical paths; protect PII |
| Exclusions | Maintenance windows, force majeure—pre-approved and rare for Tier 0 |
| Composite health | Do not green dashboards when integrity checks fail |
Report budget burn (SRE) and continuity margin (time to MTPD breach) on one leadership slide for Tier 0/1.
Tier-to-objective mapping
Illustrative defaults—replace with org standards:
| Tier | Availability (indicative) | Integrity | Continuity |
|---|---|---|---|
| 0 | Highest contractual + safety case | Formal integrity class; continuous verification | RTO/RPO in minutes–hours; MTPD from BCM |
| 1 | Contractual SLA + executive reporting | Reconciliation + change audit | RTO hours; tested quarterly |
| 2 | Internal SLO | Standard change + backup | RTO ≤ 1 business day |
| 3 | Best-effort SLO | Standard controls | Standard backup |
Every Tier 0/1 row links to last successful drill date and open gap count.
Operations, monitoring, and escalation
Table of contents
1. Observability by tier 2. Alerting philosophy 3. Escalation and command 4. Runbooks and drills 5. Regulatory and contractual operations 6. Metrics for leadership
Observability by tier
Tier 0/1 require defense in depth beyond default infra monitoring:
| Signal type | Tier 0/1 emphasis |
|---|---|
| Synthetic journeys | End-to-end probes on critical paths; multi-region |
| RED/USE metrics | Latency, errors, saturation on dependencies |
| Integrity signals | Reconciliation lag, audit failures, config drift |
| Tracing | Sampled distributed traces with retention for incidents |
| Logs | Structured, correlated IDs; tamper-aware storage for forensics |
| Capacity | Headroom alerts before exhaustion; queue depth |
Pair implementation detail with site-reliability-engineer; you define what must exist per tier.
Alerting philosophy
| Principle | Application |
|---|---|
| Page on user impact | Not on single metric noise; use SLO burn where appropriate |
| Page on integrity | Data wrong > CPU high |
| Severity maps to tier | Same alert class may page faster for Tier 0 |
| Runbook link required | No alert without owner and first actions |
| Escalation timers | If unacked in N minutes, escalate tier |
Anti-pattern: hundreds of low-signal pages that train on-call to ignore Tier 0.
Escalation and command
Define escalation tree per Tier 0/1 service:
| Level | Typical role | Trigger |
|---|---|---|
| L1 | Primary on-call | Automated page, synthetic failure |
| L2 | Service owner / tech lead | L1 not acked; complex mitigation |
| L3 | Platform / architecture | Shared choke point, multi-service |
| L4 | Executive / crisis cell | MTPD breach risk, safety, regulatory clock |
Distinguish technical incident command (incident-responder, incident-management-engineer) from business crisis (bcm-disaster-recovery-specialist).
Document communication cadence inputs (status, ETA, customer impact)—not full comms ownership.
Runbooks and drills
| Artifact | Tier 0/1 standard |
|---|---|
| Runbook | Step-by-step; rollback; integrity checks; dependency bypass |
| Dependency failure | Per-upstream play (IdP down, DB read-only, region loss) |
| Drill calendar | Failover, restore, game day—linked to RTO proof |
| Last drill date | Visible on criticality register |
Failed drill = open risk until remediated or risk-accepted at sponsor level.
Regulatory and contractual operations
Generic operational hooks (not legal advice):
| Driver | Operational implication |
|---|---|
| Notification clocks | Timer from detection; pre-drafted templates |
| Evidence preservation | Log retention, chain of custody handoff to IR |
| Reporting | Monthly availability/integrity attestation for Tier 0 |
| Third-party SLAs | Monitor vendor status; escalate before your MTPD |
Map clocks to monitoring and paging—“we would learn too late” is a design defect.
Metrics for leadership
| Metric | Why it matters |
|---|---|
| Tier 0/1 availability vs target | Contract and safety narrative |
| Integrity incidents / near-miss | Corruption risk visibility |
| RTO/RPO drill success rate | Continuity credibility |
| Change failure rate by tier | Governance effectiveness |
| Open choke-point mitigations | Blast-radius debt |
| Emergency change rate | Process or architecture stress |
Present one page per quarter: tier summary, top risks, investment asks—pair financial BCM views when needed.