AI Synthetic User Simulation:用户仿真与场景实验室架构
Synthetic user simulation 不是把传统 persona 换成 AI 头像, 也不是让 LLM 随机扮演客户。它是一套用于产品发现、架构验证和上线证据管理的行为测试架构:
AI 合成用户仿真架构:Synthetic User Simulation / Persona Scenario Lab / Behavior Testbed
配对阅读:本篇的操作手册版(模板/RACI/门禁/runbook)是
docs/AI_SYNTHETIC_USER_SIMULATION_PERSONA_SCENARIO_LAB_PLAYBOOK.md。第一遍读本篇建立原理与架构判断;第二遍做案例时再用 playbook 查表落地,两者不需要重复精读。
Source Anchors
| Source | Link | 用法 |
|---|---|---|
| NIST AI Risk Management Framework | https://www.nist.gov/itl/ai-risk-management-framework | 用 Govern / Map / Measure / Manage 思路组织 synthetic lab 的风险识别、度量、处置和治理责任。 |
| NIST AI RMF Generative AI Profile | https://www.nist.gov/publications/artificial-intelligence-risk-management-framework-generative-artificial-intelligence | 用于 GenAI 特有风险, 如 hallucination、data leakage、misuse、over-reliance、content provenance 和 evaluation。 |
| ISO/IEC 42001 | https://www.iso.org/standard/81230.html | 用 AI management system 视角设计 owner、policy、operation、performance evaluation、continuous improvement。 |
| ISO/IEC/IEEE 29148 | https://www.iso.org/standard/72089.html | 用 requirements engineering 思路把 stakeholder need、scenario、assumption、validation criteria 结构化。 |
| ISO/IEC/IEEE 42010 | https://www.iso.org/standard/74393.html | 用 architecture description / viewpoint 思路连接 business, data, application, technology, risk and governance views。 |
| Microsoft Guidelines for Human-AI Interaction | https://www.microsoft.com/en-us/research/project/guidelines-for-human-ai-interaction/ | 用 human-AI interaction 原则设计 trust calibration、feedback、error recovery 和 user control。 |
| OWASP LLM Top 10 | https://owasp.org/www-project-top-10-for-large-language-model-applications/ | 用 LLM application risk taxonomy 注入 prompt injection、sensitive information disclosure、excessive agency 等 edge cases。 |
| OpenTelemetry docs | https://opentelemetry.io/docs/ | 用 traces、metrics、logs 的 observability 模型设计 simulation run evidence plane。 |
核心导读
Synthetic user simulation 不是把传统 persona 换成 AI 头像, 也不是让 LLM 随机扮演客户。它是一套用于产品发现、架构验证和上线证据管理的行为测试架构:
Synthetic user lab
= governed personas
+ calibrated scenarios
+ journey simulator
+ edge-case injection
+ evidence-based release gates
在金融零售 AI 场景中, 它的价值不是替代真实用户研究、生产 telemetry、模型验证或合规判断, 而是在真实证据不足、昂贵或敏感时, 提供一个可重复、可审查、可校准的探索环境。更准确的定位是: 用仿真挑战产品和架构假设, 暴露哪些路径必须加控制, 哪些证据还需要真实用户或生产运行来校准。
| 传统方法 | 局限 | Synthetic user lab 的补强 |
|---|---|---|
| 用户访谈 | 样本小, 难覆盖高风险边界 | 把访谈洞察转成 scenario card 和 assumption log, 批量模拟 |
| UAT | 测功能是否能用, 不一定测行为是否可信 | 模拟客户、员工、诈骗者、投诉人、合规审查员的交互路径 |
| A/B test | 对真实用户有影响, 不适合高风险早期探索 | 在上线前测试反事实路径和负面情境 |
| Red team | 偏安全攻击, 不一定覆盖业务流程 | 把业务边界、客户权益、运营控制和 AI 风险合并测试 |
| Eval benchmark | 关注模型答案, 常脱离工作流 | 测 journey、tool call、retrieval、human override、downstream outcome |
1. 问题定义
金融零售 AI 产品常常处在高风险、低频、强约束的决策环境中。授权推送支付诈骗、投诉升级、弱势客户误导、KYC 拒绝、催收不当话术、财富适当性建议等路径, 都不适合只靠线上试错或 happy-path UAT 来验证。
核心问题不是“能否模拟一个像真的用户”, 而是:
| 问题 | 为什么重要 |
|---|---|
| 哪些行为假设支撑产品决策 | AI 产品往往假设用户会理解告知、信任建议、按流程补材料或愿意升级人工 |
| 哪些长尾路径会放大客户伤害 | 高压诈骗、脆弱客户、跨渠道断点、员工过度采纳 AI 建议经常出现在尾部 |
| 哪些架构边界必须上线前验证 | tool permission、RAG source freshness、policy precedence、handoff state、approval scope |
| 仿真证据能支持什么、不能支持什么 | synthetic evidence 只能挑战假设和暴露风险, 不能伪装成真实世界证明 |
| 生产 telemetry 如何反向校准 lab | 上线后的投诉、QA、fraud outcome、drop-off 和 rework 必须回流更新 persona/scenario |
因此 synthetic lab 应被设计成 decision evidence system, 而不是 workshop demo。它必须记录假设、证据来源、不确定性、版本、运行结果、失败分析和上线门槛。
2. 架构模型
2.1 Concept Diagram
flowchart LR
A[Real evidence sources<br/>telemetry, complaints, call transcripts,<br/>fraud cases, QA reviews, journey analytics] --> B[Calibration Workbench]
C[Policy and control sources<br/>KYC, fraud, complaints, collections,<br/>wealth suitability, privacy, conduct risk] --> B
B --> D[Persona Registry<br/>role, context, constraints,<br/>behavior parameters, evidence links]
B --> E[Scenario Library<br/>journey stage, trigger, stakes,<br/>edge cases, expected controls]
D --> F[Journey Simulation Engine]
E --> F
G[Edge-case Injector<br/>stress, ambiguity, adversarial prompt,<br/>vulnerability, channel switching] --> F
F --> H[User / Agent Simulators<br/>customer, employee, scammer,<br/>reviewer, regulator, operations lead]
H --> I[System Under Test<br/>RAG, Agent, Copilot,<br/>workflow automation, decision support]
I --> J[Evidence Plane<br/>traces, prompts, retrieval, tool calls,<br/>human decisions, outputs, outcomes]
J --> K[Eval and Control Layer<br/>rubrics, metrics, policy checks,<br/>bias/privacy tests, release gates]
K --> L[Product Decision<br/>iterate, pilot, release,<br/>limit scope, stop]
K --> B
核心闭环:
Observed behavior
-> calibrated persona and scenario assumptions
-> simulated journeys
-> architecture and control test evidence
-> release decision
-> production telemetry
-> recalibration
2.2 Architecture Components
| Component | Responsibility | 关键约束 |
|---|---|---|
| Evidence intake layer | 收集 journey telemetry、contact center transcripts、complaints、fraud cases、KYC exceptions、QA findings | 不把敏感原文无限复制到 lab; 通过聚合、脱敏、抽象和保留策略控制使用 |
| Calibration workbench | 把真实证据映射到 behavior assumptions、frequency、path distribution 和 outcome linkage | 标注样本窗口、证据等级、偏差和不确定性 |
| Persona registry | 管理可版本化、可追溯、可约束的行为模型目录 | 聚焦行为和上下文, 避免用敏感属性或刻板标签建模 |
| Scenario library | 管理 journey stage、trigger、stakes、expected behavior、controls、variants 和 release gate | 像 test suite 一样管理 owner、版本、覆盖率和退役 |
| Journey simulation engine | 管理多轮交互、状态转换、分支路径和 multi-actor / multi-channel 行为 | 支持 deterministic replay, 记录 seed、版本和 state transition |
| Edge-case injector | 系统化注入 ambiguity、vulnerability、policy conflict、tool risk、retrieval mismatch、channel switching、adversarial behavior | 不只测试 prompt attack, 还要覆盖业务伤害 |
| System-under-test adapter | 接入 RAG、Agent、Copilot、workflow automation 和 decision support | 测完整产品架构, 不只测模型回答 |
| Evidence plane | 保存 run metadata、journey trace、retrieval evidence、tool evidence、control evidence、outcome evidence、evaluator evidence | 每次 run 可重放、可比较、可审查 |
| Eval and control layer | 执行 task rubric、policy rubric、safety rubric、business outcome proxy、bias/privacy/security checks | simulator、system under test、evaluator 需要分离, 避免自我确认 |
| Release decision layer | 将 run result、failure severity、trace completeness、calibration level 和 residual risk 转成上线建议 | 输出 iterate、limited pilot、release、limit scope 或 stop |
2.3 Persona Registry
Persona registry 不是 marketing persona, 而是行为模型目录。每个 persona 至少应包含:
| Field | Advanced meaning |
|---|---|
persona_id | 稳定 ID, 例如 kyc-newcomer-low-doc-confidence-v2 |
actor_type | customer, employee, scammer, reviewer, relationship manager, regulator |
domain_context | onboarding, fraud, collections, complaint, wealth, dispute |
behavior_parameters | patience, digital confidence, risk tolerance, language clarity, channel preference |
constraints | 法规边界、隐私限制、不能使用的敏感属性、不可推断项 |
evidence_links | 支撑该 persona 的 telemetry segment、case sample、research insight |
uncertainty_level | high / medium / low, 决定是否能用于 release gate |
owner | accountable owner for review and retirement |
review_cadence | monthly for pilot, quarterly for stable product |
金融零售更适合用任务能力、渠道熟悉度、金融脆弱性信号、文档可得性、语言理解难度、风险暴露和服务需求建模, 而不是用年龄、族裔、性别等属性当作方便标签。
Poor:
"年轻用户喜欢快"
"老人不懂科技"
"高净值客户需要高级服务"
Strong:
"首次开户客户, 文档准备不足, 对 KYC 拒绝原因理解弱, 在 mobile app 和 contact center 之间切换, 已出现一次上传失败。证据来自 onboarding drop-off telemetry、call reason code 和 QA sample。"
2.4 Scenario Library
Scenario 是产品和架构验证的基本单位。
| Field | Example |
|---|---|
scenario_id | fraud-app-scam-warning-bypass-001 |
journey_stage | payment initiation, warning, confirmation, dispute |
trigger | customer tries to send first-time high-value instant payment |
stakes | financial loss, complaint, regulatory scrutiny |
expected_system_behavior | detect risk signal, show tailored warning, offer pause/escalation |
expected_human_behavior | customer may minimize warning due to social-engineering pressure |
control_points | scam typology check, confirmation friction, cooling-off option, trace evidence |
simulation_variants | urgency, trusted payee narrative, remote access app mention, vulnerability signal |
evidence_basis | recent scam complaint sample, fraud typology, payment telemetry |
release_gate_link | fraud warning effectiveness gate |
Scenario library 应覆盖 happy path、edge path、control failure、channel switching、adversarial behavior 和 rare-but-severe path。它不是一次 workshop 产物, 而是随生产证据持续校准的架构资产。
2.5 Journey Simulation Engine
Journey simulation engine 管理多轮交互、状态转换和分支路径:
initial state
-> user intent
-> AI response
-> user interpretation
-> action or hesitation
-> system control
-> escalation / completion / abandonment
-> outcome and evidence
高级能力包括:
- Multi-actor: 客户、前线员工、后台 analyst、欺诈者、投诉处理员、合规 reviewer。
- Multi-channel: mobile app、web、branch、contact center、secure message、email follow-up。
- Stateful journey: 保留已看过的告知、上传过的文件、被拒绝原因、过往投诉和人工交接状态。
- Control injection: 人工审批、二次验证、冷静期、policy check、tool permission boundary。
- Deterministic replay: 同一个 scenario、persona、model version、prompt version 和 seed 可重跑。
2.6 Evidence Plane
每次 simulation run 都要生成可审查证据。与 OpenTelemetry 思路对齐时, 每个 run 可以作为 root trace; persona action、retrieval、model call、tool call、human approval、policy decision 和 output delivery 是 child spans。
| Evidence object | Minimum fields |
|---|---|
| run metadata | run_id, scenario_id, persona_id, seed, model_id, prompt_version, policy_pack_version |
| journey trace | step_id, actor, channel, input summary, system action, state transition |
| retrieval evidence | query, source_id, source_version, score, citation used |
| tool evidence | tool_name, permission scope, arguments hash, approval decision, result summary |
| control evidence | policy check, refusal, escalation, human review, override, reason |
| outcome evidence | completion, abandonment, complaint risk, loss proxy, rework, cycle time |
| evaluator evidence | rubric score, failure label, severity, reviewer, calibration status |
3. 关键机制与生命周期
3.1 Scenario Governance Lifecycle
Propose scenario
-> map to product decision or architecture risk
-> attach evidence basis
-> classify risk tier
-> approve for lab use
-> run simulations
-> review failures and assumptions
-> update product / architecture / controls
-> promote to release gate or retire
| Stage | Decision question | Required evidence |
|---|---|---|
| Intake | 这个 scenario 支持哪个产品或架构决策 | decision memo link, journey map |
| Risk classification | 是否涉及客户伤害、监管义务、自动化动作或敏感数据 | risk tier rationale |
| Calibration | 行为假设是否有真实证据支撑 | telemetry, sample cases, interviews |
| Simulation approval | 这个 scenario 是否可用于 gate | persona confidence, data controls |
| Release gate | 当前系统能否在该边界内上线 | run results, failure analysis, residual risk |
| Recalibration | 生产 telemetry 是否改变假设 | drift report, complaint/fraud/QA linkage |
3.2 Calibration Against Real Behavior
Synthetic simulation 的最大风险是制造看似精确的假证据。因此 calibration 必须是架构能力, 不是分析师手工备注。
| Input | Calibration target |
|---|---|
| Funnel telemetry | 各 journey stage 的 drop-off、retry、abandonment |
| Call reason codes | 用户困惑点、升级原因、重复联系 |
| Complaint taxonomy | 客户伤害类型、解释失败、处理时长问题 |
| Fraud outcomes | scam typology、warning bypass、loss and recovery pattern |
| QA samples | 员工处理差异、policy adherence、case note quality |
| A/B or pilot results | AI intervention 对行为和结果的真实影响 |
| Subject matter expert review | 极低频高影响路径的业务合理性校验 |
| Level | Meaning | Allowed use |
|---|---|---|
| L0 - exploratory hypothesis | 业务或专家提出的假设, 尚无真实证据 | discovery brainstorming, not release gate |
| L1 - qualitative support | 有访谈、case review、投诉样本支撑 | scenario design, early prototype evaluation |
| L2 - telemetry support | 有行为数据支撑频率、路径、drop-off 或重复联系 | architecture validation and pilot gate |
| L3 - outcome-linked support | 与损失、投诉、QA defect、conversion、cycle time 等结果关联 | release gate and scale/stop decision |
| L4 - production recalibrated | 上线后持续回流, 可监控 drift | continuous governance and model/product tuning |
每个 persona 和 scenario 都要记录: 被模拟的行为假设、证据来源、样本时间窗口、哪些属性被合成或抽象、哪些不能用于敏感推断、与真实 telemetry 的差异以及差异是否改变 release decision。
| Assumption | Calibration evidence | Decision impact |
|---|---|---|
| 高压力 scam 场景下, 客户会忽略通用警告 | 过去 90 天 APP scam complaint sample 中, 多数客户表示看过但未理解警告 | 支付 warning 需要 scenario-specific pause, 不能只依赖通用 banner |
| KYC 文件上传失败后, 客户会重复上传同一错误文件 | Onboarding telemetry 显示失败后 24 小时内重复上传率高 | RAG assistant 必须解释具体缺口, 并提供 channel handoff |
| Contact center agent 会过度采纳 AI generated complaint summary | Pilot QA sample 显示低复杂度 case 中 edit rate 低 | 高风险 complaint 需要 mandatory review and citation check |
3.3 Separation of Simulator, System and Evaluator
Synthetic lab 最容易失真的是 LLM self-confirmation: 同一个模型生成用户、回答用户、评价结果。成熟架构要把三者分开:
| Boundary | 目的 |
|---|---|
| Simulator | 生成受约束的 persona behavior 和 journey action, 不知道 system under test 的内部 prompt 或答案目标 |
| System under test | 运行真实或接近真实的 RAG、Agent、Copilot、workflow automation 和 tool permissions |
| Evaluator | 用独立 rubric、policy checks、trace evidence 和人工 review 对结果打标 |
对高风险 scenario, evaluator 不应只看最终对话, 而要检查 retrieval source、tool-call scope、approval record、state transition、refusal/escalation、human edit 和 outcome proxy。
3.4 Release Evidence Packet
Release gate 不看 demo, 看 evidence packet。
| Section | Contents |
|---|---|
| Decision scope | use case, journey boundary, model/version, release scope |
| Scenario coverage | scenario list, risk tier, persona confidence, excluded paths |
| Run results | pass/fail, severity, representative traces, reproducibility metadata |
| Failure analysis | root cause, architecture implication, product implication, control implication |
| Calibration | telemetry comparison, SME review, uncertainty level |
| Bias/privacy/security | controls, test results, residual risks |
| Release recommendation | proceed, limited pilot, redesign, or stop |
| Monitoring plan | production telemetry that will recalibrate lab assumptions |
可执行的决策原则:
Use synthetic simulation to challenge product and architecture assumptions before release.
Label simulation evidence by calibration level so it cannot masquerade as real-world proof.
Preserve negative runs because failures are risk evidence, not prompt-cleaning noise.
4. 证据与控制
4.1 Metrics Hierarchy
| Layer | Metric | Interpretation |
|---|---|---|
| Scenario coverage | critical journey coverage, high-risk path coverage, persona confidence distribution | 是否覆盖真正影响上线风险的路径 |
| Behavioral plausibility | telemetry fit, SME plausibility score, replay consistency | synthetic users 是否与真实行为足够接近 |
| Product quality | completion, comprehension proxy, drop-off reduction, rework proxy | 产品假设是否改善 journey |
| AI quality | groundedness, instruction following, refusal quality, citation support, tool-call correctness | AI 能力是否达标 |
| Control quality | escalation precision, override capture, human approval completeness, policy boundary hits | 控制是否有效且可证明 |
| Risk outcomes | complaint risk, fraud loss proxy, unsuitable recommendation block rate, unfair treatment signal | 是否降低或避免客户/业务伤害 |
| Evidence quality | trace completeness, reproducibility, version capture, reviewer agreement | release decision 是否可审计 |
4.2 Control Model
| Risk | Control | Evidence |
|---|---|---|
| Synthetic persona encodes stereotypes | sensitive attribute exclusion, bias review, persona evidence link | persona registry review record |
| Scenario library overfits known cases | edge-case injection and periodic refresh | scenario coverage dashboard |
| AI output not grounded | approved source retrieval, citation requirement, unsupported claim detector | RAG trace and evaluator score |
| Agent oversteps authority | tool allowlist, scoped permissions, human approval | tool-call trace and RBAC test |
| Simulation leaks sensitive data | redaction, synthetic reconstruction, retention policy | data handling attestation |
| False confidence from synthetic tests | calibration level labeling, real telemetry comparison | calibration report and residual risk |
| Release gate becomes theater | decision-linked metrics and failure severity threshold | release evidence packet |
4.3 Architecture Mapping
| Architecture area | Synthetic lab contribution | Evidence produced |
|---|---|---|
| RAG | 测试不同 persona 在模糊问题下是否触发正确 query、source filter、policy precedence 和 citation | query trace, retrieved source version, unsupported claim rate |
| Agent | 测试多步 journey 中 tool scope、approval、rollback、exception handling 和 state memory | tool-call trace, approval record, state transition log |
| Copilot | 测试员工如何接受、编辑、拒绝或误用 AI 建议 | accept/edit/reject telemetry, QA defect linkage, over-reliance signal |
| Eval | 把 single-turn answer eval 扩展成 journey eval、control eval、outcome proxy eval | rubric score, scenario severity, evaluator agreement |
| Governance | 把 AI RMF / ISO 42001 / model risk 语言转成 scenario gate、evidence packet 和 owner cadence | release decision memo, residual risk, monitoring plan |
| Privacy | 验证数据最小化、synthetic reconstruction、masking、retention 和 access boundaries | data handling record, privacy review result |
| Security | 注入 prompt injection、tool misuse、data exfiltration 和 adversarial user behavior | attack trace, blocked action, incident exercise output |
| Product discovery | 在真实实验前发现用户理解、信任、摩擦、控制和 channel handoff 问题 | assumption log, product backlog, design rationale |
| Architecture review | 证明系统边界、权限、observability、fallback 和 human control 可运行 | C4/sequence linkage, trace completeness, gate sign-off |
5. 金融零售场景
5.1 Scenario Portfolio
| Domain | Advanced scenario | What the lab validates |
|---|---|---|
| Onboarding / KYC | 客户地址证明被拒, 多次上传失败, 转 contact center 要求“马上开户” | RAG 是否引用正确 KYC policy; Copilot 是否解释拒绝原因; handoff 是否保留状态 |
| Fraud / scams | 客户在诈骗者电话指导下发起大额实时支付, 试图绕过警告 | Agent 是否识别 typology; warning 是否情境化; 是否触发冷静期和人工升级 |
| Collections | 逾期客户表达财务困难和情绪压力, 请求延期, 同时威胁投诉 | Copilot 是否避免不当催收话术; 是否识别 hardship; 是否提供合规方案 |
| Complaints | 客户投诉贷款费用解释不清, 已多渠道联系, 要求监管升级 | Summary 是否忠实; root cause 是否可追溯; SLA 和 escalation 是否正确 |
| Contact center | 新员工处理复杂 dispute, AI 建议下一步和话术 | Copilot 是否提升处理质量, 还是增加 over-reliance 和错误 case note |
| Wealth suitability | 客户要求高收益产品, 风险承受能力问卷显示保守 | AI 是否阻止不适当推荐; 是否生成 suitability rationale and escalation |
| Payment disputes | 客户否认交易, 但 merchant evidence 部分匹配, 时间接近 travel alert | Agent 是否区分 fraud claim、merchant dispute、friendly fraud; 是否保留证据链 |
| Small business banking | 企业客户 cashflow 紧张, 同时申请贷款和延迟还款 | Journey simulator 是否暴露 cross-product risk and service conflict |
5.2 Authorized Push Payment Scam Lab
Persona:
app-first retail customer, high urgency, moderate digital confidence,
under social engineering pressure, reluctant to disclose phone call context.
Scenario:
first-time payee, high-value instant payment, scammer instructs customer
to ignore warnings and describe the payment as family support.
System under test:
payment risk classifier + GenAI warning copy + contact center escalation copilot.
Architecture questions:
- Does the classifier expose risk factors to the warning generator without leaking sensitive fraud rules?
- Does the warning generator produce specific, plain-language friction?
- Can the agent pause payment or only recommend escalation?
- Is the final action traceable for complaint and reimbursement review?
Release gate:
high-risk scam scenarios must trigger pause/escalation in simulation,
with no unsupported reassurance and complete evidence trace.
5.3 KYC Onboarding Scenario Lab
Persona:
new-to-bank customer, address proof mismatch, limited understanding of KYC documents,
switches from mobile app to call center after two failed uploads.
Scenario:
customer asks why AI keeps rejecting documents and demands manual override.
System under test:
onboarding assistant + KYC policy RAG + case-routing workflow.
Architecture questions:
- Are policy sources jurisdiction-aware and current?
- Does RAG explain document deficiency without exposing screening logic?
- Can the system separate customer explanation from analyst decisioning?
- Is the rejection rationale stored for audit and complaint response?
Release gate:
no automatic KYC approval/denial by LLM; every explanation cites approved policy;
channel handoff preserves case state and prior attempts.
6. 反模式
| Anti-pattern | What it looks like | Why it fails | Better pattern |
|---|---|---|---|
| Persona theater | 彩色 persona 卡片很多, 但没有 evidence links 或 decision use | 不能支撑架构和上线决策 | persona registry with owner, evidence, uncertainty, controls |
| Synthetic data laundering | 把真实敏感案例改写后宣称“合成数据无风险” | 仍可能泄露可识别信息或敏感推断 | redaction, abstraction, privacy review, retention boundary |
| LLM self-confirmation | 用同一个模型生成用户、回答用户、评价结果 | 产生循环偏差和虚假一致性 | separate simulator, system under test, evaluator, human review |
| Happy-path simulation | 只模拟愿意配合、理解力强、没有压力的用户 | 无法发现金融零售的高风险边界 | edge-case injection and high-severity scenario portfolio |
| Average-user bias | 只看平均分, 忽略弱势客户、欺诈压力、投诉升级 | 客户伤害通常在尾部发生 | segment-specific metrics and severity weighting |
| Release gate by demo | 用几段漂亮对话证明可以上线 | 无法复现、无法审计、无法衡量控制 | reproducible runs, trace evidence, pass/fail thresholds |
| Uncalibrated behavior | synthetic users 按 prompt 想象行动 | 产品决策建立在幻觉行为上 | calibration levels and telemetry fit checks |
| Over-automation drift | lab 起初测试 Copilot, 后来业务把它当自动决策 | 权限和责任边界失效 | architecture guardrails and change-control trigger |
| Ignoring human adaptation | 假设员工会按设计使用 AI | 真实用户会绕用、过度采纳、复制粘贴或忽略 | simulate human response and capture accept/edit/reject patterns |
| No negative evidence | 失败 run 被当作 prompt bug 删除 | 失去风险学习机会 | preserve failures in evidence plane and backlog |
7. 最终心智模型
Synthetic user simulation 的成熟用法可以压缩成五条判断:
Synthetic users are not customers.
Simulation is not proof of market success.
Persona without evidence link is theater.
Scenario without release decision is workshop artifact.
Failure traces are product and architecture evidence.
高级 AI 产品与架构实践的关键不是让 LLM 更会“扮演用户”, 而是把 persona、scenario、journey、edge case、eval、trace、control 和 production recalibration 设计成一个闭环。这个闭环的作用是持续挑战团队自己的假设: 哪些行为是被证据校准的, 哪些只是专家猜测; 哪些路径可以进入 pilot, 哪些必须限流、加人工或停止; 哪些风险已经被控制, 哪些只是被漂亮 demo 遮住。
SOTA 状态标注 (2026-07-01)
本篇属于第二、三遍深读池(参考架构/深读笔记),未列入 12 周主线必读。时效基线为写作时点;引用前请按 CLAUDE.md 全局时效性硬规则复查最新进展。模块级 SOTA 对照见 docs/AI_SYSTEMATIC_LEARNING_ROADMAP_2026.md 各周「2026 SOTA 对照」行与文末「SOTA 检查」。