Each participant applies the framework to one real workflow from their own job.
No theory. You leave with a risk-scored workflow, a governance scaffold, and a 30-day adoption tracker.
| Workflow | Friction | Feasibility | Risk Exposure | Gate? |
|---|---|---|---|---|
| Competitive intel synthesis | High | High | Low | Proceed |
| Invoice reconciliation | High | Med | Med | Proceed |
| Contract review & approval | High | Low | High | Block |
| Rubric: High Risk = Block. High Friction + High Feasibility + Low Risk = Proceed. Everything else = Flag for discussion. | ||||
# Example kill-switch logic (conceptual sketch — participants draft their own)
# Production requires: error handling, retry logic, circuit breakers, idempotency keys, dead-letter queues.
# WARNING: Log metadata only. Output content stays in-process. Define retention with your DPO.
IF claim_type == "financial" OR schema_validation == "failed" # schema_validation = JSON schema + business rule check
THEN route_to_human(owner=cs_lead, sla=4h, fallback=halt_workflow, max_queue=10)
LOG trace_id, prompt_version, reason, output_metadata, timestamp, session_token_hash, model_version
# Hashing is pseudonymization, not anonymization. DPO review required.
ALERT webhook_url=<your-alerts-endpoint> # Route to your org's alert system. Verify data residency and DPA before cloud-hosted channels.
# Prompt skeleton participants customize
# WARNING: Do not enter real company names into cloud LLM APIs unless covered by a no-training, no-retention DPA.
# For healthcare/pharma: a HIPAA Business Associate Agreement (BAA) is required in addition to a DPA.
# NOTE: Prompt instructions are not enforcement. Production requires parser validation (Pydantic, Zod, jsonschema) with retry loop.
SYSTEM: You are a [workflow] assistant for [company].
TASK: [Specific action with constraints]
OUTPUT: JSON with fields: summary, action(complete/escalate/refuse), escalation_reason, verification_status(verified/unverified/needs_review), flags[], sources[]
GUARDRAIL: If verification_status == "needs_review", set action="escalate" and fill escalation_reason. JSON schema enforced programmatically, not via prompt.
EXAMPLE: [One shot in / out pair]
I facilitate this workshop for operations leads, PMs, and leadership teams with direct workflow ownership. Every participant leaves with a scored workflow, a kill-switch protocol, and a 30-day adoption tracker. No theory. All action.
Workshop outputs are facilitation artifacts (scored workflows, governance sketches, adoption trackers). They are not legal, regulatory, compliance, or professional advice. Production deployment requires qualified legal, compliance, and engineering review. "Workshop model" refers to internal scoring during the session, not certification by any external auditor or regulator.