Skill 13 · Agentic UX Design Relationship Centric Interfaces
Subchapter 13.2
EXAMPLES.mdMarkdown15 KBView on GitHub
This document provides concrete examples of relationship-centric design in action.
European automotive aftermarket/service networks facing speed and cost pressure from China. Europe’s edge: trusted, service-centric relationships.
Memory-Aware Interface
Interface shows: "Yesterday you spent 20 min frustrated searching
for hydraulic pump inventory across 3 regions. Found pattern:
your Wednesday searches are 3× longer than other days.
Here are the parts you typically need on Wednesdays, pre-loaded."
Features:
- Emotional state indicators (frustration detection)
- Contextual suggestions timeline (weekly patterns)
- Dynamic preference evolution (learns search behavior)Trust Evolution Built-In
Agentic Goal Alignment System understands real goals:
System constructs custom paths:
New Metrics Dashboard Instead of vanity metrics, shows:
// Memory Architecture
interface UserRelationshipContext {
behavioralPatterns: {
searchFrustrationIndicators: {
timeSpent: number;
repeatedQueries: string[];
weekdayPattern: Map<string, number>;
};
decisionPatterns: {
priceThreshold: number; // evolves over time
preferredSuppliers: string[]; // learns from choices
urgencyIndicators: string[]; // context signals
};
};
trustLevel: {
stage: 'transparency' | 'selective' | 'autonomous';
delegationComfort: number; // 0-100
autonomousCategories: string[]; // what user trusts system to handle
lastTrustCheckpoint: Date;
};
ongoingGoals: {
primaryObjective: 'reduce_mttr' | 'optimize_costs' | 'improve_first_fix';
constraints: string[];
progressMetrics: {
baseline: number;
current: number;
trend: 'improving' | 'stable' | 'declining';
};
};
}
// Proactive Nudging Example
function generateContextualSuggestion(
context: UserRelationshipContext,
currentSituation: ServiceTicket
): Suggestion {
// System recognizes pattern: Wednesday + hydraulic issues
if (isWednesday() && currentSituation.involves('hydraulic')) {
const historicalPattern = context.behavioralPatterns
.searchFrustrationIndicators.weekdayPattern.get('Wednesday');
return {
message: "Based on 8 similar Wednesday cases, here's what you typically need...",
suggestions: preloadCommonParts(historicalPattern),
confidence: 0.87,
reasoning: context.trustLevel.stage === 'transparency'
? "Show full historical analysis"
: "Hide reasoning, show confidence only"
};
}
}Memory-Aware Interface
"Yesterday you spent 20 min frustrated searching for sci-fi.
Noticed you skipped 14 action-heavy titles but paused on
philosophical/cerebral ones. Found these new releases that
match your mood pattern: [Arrival, Solaris, Annihilation]"Trust Evolution
Relationship Metrics
Goal Continuity
System maintains awareness:
"Your Q2 goal: ship MVP by June 30.
Detected: 3 days behind schedule since design revisions.
Morning energy pattern: you do best creative work 8-10am.
Suggestion: block tomorrow 8-10am for design finalization (uninterrupted)."Collaborative Planning Pattern Human: “Need to add user authentication” System: “I see 3 approaches:
Based on your ‘ship by June 30’ goal and current 3-day delay, I suggest option 2 now, plan migration to option 1 in July. Your past decisions favored ‘working now > perfect later’ under time pressure.”
Adaptive Interface
Trust Evolution
Relationship Metrics
Memory Architecture
System tracks:
- User's stated risk tolerance: "Moderate" (from questionnaire)
- User's actual behavior: panics during 5% dips, holds through 20% gains
- Emotional patterns: checks portfolio 8× on red days, 1× on green days
- Decision patterns: sells near bottom, regrets later, wants "guardrails"
Real understanding: "Conservative during volatility, despite stated moderate tolerance"Trust Evolution Design
Phase 1: Transparency (Months 1-2)
Every suggestion shows:
"Recommending moving 15% to bonds because:
- Your portfolio checks increased 4× this week (stress indicator)
- Historical pattern: you make regrettable decisions when checking >5× daily
- This will reduce volatility by 18% while maintaining 73% of growth potential
- Based on your actual behavior pattern, not questionnaire answers"Phase 2: Selective Disclosure (Months 3-6)
Routine rebalancing: Quiet execution with simple notification
"Rebalanced portfolio (standard monthly maintenance)"
Significant decisions: Full explanation
"Suggesting defensive position. Market volatility elevated +
your stress indicators active. Details: [expand]"Phase 3: Autonomous Action (Month 7+)
System has earned trust to:
- Auto-rebalance within agreed parameters
- Execute "emotional guardrails" (prevent panic selling)
- Gradually shift allocation as goals approach (retirement, home purchase)
User retains control:
- Adjust autonomy level anytime
- Override any decision
- Explain any action on demandTrust Recovery Protocol When system makes mistake (e.g., missed opportunity during rally):
Relationship Metrics
Chronic condition management (diabetes, hypertension, etc.) requires ongoing relationship between patient and care system.
Memory-Aware Care
System learns:
- Patient's glucose spikes correlate with work stress (deadline weeks)
- Medication compliance drops on weekends (routine disruption)
- Patient's real goal: "Be active with grandkids" (not just "control A1C")
- Communication preference: morning texts, not evening emails
Contextual intervention:
"Noticed work deadline approaching (calendar sync).
Your glucose typically rises 15% during deadline weeks.
Proactive suggestion: pack healthy snacks for late nights,
glucose check before bed this week?"Trust Evolution in Healthcare
Transparency Phase (Critical for medical):
Selective Phase:
Autonomous Phase (Limited in healthcare):
Collaborative Care Planning Patient: “Want to reduce medication if possible” System: “I see your goal. Your data shows:
Your progress supports discussing medication reduction with Dr. Smith. I’ve flagged this for your next visit and prepared a summary of your improvements. Dr. Smith’s typical approach: 3-month trial of lifestyle-first, medication as backup.”
Relationship Metrics
All examples maintain:
All examples progress through:
With user control:
All examples track:
All examples feature:
Based on these examples, for your specific use case:
See CHECKLIST.md for detailed audit and design worksheets.