Resource Lab Pattern
Risk Lens Selector
A reusable interaction pattern that helps learners examine the same decision through different risk lenses, including customer impact, safety, trust, operational friction, and compliance.
Why this pattern exists
Real decisions rarely have one clean answer.
In many workplace scenarios, the best decision depends on what risk you are paying attention to. A choice may feel fast, but create trust issues. It may reduce friction, but increase compliance risk. It may technically solve the problem, but leave the customer confused.
This pattern helps learners pause and inspect a situation from multiple angles before deciding what to do next.
Builds judgment
Learners compare the same scenario across multiple consequences instead of chasing a single “correct” answer.
Supports better coaching
Feedback becomes less about grading and more about helping learners see what they may have missed.
Works for messy work
Useful when decisions involve tradeoffs, unclear information, policy nuance, or operational pressure.
Live preview
Try the interaction.
Select a lens to see how the same situation changes depending on what kind of risk the learner is asked to consider.
Scenario
A learner is reviewing a delivery issue.
A customer says their package was marked delivered, but they cannot find it. The delivery record shows the package was left at the correct address. The learner needs to decide what to check before responding.
Customer Impact Lens
The learner should think beyond whether the delivery scan was technically correct.
From the customer’s perspective, “marked delivered” does not solve the problem if they still cannot find the package. This lens encourages the learner to check for helpful context, such as delivery notes, photo evidence, safe location details, or nearby delivery confusion before responding.
Best for
Use this when learners need to weigh consequences.
Scenario-based learning
Help learners examine realistic decisions from more than one angle.
Compliance judgment
Move beyond memorizing policies and toward applying them in real situations.
Customer support
Show how tone, context, trust, and follow-through affect the customer experience.
Operational troubleshooting
Help learners notice friction points before they create downstream problems.
Starter code
Copy, customize, and reuse.
Use this lightweight version inside a web page, hosted interaction, internal resource hub, or as a prototype for a Rise or Storyline companion activity.
<div class="risk-lens-selector">
<h3>Risk Lens Selector</h3>
<p>Choose a lens to examine the same decision from a different angle.</p>
<div class="risk-buttons">
<button data-lens="customer">Customer Impact</button>
<button data-lens="safety">Safety</button>
<button data-lens="trust">Trust</button>
</div>
<div class="risk-feedback" id="riskFeedback">
Select a lens to view coaching feedback.
</div>
</div>
<script>
const feedback = {
customer: "How does this decision affect the person on the receiving end?",
safety: "What could go wrong if this decision is rushed or incomplete?",
trust: "What would make this response feel clear, fair, and credible?"
};
document.querySelectorAll("[data-lens]").forEach(button => {
button.addEventListener("click", () => {
const lens = button.dataset.lens;
document.getElementById("riskFeedback").textContent = feedback[lens];
});
});
</script>
Customize it
Adapt the lenses to your content.
Use role-based lenses
Let learners view the same moment as a manager, customer, frontline worker, compliance partner, or support specialist.
Use decision-quality lenses
Compare speed, clarity, risk, confidence, customer impact, and effort.
Use coaching questions
Replace long feedback with one powerful question that redirects learner thinking.
Resource Lab
Build learning moments that help people think better.
Risk Lens Selector is one of several reusable interaction patterns designed to make workplace learning more practical, reflective, and performance-focused.
Back to Resource Lab