Governance Risk Experimental Design Lens
Philosophical Mode: Governance
Primary Question: "What risks arise from acting on this result?"
Focus: Deployment Risks, Subgroup Harms, Monitoring Plans, Limitation Disclosure, Responsible Decision-Making
Arguments
/autoskillit:exp-lens-governance-risk [context_path] [experiment_plan_path]
- context_path (optional positional arg 1) — Absolute path to a lens context file
containing IV/DV tables, H0/H1 hypotheses, controlled variables, and success criteria.
If provided, read this file before beginning analysis to obtain structured context.
If omitted, discover context by exploring the CWD.
- experiment_plan_path (optional positional arg 2) — Absolute path to the full
experiment plan. If provided, read for complete experimental methodology and design.
If omitted, locate the experiment plan by exploring the CWD.
When to Use
- AI evaluation with deployment implications
- Experiments whose results will affect real users
- Safety-relevant benchmarks
- User invokes
/autoskillit:exp-lens-governance-risk or /autoskillit:make-experiment-diag governance
Critical Constraints
NEVER:
- Modify any source code files
- Create files outside
{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/
- Run subagents in the background (
run_in_background: true is prohibited)
ALWAYS:
Identify subgroups for whom the experimental evidence may not generalize
Assess decision sufficiency — does the experiment actually answer the deployment question?
Treat absent limitation disclosure as a finding requiring explicit flagging
Distinguish risks that are monitored from risks that are merely acknowledged
BEFORE creating any diagram, LOAD the /autoskillit:mermaid skill using the Skill tool - this is MANDATORY
If the Skill tool cannot be used (disable-model-invocation) or refuses this invocation, do NOT proceed with diagram creation. Abort this step and omit the diagram from output.
Write output to {{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{YYYY-MM-DD_HHMMSS}.md
After writing the file, emit the structured output token as literal plain text with no
markdown formatting on the token name (the adjudicator performs a regex match):
diagram_path = /absolute/path/to/{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{...}.md
Analysis Workflow
Step 0: Parse optional arguments
If positional arg 1 (context_path) is provided and the file exists, read it to obtain
IV/DV tables, H0/H1 hypotheses, controlled variables, and success criteria. If positional
arg 2 (experiment_plan_path) is provided and exists, read the experiment plan for full
methodology. Use this structured context as the foundation for Steps 1-5; skip the CWD
exploration for these fields if the context file supplies them.
Step 1: Launch Parallel Exploration Subagents
Spawn Explore subagents to investigate:
Intended Use & Deployment Context
- Find intended deployment scenario and audience
- Look for: deploy, production, use_case, audience, user, stakeholder, decision
Subgroup & Fairness Analysis
- Find evidence of subgroup analysis or fairness evaluation
- Look for: subgroup, demographic, fairness, equity, bias, disaggregate, protected
Harm & Risk Metrics
- Find safety or harm metrics tracked
- Look for: harm, safety, risk, adverse, negative, side_effect, failure_mode
Monitoring & Feedback Plans
- Find post-deployment monitoring or feedback loops
- Look for: monitor, alert, feedback, drift, rollback, incident, threshold, canary
Limitation Disclosure
- Find explicit acknowledgment of limitations
- Look for: limitation, caveat, not_suitable, generalize, scope, restriction, caveat
Step 2: Build Risk Register
For each potential action: Who is affected? What could go wrong? Severity? Likelihood? Monitoring? Evidence?
Classify by severity × likelihood.
Step 3: Analyze Decision Sufficiency
For every deployment decision: Does the experiment provide sufficient evidence? What additional evidence is needed? Are there subgroups with insufficient evidence?
Step 4: Create the Diagram (Optional)
Direction: TB. Results → Decisions → Stakeholder Impacts
Step 5: Write Output
Write the output to: {{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{YYYY-MM-DD_HHMMSS}.md (relative to the current working directory)
Responsible Deployment Checklist
Pre-Diagram Checklist
Before creating the diagram, verify:
Related Skills
/autoskillit:make-experiment-diag - Parent skill
/autoskillit:mermaid - MUST BE LOADED before creating diagram
/autoskillit:exp-lens-validity-threats
/autoskillit:exp-lens-measurement-validity
1---2name: exp-lens-governance-risk3description: Create a risk register and stakeholder impact assessment for experiments with deployment implications. Governance lens answering "What risks arise from acting on this result?"4---56# Governance Risk Experimental Design Lens78**Philosophical Mode:** Governance9**Primary Question:** "What risks arise from acting on this result?"10**Focus:** Deployment Risks, Subgroup Harms, Monitoring Plans, Limitation Disclosure, Responsible Decision-Making1112## Arguments1314`/autoskillit:exp-lens-governance-risk [context_path] [experiment_plan_path]`1516- **context_path** (optional positional arg 1) — Absolute path to a lens context file17 containing IV/DV tables, H0/H1 hypotheses, controlled variables, and success criteria.18 If provided, read this file before beginning analysis to obtain structured context.19 If omitted, discover context by exploring the CWD.20- **experiment_plan_path** (optional positional arg 2) — Absolute path to the full21 experiment plan. If provided, read for complete experimental methodology and design.22 If omitted, locate the experiment plan by exploring the CWD.2324## When to Use2526- AI evaluation with deployment implications27- Experiments whose results will affect real users28- Safety-relevant benchmarks29- User invokes `/autoskillit:exp-lens-governance-risk` or `/autoskillit:make-experiment-diag governance`3031## Critical Constraints3233**NEVER:**34- Modify any source code files35- Create files outside `{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/`36- Run subagents in the background (`run_in_background: true` is prohibited)3738**ALWAYS:**39- Identify subgroups for whom the experimental evidence may not generalize40- Assess decision sufficiency — does the experiment actually answer the deployment question?41- Treat absent limitation disclosure as a finding requiring explicit flagging42- Distinguish risks that are monitored from risks that are merely acknowledged43- BEFORE creating any diagram, LOAD the `/autoskillit:mermaid` skill using the Skill tool - this is MANDATORY44- If the Skill tool cannot be used (disable-model-invocation) or refuses this invocation, do NOT proceed with diagram creation. Abort this step and omit the diagram from output.45- Write output to `{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{YYYY-MM-DD_HHMMSS}.md`46- After writing the file, emit the structured output token as **literal plain text** with no47 markdown formatting on the token name (the adjudicator performs a regex match):4849 ```50 diagram_path = /absolute/path/to/{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{...}.md51 ```5253---5455## Analysis Workflow5657### Step 0: Parse optional arguments5859If positional arg 1 (context_path) is provided and the file exists, read it to obtain60IV/DV tables, H0/H1 hypotheses, controlled variables, and success criteria. If positional61arg 2 (experiment_plan_path) is provided and exists, read the experiment plan for full62methodology. Use this structured context as the foundation for Steps 1-5; skip the CWD63exploration for these fields if the context file supplies them.6465### Step 1: Launch Parallel Exploration Subagents6667Spawn Explore subagents to investigate:6869**Intended Use & Deployment Context**70- Find intended deployment scenario and audience71- Look for: deploy, production, use_case, audience, user, stakeholder, decision7273**Subgroup & Fairness Analysis**74- Find evidence of subgroup analysis or fairness evaluation75- Look for: subgroup, demographic, fairness, equity, bias, disaggregate, protected7677**Harm & Risk Metrics**78- Find safety or harm metrics tracked79- Look for: harm, safety, risk, adverse, negative, side_effect, failure_mode8081**Monitoring & Feedback Plans**82- Find post-deployment monitoring or feedback loops83- Look for: monitor, alert, feedback, drift, rollback, incident, threshold, canary8485**Limitation Disclosure**86- Find explicit acknowledgment of limitations87- Look for: limitation, caveat, not_suitable, generalize, scope, restriction, caveat8889### Step 2: Build Risk Register9091For each potential action: Who is affected? What could go wrong? Severity? Likelihood? Monitoring? Evidence?92Classify by severity × likelihood.9394### Step 3: Analyze Decision Sufficiency9596For every deployment decision: Does the experiment provide sufficient evidence? What additional evidence is needed? Are there subgroups with insufficient evidence?9798### Step 4: Create the Diagram (Optional)99100**Direction:** TB. Results → Decisions → Stakeholder Impacts101102### Step 5: Write Output103104Write the output to: `{{AUTOSKILLIT_TEMP}}/exp-lens-governance-risk/exp_diag_governance_risk_{YYYY-MM-DD_HHMMSS}.md` (relative to the current working directory)105106---107108## Responsible Deployment Checklist109110- [ ] Subgroup performance disaggregated and analyzed111- [ ] Deployment context matches experimental conditions112- [ ] Monitoring plan defined with specific thresholds113- [ ] Rollback criteria specified114- [ ] Limitations disclosed to decision-makers115- [ ] Affected communities consulted where applicable116117---118119## Pre-Diagram Checklist120121Before creating the diagram, verify:122123- [ ] LOADED `/autoskillit:mermaid` skill using the Skill tool124- [ ] Using ONLY classDef styles from the mermaid skill (no invented colors)125- [ ] Diagram will include a color legend table126127---128129## Related Skills130131- `/autoskillit:make-experiment-diag` - Parent skill132- `/autoskillit:mermaid` - MUST BE LOADED before creating diagram133- `/autoskillit:exp-lens-validity-threats`134- `/autoskillit:exp-lens-measurement-validity`