Compliance OS — Meta-Orchestrator

Compliance OS — meta-orchestrator that lets compliance teams CONFIGURE which frameworks apply, COMPUTE cross-framework control overlap, SIMULATE internal audits, and CONSOLIDATE evidence across multiple frameworks.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/compliance-os, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/compliance-os/skills/compliance-os#main ~/.claude/skills/compliance-os

For one project only, change the path to .claude/skills/compliance-os. This skill also uses framework_selector.py, cross_framework_mapper.py, audit_simulator.py, evidence_pool_generator.py, profile.json, control_libs.json — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Compliance OS — Meta-Orchestrator

Show the full text212 lines
namedescriptionlicensemetadata
compliance-osCompliance OS — meta-orchestrator that lets compliance teams CONFIGURE which frameworks apply, COMPUTE cross-framework control overlap, SIMULATE internal audits, and CONSOLIDATE evidence across multiple frameworks. Four decisions: (1) Given a company profile, which of the 12 supported frameworks apply (ISO 27001/13485/42001/14971, EU AI Act, MDR 745, GDPR, SOC 2, FDA QSR, NIST CSF 2.0, NIS2, HIPAA)? (2) Across selected frameworks, which controls overlap and how much evidence reuses? (3) For a given framework + scope, what does a realistic mock audit produce — drawing from the 205-scenario library? (4) Across selected frameworks, what's the unified evidence checklist with reuse map? Use when standing up a multi-framework program, planning the annual audit calendar, or preparing for certification stage 1. Does NOT replace per-framework skills (it orchestrates them).MIT version: 1.0.0 author: Alireza Rezvani category: compliance-os domain: multi-framework-compliance-orchestration updated: 2026-05-13 python-tools: framework_selector.py, cross_framework_mapper.py, audit_simulator.py, evidence_pool_generator.py frameworks: iso-27001, iso-13485, iso-42001, iso-14971, eu-ai-act, eu-mdr-745, gdpr, soc-2, fda-qsr, nist-csf, nis2, hipaa

Compliance OS — Meta-Orchestrator

Multi-framework compliance program orchestration. Four decisions, no per-framework deep-dive:

  1. Which frameworks apply to this company? — framework_selector.py ranks the 12 supported frameworks against a company profile (industry, geography, AI use, medical, financial, headcount, customers, healthcare-PHI, NIS2 essential/important entity, US gov contractor) and returns applicable ones with dependency graph
  2. How much do selected frameworks overlap? — cross_framework_mapper.py computes control-level overlap with confidence rating; outputs unified control matrix + evidence-reuse opportunities
  3. What does a mock audit produce? — audit_simulator.py generates 8–15 finding scenarios with severity distribution matching IIA expectations + interview questions per control
  4. What's the unified evidence checklist? — evidence_pool_generator.py consolidates evidence across enabled frameworks; outputs which artefact satisfies which controls across which frameworks

This skill is NOT a per-framework deep-dive. The per-framework skills (ra-qm-team/skills/iso42001-specialist/, compliance-team-eu-ai-act/, ra-qm-team/skills/gdpr-dsgvo-expert/, etc.) do the operational work. Compliance OS orchestrates them.

This skill is NOT a substitute for binding legal advice. Cross-framework mappings reflect published guidance (ISO standards, regulations, EDPB/Commission guidance, IIA / AICPA professional standards). Novel cross-walks should be reviewed with counsel.

Keywords

compliance orchestration, multi-framework compliance, compliance OS, cross-framework mapping, control overlap, evidence pool, evidence reuse, audit simulation, mock audit, internal audit programme, GRC, governance risk compliance, framework selector, compliance program, integrated compliance, ISO 19011, IIA IPPF, AICPA AT-C, NIST CSF profile, multi-cert program, SOC 2 + ISO 27001, ISO 27001 + ISO 42001, ISO 13485 + MDR 745, AI Act + ISO 42001, GDPR + ISO 27001, compliance officer, compliance team workflow, certification readiness

Quick Start

# Decision A: Which frameworks apply for the company?
python scripts/framework_selector.py                          # embedded mid-stage AI SaaS sample
python scripts/framework_selector.py path/to/profile.json

# Decision B: Compute cross-framework overlap
python scripts/cross_framework_mapper.py                      # embedded ISO 27001 + SOC 2 sample
python scripts/cross_framework_mapper.py path/to/control_libs.json

# Decision C: Simulate an audit
python scripts/audit_simulator.py                             # embedded ISO 27001 sample
python scripts/audit_simulator.py path/to/audit_scope.json

# Decision D: Consolidate evidence checklist across frameworks
python scripts/evidence_pool_generator.py                     # embedded 3-framework sample
python scripts/evidence_pool_generator.py path/to/program.json

Key Questions (ask these first)

  • Have you named every applicable framework? Forgetting one means rebuilding the audit program later. Run framework_selector.py with your profile.
  • What's the most certificate / regulation your company already operates? That's your reuse anchor. Map every new framework against it.
  • What's the audit calendar? A multi-framework program means surveillance audits stacked through the year — plan auditor independence + capacity.
  • Where is evidence stored? Multi-framework programs collapse when evidence lives in one team's drive without an index. Run evidence_pool_generator.py to surface the reuse opportunities.
  • What's the management-review cadence across frameworks? Each framework wants its own management review, but a single integrated review (per ISO Annex SL) typically satisfies all of them with one calendar slot.
  • Who owns the meta-program? If no single accountable role, the program fragments.

Core Responsibilities

1. Framework Selection

The framework: company-profile JSON in → applicable-framework list out with dependency graph.

Deterministic logic:

  • Medical device → ISO 13485 + ISO 14971 + (EU MDR 745 if EU market) + (FDA QSR if US market)
  • Customer-facing AI → ISO 42001 + EU AI Act (if EU users) + GDPR (if personal data)
  • B2B SaaS with enterprise customers → SOC 2 + ISO 27001 (often required for procurement)
  • EU customers + personal data → GDPR mandatory
  • Highly regulated industry (financial, health) → additional sectoral overlays

Run framework_selector.py to apply the decision rules.

2. Cross-Framework Control Mapping

The framework: for each selected framework, parse its control library; compute overlap with other selected frameworks.

Per merged-control output:

  • Mapping confidence (HIGH / MEDIUM / LOW)
  • Evidence-reuse opportunity (single artefact satisfies N controls)
  • Per-framework citation
  • Implementation guidance reusable across frameworks

Densest known overlap: ISO 27001 Annex A ↔ SOC 2 Trust Services Criteria — historically ~75% control coverage shared. Adding ISO 42001 brings AI-specific controls; adding GDPR brings privacy-specific.

Run cross_framework_mapper.py with framework control libraries.

3. Audit Simulation

The framework: generate a realistic mock internal audit per ISO 19011 + IIA IPPF standards.

Per audit output:

  • 8–15 finding scenarios per ISO 19011 typical depth
  • Severity distribution: ≥ 40% observations/OFI, ≤ 15% critical/major (IIA expectation for healthy programs)
  • Interview questions per scoped control (3–5 questions per control)
  • Document-review request list
  • Walk-through requests where applicable

Run audit_simulator.py with framework + scope.

4. Evidence Pool

The framework: consolidate evidence requirements across enabled frameworks; identify reuse opportunities.

Output:

  • Evidence artefact list (e.g., access-review log, supplier risk register, incident log)
  • Per artefact: list of (framework, control) tuples it satisfies
  • Reuse-leverage score (artefact A satisfies N controls across M frameworks)
  • Acquisition cost estimate (effort to produce + maintain)

Run evidence_pool_generator.py with program config.

Workflows

Workflow 1: Program Bootstrap (multi-framework, 4–8 weeks)

Goal: stand up a compliance program covering 2–4 frameworks simultaneously.

# 1. Run framework selector with company profile
python scripts/framework_selector.py profile.json
# 2. For each applicable framework, identify the per-framework skill and run its gap analysis
# 3. Run cross-framework mapper to identify reuse opportunities
python scripts/cross_framework_mapper.py control_libs.json
# 4. Run evidence pool generator to consolidate
python scripts/evidence_pool_generator.py program.json
# 5. Cross-check with cs-compliance-officer agent
# 6. Output: prioritized program backlog with owners + dates
Workflow 2: Annual Audit Calendar (yearly)

Goal: plan internal audit cycles covering all applicable frameworks.

# 1. Refresh framework selector if profile changed
python scripts/framework_selector.py profile.json
# 2. For each framework, run its internal-audit-plan tool
#    (e.g., aims_audit_scheduler.py for ISO 42001; isms_audit_scheduler.py for ISO 27001)
# 3. Coordinate the audit calendar across frameworks (auditor independence + capacity)
# 4. Run audit simulator for each framework to prep auditors
python scripts/audit_simulator.py scope.json
# 5. Output: integrated audit calendar with owners + auditor assignments
Workflow 3: Pre-Certification Readiness (per new framework, 6–12 weeks)

Goal: prepare for an external certification audit.

# 1. Run gap analysis for the new framework
#    (ISO 42001: aims_gap_analyzer.py; ISO 27001: compliance_checker.py; SOC 2: gap_analyzer.py)
# 2. Run cross-framework mapper against already-certified frameworks
python scripts/cross_framework_mapper.py control_libs.json
# 3. Reuse evidence for HIGH-confidence mappings; build new for MEDIUM/LOW
# 4. Run audit simulator to dry-run the certification audit
python scripts/audit_simulator.py scope.json
# 5. Close remaining gaps before external auditor stage 1
Workflow 4: Evidence Pool Consolidation (quarterly)

Goal: keep the unified evidence pool fresh + reusable.

# 1. Refresh evidence pool generator
python scripts/evidence_pool_generator.py program.json
# 2. Identify HIGH-reuse-leverage artefacts (1 evidence -> 5+ controls)
# 3. Confirm evidence freshness (within retention requirement per framework)
# 4. Audit the evidence pool itself (no orphan controls, no stale evidence)

Output Standards

**Bottom Line:** [one sentence — what's the multi-framework picture + biggest reuse opportunity]
**The Decision:** [one of: framework-set | overlap-map | audit-plan | evidence-consolidation]
**The Evidence:** [framework names + control IDs from the tool, not adjectives]
**How to Act:** [3 concrete next steps with owners + dates]
**Your Decision:** [the call only the compliance officer can make — which frameworks to pursue, audit cycle priority, evidence-reuse policy]

Adjacent Skills

  • ra-qm-team/skills/iso42001-specialist/ — ISO 42001 deep-dive (paired with compliance-team-iso42001 plugin)
  • ra-qm-team/skills/eu-ai-act-specialist/ — EU AI Act deep-dive (paired with compliance-team-eu-ai-act plugin)
  • ra-qm-team/skills/information-security-manager-iso27001/ — ISO 27001 ISMS deep-dive
  • ra-qm-team/skills/quality-manager-qms-iso13485/ — ISO 13485 QMS deep-dive
  • ra-qm-team/skills/gdpr-dsgvo-expert/ — GDPR deep-dive
  • ra-qm-team/skills/soc2-compliance/ — SOC 2 deep-dive
  • ra-qm-team/skills/fda-consultant-specialist/ — FDA QSR deep-dive
  • ra-qm-team/skills/mdr-745-specialist/ — EU MDR 745 deep-dive
  • ra-qm-team/skills/risk-management-specialist/ — ISO 14971 deep-dive
  • c-level-advisor/chief-ai-officer-advisor/ — Executive AI risk decisions (build-vs-buy, model selection)
  • c-level-advisor/skills/general-counsel-advisor/ — Legal review for novel cases

References

Phase 3 Asset: Mock Audit Scenario Library

assets/mock_audit_library.json — 205 pre-built finding scenarios spanning 12 frameworks + 26 themes + 4 severity levels (34 critical, 88 major, 54 minor, 29 observation). Each scenario tags applicable frameworks; cross-reference scripts/cross_framework_mapper.py merged-controls catalogue to resolve framework-specific control IDs. Use as input to enrich audit_simulator.py mock audits, as a training resource for new internal auditors, or as the seed for finding-pattern detection across multi-framework programmes.


Version: 1.2.0 Status: Production Ready

1---
2name: "compliance-os"
3description: "Compliance OS — meta-orchestrator that lets compliance teams CONFIGURE which frameworks apply, COMPUTE cross-framework control overlap, SIMULATE internal audits, and CONSOLIDATE evidence across multiple frameworks. Four decisions: (1) Given a company profile, which of the 12 supported frameworks apply (ISO 27001/13485/42001/14971, EU AI Act, MDR 745, GDPR, SOC 2, FDA QSR, NIST CSF 2.0, NIS2, HIPAA)? (2) Across selected frameworks, which controls overlap and how much evidence reuses? (3) For a given framework + scope, what does a realistic mock audit produce — drawing from the 205-scenario library? (4) Across selected frameworks, what's the unified evidence checklist with reuse map? Use when standing up a multi-framework program, planning the annual audit calendar, or preparing for certification stage 1. Does NOT replace per-framework skills (it orchestrates them)."
4license: MIT
5metadata:
6 version: 1.0.0
7 author: Alireza Rezvani
8 category: compliance-os
9 domain: multi-framework-compliance-orchestration
10 updated: 2026-05-13
11 python-tools: framework_selector.py, cross_framework_mapper.py, audit_simulator.py, evidence_pool_generator.py
12 frameworks: iso-27001, iso-13485, iso-42001, iso-14971, eu-ai-act, eu-mdr-745, gdpr, soc-2, fda-qsr, nist-csf, nis2, hipaa
13---
14 
15# Compliance OS — Meta-Orchestrator
16 
17Multi-framework compliance program orchestration. **Four decisions, no per-framework deep-dive:**
18 
191. **Which frameworks apply to this company?** — `framework_selector.py` ranks the 12 supported frameworks against a company profile (industry, geography, AI use, medical, financial, headcount, customers, healthcare-PHI, NIS2 essential/important entity, US gov contractor) and returns applicable ones with dependency graph
202. **How much do selected frameworks overlap?** — `cross_framework_mapper.py` computes control-level overlap with confidence rating; outputs unified control matrix + evidence-reuse opportunities
213. **What does a mock audit produce?** — `audit_simulator.py` generates 8–15 finding scenarios with severity distribution matching IIA expectations + interview questions per control
224. **What's the unified evidence checklist?** — `evidence_pool_generator.py` consolidates evidence across enabled frameworks; outputs which artefact satisfies which controls across which frameworks
23 
24This skill is **NOT** a per-framework deep-dive. The per-framework skills (`ra-qm-team/skills/iso42001-specialist/`, `compliance-team-eu-ai-act/`, `ra-qm-team/skills/gdpr-dsgvo-expert/`, etc.) do the operational work. Compliance OS orchestrates them.
25 
26This skill is **NOT** a substitute for binding legal advice. Cross-framework mappings reflect published guidance (ISO standards, regulations, EDPB/Commission guidance, IIA / AICPA professional standards). Novel cross-walks should be reviewed with counsel.
27 
28## Keywords
29 
30compliance orchestration, multi-framework compliance, compliance OS, cross-framework mapping, control overlap, evidence pool, evidence reuse, audit simulation, mock audit, internal audit programme, GRC, governance risk compliance, framework selector, compliance program, integrated compliance, ISO 19011, IIA IPPF, AICPA AT-C, NIST CSF profile, multi-cert program, SOC 2 + ISO 27001, ISO 27001 + ISO 42001, ISO 13485 + MDR 745, AI Act + ISO 42001, GDPR + ISO 27001, compliance officer, compliance team workflow, certification readiness
31 
32## Quick Start
33 
34```bash
35# Decision A: Which frameworks apply for the company?
36python scripts/framework_selector.py # embedded mid-stage AI SaaS sample
37python scripts/framework_selector.py path/to/profile.json
38 
39# Decision B: Compute cross-framework overlap
40python scripts/cross_framework_mapper.py # embedded ISO 27001 + SOC 2 sample
41python scripts/cross_framework_mapper.py path/to/control_libs.json
42 
43# Decision C: Simulate an audit
44python scripts/audit_simulator.py # embedded ISO 27001 sample
45python scripts/audit_simulator.py path/to/audit_scope.json
46 
47# Decision D: Consolidate evidence checklist across frameworks
48python scripts/evidence_pool_generator.py # embedded 3-framework sample
49python scripts/evidence_pool_generator.py path/to/program.json
50```
51 
52## Key Questions (ask these first)
53 
54- **Have you named every applicable framework?** Forgetting one means rebuilding the audit program later. Run `framework_selector.py` with your profile.
55- **What's the most certificate / regulation your company already operates?** That's your reuse anchor. Map every new framework against it.
56- **What's the audit calendar?** A multi-framework program means surveillance audits stacked through the year — plan auditor independence + capacity.
57- **Where is evidence stored?** Multi-framework programs collapse when evidence lives in one team's drive without an index. Run `evidence_pool_generator.py` to surface the reuse opportunities.
58- **What's the management-review cadence across frameworks?** Each framework wants its own management review, but a single integrated review (per ISO Annex SL) typically satisfies all of them with one calendar slot.
59- **Who owns the meta-program?** If no single accountable role, the program fragments.
60 
61## Core Responsibilities
62 
63### 1. Framework Selection
64 
65**The framework:** company-profile JSON in → applicable-framework list out with dependency graph.
66 
67**Deterministic logic:**
68- Medical device → ISO 13485 + ISO 14971 + (EU MDR 745 if EU market) + (FDA QSR if US market)
69- Customer-facing AI → ISO 42001 + EU AI Act (if EU users) + GDPR (if personal data)
70- B2B SaaS with enterprise customers → SOC 2 + ISO 27001 (often required for procurement)
71- EU customers + personal data → GDPR mandatory
72- Highly regulated industry (financial, health) → additional sectoral overlays
73 
74**Run** `framework_selector.py` to apply the decision rules.
75 
76### 2. Cross-Framework Control Mapping
77 
78**The framework:** for each selected framework, parse its control library; compute overlap with other selected frameworks.
79 
80**Per merged-control output:**
81- Mapping confidence (HIGH / MEDIUM / LOW)
82- Evidence-reuse opportunity (single artefact satisfies N controls)
83- Per-framework citation
84- Implementation guidance reusable across frameworks
85 
86**Densest known overlap:** ISO 27001 Annex A ↔ SOC 2 Trust Services Criteria — historically ~75% control coverage shared. Adding ISO 42001 brings AI-specific controls; adding GDPR brings privacy-specific.
87 
88**Run** `cross_framework_mapper.py` with framework control libraries.
89 
90### 3. Audit Simulation
91 
92**The framework:** generate a realistic mock internal audit per ISO 19011 + IIA IPPF standards.
93 
94**Per audit output:**
95- 8–15 finding scenarios per ISO 19011 typical depth
96- Severity distribution: ≥ 40% observations/OFI, ≤ 15% critical/major (IIA expectation for healthy programs)
97- Interview questions per scoped control (3–5 questions per control)
98- Document-review request list
99- Walk-through requests where applicable
100 
101**Run** `audit_simulator.py` with framework + scope.
102 
103### 4. Evidence Pool
104 
105**The framework:** consolidate evidence requirements across enabled frameworks; identify reuse opportunities.
106 
107**Output:**
108- Evidence artefact list (e.g., access-review log, supplier risk register, incident log)
109- Per artefact: list of (framework, control) tuples it satisfies
110- Reuse-leverage score (artefact A satisfies N controls across M frameworks)
111- Acquisition cost estimate (effort to produce + maintain)
112 
113**Run** `evidence_pool_generator.py` with program config.
114 
115## Workflows
116 
117### Workflow 1: Program Bootstrap (multi-framework, 4–8 weeks)
118**Goal:** stand up a compliance program covering 2–4 frameworks simultaneously.
119 
120```bash
121# 1. Run framework selector with company profile
122python scripts/framework_selector.py profile.json
123# 2. For each applicable framework, identify the per-framework skill and run its gap analysis
124# 3. Run cross-framework mapper to identify reuse opportunities
125python scripts/cross_framework_mapper.py control_libs.json
126# 4. Run evidence pool generator to consolidate
127python scripts/evidence_pool_generator.py program.json
128# 5. Cross-check with cs-compliance-officer agent
129# 6. Output: prioritized program backlog with owners + dates
130```
131 
132### Workflow 2: Annual Audit Calendar (yearly)
133**Goal:** plan internal audit cycles covering all applicable frameworks.
134 
135```bash
136# 1. Refresh framework selector if profile changed
137python scripts/framework_selector.py profile.json
138# 2. For each framework, run its internal-audit-plan tool
139# (e.g., aims_audit_scheduler.py for ISO 42001; isms_audit_scheduler.py for ISO 27001)
140# 3. Coordinate the audit calendar across frameworks (auditor independence + capacity)
141# 4. Run audit simulator for each framework to prep auditors
142python scripts/audit_simulator.py scope.json
143# 5. Output: integrated audit calendar with owners + auditor assignments
144```
145 
146### Workflow 3: Pre-Certification Readiness (per new framework, 6–12 weeks)
147**Goal:** prepare for an external certification audit.
148 
149```bash
150# 1. Run gap analysis for the new framework
151# (ISO 42001: aims_gap_analyzer.py; ISO 27001: compliance_checker.py; SOC 2: gap_analyzer.py)
152# 2. Run cross-framework mapper against already-certified frameworks
153python scripts/cross_framework_mapper.py control_libs.json
154# 3. Reuse evidence for HIGH-confidence mappings; build new for MEDIUM/LOW
155# 4. Run audit simulator to dry-run the certification audit
156python scripts/audit_simulator.py scope.json
157# 5. Close remaining gaps before external auditor stage 1
158```
159 
160### Workflow 4: Evidence Pool Consolidation (quarterly)
161**Goal:** keep the unified evidence pool fresh + reusable.
162 
163```bash
164# 1. Refresh evidence pool generator
165python scripts/evidence_pool_generator.py program.json
166# 2. Identify HIGH-reuse-leverage artefacts (1 evidence -> 5+ controls)
167# 3. Confirm evidence freshness (within retention requirement per framework)
168# 4. Audit the evidence pool itself (no orphan controls, no stale evidence)
169```
170 
171## Output Standards
172 
173```
174**Bottom Line:** [one sentence — what's the multi-framework picture + biggest reuse opportunity]
175**The Decision:** [one of: framework-set | overlap-map | audit-plan | evidence-consolidation]
176**The Evidence:** [framework names + control IDs from the tool, not adjectives]
177**How to Act:** [3 concrete next steps with owners + dates]
178**Your Decision:** [the call only the compliance officer can make — which frameworks to pursue, audit cycle priority, evidence-reuse policy]
179```
180 
181## Adjacent Skills
182 
183- `ra-qm-team/skills/iso42001-specialist/` — ISO 42001 deep-dive (paired with compliance-team-iso42001 plugin)
184- `ra-qm-team/skills/eu-ai-act-specialist/` — EU AI Act deep-dive (paired with compliance-team-eu-ai-act plugin)
185- `ra-qm-team/skills/information-security-manager-iso27001/` — ISO 27001 ISMS deep-dive
186- `ra-qm-team/skills/quality-manager-qms-iso13485/` — ISO 13485 QMS deep-dive
187- `ra-qm-team/skills/gdpr-dsgvo-expert/` — GDPR deep-dive
188- `ra-qm-team/skills/soc2-compliance/` — SOC 2 deep-dive
189- `ra-qm-team/skills/fda-consultant-specialist/` — FDA QSR deep-dive
190- `ra-qm-team/skills/mdr-745-specialist/` — EU MDR 745 deep-dive
191- `ra-qm-team/skills/risk-management-specialist/` — ISO 14971 deep-dive
192- `c-level-advisor/chief-ai-officer-advisor/` — Executive AI risk decisions (build-vs-buy, model selection)
193- `c-level-advisor/skills/general-counsel-advisor/` — Legal review for novel cases
194 
195## References
196 
197- [compliance_os_pattern.md](references/compliance_os_pattern.md) — The meta-framework architecture (configure → map → simulate → consolidate → review); when to use vs not
198- [cross_framework_overlap.md](references/cross_framework_overlap.md) — The 9-framework × control-family overlap table with mapping confidence (Phase 3 expands to 12 frameworks via `cross_framework_mapper.py`)
199- [audit_simulation_methodology.md](references/audit_simulation_methodology.md) — ISO 19011 + IIA IPPF + AICPA AT-C audit-simulation principles + severity distribution heuristics
200- [evidence_management.md](references/evidence_management.md) — Evidence pool design + retention + freshness + reuse-leverage scoring
201- [multi_framework_audit_playbook.md](references/multi_framework_audit_playbook.md) — Integrated audit programme for 2+ frameworks (Phase 2)
202- [evidence_artifact_reuse_index.md](references/evidence_artifact_reuse_index.md) — Empirically-derived reuse-leverage ranking across all 12 frameworks (Phase 3)
203 
204## Phase 3 Asset: Mock Audit Scenario Library
205 
206`assets/mock_audit_library.json` — 205 pre-built finding scenarios spanning 12 frameworks + 26 themes + 4 severity levels (34 critical, 88 major, 54 minor, 29 observation). Each scenario tags applicable frameworks; cross-reference `scripts/cross_framework_mapper.py` merged-controls catalogue to resolve framework-specific control IDs. Use as input to enrich `audit_simulator.py` mock audits, as a training resource for new internal auditors, or as the seed for finding-pattern detection across multi-framework programmes.
207 
208---
209 
210**Version:** 1.2.0
211**Status:** Production Ready
212 

Discussion

Alternatives

Also in Regulation & privacySee all 23 in Legal & compliance →