行业实践

Launch, Operate, and Handoff

核心结论:本文出自 davidahmann/fde-guide 项目在 DeepWiki 上的发布,系统阐述 Forward Deployed Engineering (FDE) 交付循环的终结阶段「Launch, Operate, and Handoff」。该阶段将已验证构建过渡为生产服务,核心围绕五个非线性的生产发布门禁(Gate 0: Design 至 Gate 4: Bounded)展开,门禁映射到 solution-release.release_status 状态,任何活跃门禁均可触发暂停或回滚。进入影子或金丝雀发布前,FDE 必须完成 Production Service Readiness (PSR) 包,采用 designed→tested→operational 的证据词汇严格衡量身份认证、持久状态、异步工作、遥测和失败回滚等维度的成熟度。客户交接以操作能力转移而非文档交付为标准,接收方须演示 Harness Changes、Evaluation、Incident Response 和 Reconciliation 四项能力。上线后进入分层运营节奏:连续关注安全可用,每日处理事件与 SLO,每周分析行为回归,每月基于实现价值 vs. 成本决定扩展或退役。生产学习环通过分类、夹具创建、门禁修复和移交 Field Learning Register,将现场经验闭环回工程,并定义客户配置、客户自有扩展、产品/平台能力和限时实验四类重用权限,确保知识产权与保密合规。

核心要点
  1. Launch, Operate, and Handoff 是 FDE 交付循环的最终阶段,将已验证构建转变为生产服务,包含发布门禁、PSR、交接和持续审查。
  2. 发布流程采用非线性门禁模型,从 Design、Sandbox、Shadow、Canary 到 Bounded,任何活跃门禁都可触发暂停或回滚,且与 solution-release.release_status 绑定。
  3. 在进入 Shadow 或 Canary 之前必须完成 Production Service Readiness 包,使用 designed→tested→operational 等严格词汇衡量成熟度,且仅凭模型输出不能超越 designed。
  4. 客户交接以操作能力转移为唯一验收标准,接收方须演示安全变更、评估、事件响应和外部效果修正四项能力。
  5. 上线后运营遵循持续、每日、每周、每月的分层节奏,分别聚焦安全可用、事件管理、行为分析和价值采纳。
  6. 生产学习环通过分类、夹具创建、门禁修复和移交到 Field Learning Register,将生产信号闭环回工程,决定修复是否为可复用模式或平台变更。
  7. 现场学习成果必须清理重用权限,分为客户配置、客户自有扩展、产品/平台能力和限时实验四类,确保知识产权与保密约束。
FDE 交付循环的最后一环向来是成败的关键,这份指南直击「启动-运营-交接」的工程化核心。它没有空谈最佳实践,而是提供了从沙箱到全量发布的逐级门禁、可量化的生产就绪评估词汇,以及以操作能力转移为唯一验收标准的客户交接矩阵。对于任何试图在复杂环境中交付 AI/Agent 系统的团队,这套严谨的治理框架和持续学习闭环都值得一字一句地拆解复用。

Launch, Operate, and Handoff 是 FDE 交付循环的最终阶段,将已验证构建转变为生产服务,包含发布门禁、PSR、交接和持续审查。

—— 络石智能编辑部 · 编辑推荐

Launch, Operate, and Handoff

Last indexed: 16 August 2026 (7d1d11)

Launch, Operate, and Handoff Copy link to header

This stage represents the culmination of the Forward Deployed Engineering (FDE) delivery loop, transitioning a system from a verified build into a production service. It encompasses rigorous release gating, the formal transfer of operational capability to the customer, continuous service review, and the extraction of reusable patterns into the field-learning register.

Production Release Gates Copy link to header

The release process follows a non-linear progression where any active gate can trigger a pause or rollback. For agentic systems, these gates are mapped to specific solution-release.release_status values and artifact bindings operations/release-gates.md 5-23

Gate Progression Model Copy link to header

Gate Requirements and Controls Copy link to header

| Gate | Primary Focus | Key Artifacts / Pass Conditions | Core Controls | | --- | --- | --- | --- | | 0: Design | Integrity | Workflow Charter, Data Readiness, System Design, Tool Contracts | ARC-001, CTX-001, TOL-001 | | 1: Sandbox | Safety | 100% Contract Test pass, Deny-by-default Auth, Egress rules | SEC-001, REL-001, EVA-002 | | 2: Shadow | Performance | Accepted outcome threshold met, 0 prohibited effects | VAL-001, OPS-001, EVA-001 | | 3: Canary | Reliability | Tested Kill Switch, Staged Writes, On-call owner named | REL-004, OPS-002, SEC-006 | | 4: Bounded | Expansion | Multi-tenant isolation, specific risk slice validation | IAM-002, CST-002, REL-005 |

Sources: operations/release-gates.md 5-115

Production Service Readiness (PSR) Copy link to header

Before advancing to shadow or canary gates, an FDE must complete a Production Service Readiness packet. This record assembles target-specific evidence against the Guide's controls templates/production-service-readiness.md 1-5

PSR Evidence Vocabulary Copy link to header

The PSR uses a strict vocabulary to describe maturity. Crucially, generated output or model judgment alone cannot advance a row beyond designed templates/production-service-readiness.md 23-32

  • required: Dimension applies, but evidence is missing.
  • designed: Bounded design exists, but behavior not exercised.
  • tested: Executable target-system evidence exists for representative/negative cases.
  • operational: Production telemetry proves control is owned, monitored, and recoverable.

PSR System Mapping Copy link to header

The PSR ensures that high-level operational requirements are mapped to specific engineering entities and controls.

| PSR Dimension | Code/System Entity | Cited Controls | | --- | --- | --- | | Identity & Auth | Tenant binding, Scopes, Policy revision | IAM-001, SEC-005 | | Durable State | Source of truth, Retention, Recovery point | STA-001, OPS-005 | | Async Work | Queues, Idempotency keys, Retries | REL-001, REL-004 | | Telemetry | Trace identity, Effect receipts, SLOs | OPS-001, OPS-006 | | Failure/Rollback | Kill switch, Safe fallback, Readback | DEL-002, CTX-009 |

Sources: templates/production-service-readiness.md 38-90 tests/production-service-readiness.test.mjs 10-50

Customer Enablement and Handoff Copy link to header

Handoff is defined by the transfer of operating capability, not the delivery of documentation. The process is complete only when the receiving team demonstrates they can operate, change, and recover the system independently templates/customer-enablement-handoff.md 1-4

Handoff Capability Matrix Copy link to header

The receiving team must demonstrate proficiency in the following areas:

  1. Harness Changes: Safely versioning a behavior component and running affected-route tests templates/customer-enablement-handoff.md 38
  2. Evaluation: Authoring and running a new evaluation case with valid fixtures and graders templates/customer-enablement-handoff.md 37
  3. Incident Response: Executing a "Game Day" from detection to containment using the kill switch templates/customer-enablement-handoff.md 42
  4. Reconciliation: Identifying and correcting external effects via source-of-truth comparison templates/customer-enablement-handoff.md 43

Handoff Data Flow and Ownership Copy link to header

Sources: templates/customer-enablement-handoff.md 5-62 research/2026-08-10--fde-product-boundaries-and-capability-transfer.md 47-50

Continuous Operations and Review Copy link to header

Post-launch, the system enters a layered operating cadence. Governance is treated as a recurring set of decision rights rather than a one-time checklist playbooks/03-operate-and-scale.md 20-30

Operating Cadence Copy link to header

| Cadence | Focus | Key Decisions | | --- | --- | --- | | Continuous | Safety & Availability | Contain, degrade, or continue based on prohibited effects/denials. | | Daily | Incident Management | Reconcile effect-unknown runs; SLO burn management. | | Weekly | Behavior Analysis | Fix regressions; add replay fixtures for behavior clusters. | | Monthly | Value & Adoption | Expand, constrain, or retire based on realized value vs. cost. |

Production Learning Loop Copy link to header

FDEs use production signals to close the loop back to engineering:

  1. Triage: Identify the first divergent state or violated invariant playbooks/03-operate-and-scale.md 83-85
  2. Fixture Creation: Generate a sanitized replay fixture for the failure playbooks/03-operate-and-scale.md 87
  3. Gated Fix: Apply candidate fix on an isolated branch and verify against the regression suite playbooks/03-operate-and-scale.md 88-89
  4. Handoff to Product: Record the learning in the Field Learning Register to determine if the fix should be a reusable pattern or a platform change playbooks/03-operate-and-scale.md 92

Sources: playbooks/03-operate-and-scale.md 20-97 templates/production-service-review.md 1-116

Field Learning and Reuse Rights Copy link to header

  1. Customer Configuration: Target-specific settings.
  2. Target-Owned Extension: Code in the customer's normal repository.
  3. Product/Platform Capability: Shared features owned by product engineering.
  4. Time-Bounded Experiment: Assets with a mandatory destruction date.

Before field work is productized, FDEs must clear reuse rights, ensuring that intellectual property and confidentiality constraints are respected research/2026-08-10--fde-product-boundaries-and-capability-transfer.md 51-54

标签

相关主题

专家点评

本文由编辑团队收录整理,内容来源于公开信息,仅供参考。

常见问题

FDE 指南中的 Production Service Readiness (PSR) 如何工作?
PSR 是一套生产服务就绪评估包,必须在进入影子或金丝雀发布前由 FDE 完成。它使用严格的词汇描述控制成熟度:designed 表示设计存在但未演练,tested 表示存在可执行目标系统证据,operational 表示生产遥测证明控制已被接管、监控和可恢复。仅凭生成输出或模型判断不能将任何行推进到 tested 以上。PSR 覆盖身份与认证、持久状态、异步工作、遥测和失败回滚等维度,并映射到具体系统实体和控制项。
FDE 客户交接的真正验收标准是什么?
交接完成的标准是接收团队独立操作、变更和恢复系统的能力,而非文档交付。他们必须演示四项能力:安全地对行为组件进行版本化并运行受影响路由测试;编写并运行带有有效夹具和评分器的新评估案例;执行从检测到使用终止开关进行遏制的“游戏日”事件响应流程;通过与真实源对比识别并纠正外部效果。
FDE 的生产发布门禁包含哪些阶段?
FDE 指南定义了五个发布门禁:Gate 0 Design 关注完整性,需要工作流章程、数据就绪和系统设计;Gate 1 Sandbox 要求 100% 合约测试通过、默认拒绝认证和出口规则;Gate 2 Shadow 需要达到可接受的结果阈值且零违禁效果;Gate 3 Canary 强制测试终止开关、阶段写入并指派值班负责人;Gate 4 Bounded 验证多租户隔离和特定风险切片。所有门禁均为非线性,任何活跃门禁均可触发暂停或回滚。

相关文章

让 AI 在真正发生工作的地方发挥作用

文章《Making AI Work Where the Work Happens》由 alliant 公司 AI 服务与前线部署工程高级总监 Kris Low 撰写,系统阐述了 Forward Deployed Engineering 在 AI 落地中的核心价值与最新行业动态。文章指出,AI 创造价值的唯一前提是改变真实工作方式,而 FDE 模式正是将业务理解与工程技术融合到同一角色中。FDE 不是坐等需求文档的软件开发人员,也不是给出建议就撤场的顾问,而是直接嵌入客户团队、深度理解业务流程、识别痛点并现场构建和迭代可用系统的综合型人才。文章披露了一组关键市场信号:Forward Deployed Engineer 职位在 Indeed 上的发布量从 2025 年 4 月的 643 飙升至 2026 年 4 月的 5,330,年增长率达 729%。更重大的产业动作包括:2026 年 5 月 OpenAI 成立 OpenAI Deployment Company,首轮投入超 40 亿美元并计划收购拥有约 150 名 FDE 的咨询公司 Tomoro;同月 Anthropic 联合 Blackstone、Hellman & Friedman、Goldman Sachs 等机构成立专门帮中型企业部署 Claude 的 AI 服务公司;微软投入 25 亿美元配置 6000 名专家;AWS 启动 10 亿美元 FDE 计划。这些信号表明,获取强大模型已不再是制约 AI 价值的瓶颈,真正的瓶颈在于如何将这些能力嵌入真实业务系统的“最后三公里”——即部署与适配。文章特别指出,中端市场反而因组织层级少、决策快而处于有利位置,正适合通过外部 FDE 合作伙伴来补齐工程能力缺口。最后,文章预见 FDE 的崛起预示着商业与技术岗位边界正在消融的未来工作趋势。

阅读全文

介绍面向合作伙伴的前沿部署工程:赢得企业AI的未来

AWS 宣布推出 Forward Deployed Engineering(FDE)组织,并配套启动 Partner-Led Forward Deployed Engineering 运动,旨在将数千名工程师直接嵌入客户和合作伙伴环境,共同开发和部署生产级智能体 AI 解决方案。该计划背后有 10 亿美元投资支持。AWS 观察到企业 AI 需求已从咨询路线图转向实际生产交付,客户要求能在数周内在真实数据、真实治理下部署可运行的智能体系统。Partner-Led FDE 运动不同于认证或培训项目,而是将 FDE 方法论和交付标准嵌入战略咨询合作伙伴内部,形成持久的交付能力。文章提出了 Agentic Process Transformation(APT)倡议作为思维模型,强调从业务流程出发重构智能体化方案。每个 FDE 项目都会构建可复用的交付工具链(harness),包括领域本体、评估框架、MCP 服务器、智能体操作工具和上下文图谱,这些知识产权归合作伙伴所有,形成累积优势。合作伙伴需组建经 AWS 认证的工程团队,通过 AWS 定义的生产工程标准后才能参与客户项目。初期 AWS 工程师会深度嵌入合作伙伴团队,后续逐步转向帮助合作伙伴规模化 FDE 实践。该运动目前仅对有限合作伙伴开放,后续将扩展至更广泛的合作伙伴网络。

阅读全文

Agent 系统架构

本文出自 davidahmann 创建的 fde-guide 项目,专门为前线部署工程师(FDE)提供 Agent 系统架构指南。核心主张是将 Agent 视为运营软件中的组件,而非系统本身,通过显式边界和持久化状态来构建可控的系统。架构按 Harness、Loop、Graph 三层组织:Harness 层负责模型运行的安全上下文、工具、权限和沙箱;Loop 层管理目标、证据、反馈和重试等改进闭环;Graph 层定义节点、路由、审批和恢复等工作流逻辑。智能选择遵循“最小充分机制”原则,只在非结构化解释能带来可量化价值时才调用基础模型,否则优先使用确定性代码或经典 ML。指南还提供了 11 种参考蓝图,例如用于证据路径多变的 Bounded Retrieval Agent、需要策略约束与回滚的 Transactional Write Agent、以及处理多专业上下文的 Multi-Agent Coordinator 等。安全方面采用神经符号护栏,将概率模型推断与确定性领域逻辑结合,并强制实施最小权限、隔离和显式工具契约。对于多智能体系统,仅在数据权限、上下文或组织归属不相交时才被允许,协调通过 handoff-envelope 绑定身份、权限与预算。整个方案旨在将 Agent 架构从模型中心转向工程化、可验证的系统实践。

阅读全文

八月市场数据发布:前部署工程与扩展制造覆盖

Pave 于2026年8月6日发布八月市场数据更新,最核心的变动是将前沿部署工程师(Forward Deployed Engineering, FDE)正式从观察清单转为基准岗位类别。FDE 是一种由 Palantir 开创、被 OpenAI 等企业采用的技术顾问混合角色,此前长期缺乏独立的薪酬参照标准,只能参考软件工程师或技术支持工程师的数据。Pave 首席执行官 Matt Schulman 指出,FDE 的薪酬水平低于 SWE 通才型工程师但高于客户支持工程和技术客户管理岗位。此次正式纳入基准后,企业可直接获取实时的 FDE 薪酬市场数据。此外,八月更新还将覆盖范围大幅扩展至制造业,新增工业设计、机器操作员、生产测试技术员、质量检验员和需求规划五个岗位家族,并引用数据指出制造业到2033年需要约380万新工人,但每100名年轻人进入制造业就有102人离开。此次更新共新增十个岗位家族、十个美国以外的国际地点基准和十九个美国本土城市数据,并新增了高管薪酬数据、支持岗位基准扩展及咨询与专业服务行业筛选功能。Pave 的基准数据源自对客户 HRIS、ATS 和股权系统的自动化持续连接,无需提交数据项目或等待年度版本更新。

阅读全文

为何顶级AI公司正在现场部署工程师

本文深度剖析了2026年AI领域从Sales到Serving的战略转型,重点阐述了Forward Deployed Engineering(FDE)模式被OpenAI、Anthropic、AWS及Microsoft等头部公司重启并重金投入的商业逻辑。文章指出,尽管大模型能力持续提升,但企业工作流、数据孤岛和组织问题并不会自动消失,因此需要一种新的部署模式来桥接模型与真实业务操作。文章原文追溯了FDE在Palantir服务情报与国防机构中的起源,解释了其通过Echo、Delta、Dev三个核心角色形成的“现场发现—现场交付—总部沉淀—能力回流”的四步循环。文章详述了为何AI技术既放大工程师效率,也放大其错误,这要求前线工程师具备更强的项目经验和商业判断力来嵌入核心企业流程,以处理权限、审批、遗留系统等问题。文章的关键洞见在于揭示了AI巨头们为此进行巨额投资的商业动机:从获取Token收入的少量价值,转向基于销售转化率提升、支持成本降低、供应链加速等可量化业务结果的高价值定价模式。此外,文章还提出了评估组织是否真正掌握FDE模式的四个核心标准,并警示了领导层预期错位或团队内耗可能导致失败的风险。

阅读全文