Where the model is used

Forward deployed engineering in financial services

Financial services is the largest customer segment for this role: 24 percent of the job postings that named a target industry. The constraint that shapes every engagement is the audit trail. In most software an audit log is a feature you can add later; here it is a property the system has to have from the first data model decision, because the question a regulator asks is not whether the answer was right but whether you can show how it was reached. That requirement changes what an embedded engineer builds in week one.

Key takeaways

  • Financial services accounted for 24 percent of postings that named an industry, the largest single segment.
  • The shaping constraint is the audit trail: the system has to be able to show how a decision was reached, not only what it was.
  • Retrofitting an audit trail means finding every path that touches a decision, which is why it belongs in the first data model rather than a later sprint.
  • Change control lengthens the path to production, and it is predictable in week one if somebody asks for real historic durations.

This is the biggest segment for embedded engineering and the one where the environment constrains the work most visibly.

Why the sector concentrates this work

Two reasons show up in every engagement.

The environment is genuinely hard. Core systems that predate everybody in the room, data spread across systems that disagree with each other, and an integration surface with no coherent documentation. This is exactly the case where a plan written from outside meets reality in week six.

The consequences are asymmetric. A wrong answer is not a bug report. It is a customer complaint, a regulatory question, or a reportable event. That raises the cost of a system that is confidently wrong far above the cost of one that is slow.

Among 1,000 postings that named a target industry, financial services and banking led at 24 percent. AWS also named financial services explicitly as a focus area for its own forward deployed engineering organization.

The constraint: the audit trail

In most software, logging is a feature. Here it is a property of the design.

The question that gets asked is not whether the decision was correct. It is whether you can demonstrate how it was reached: what data the system used, which version of which rule applied, who or what made the call, and when. For an AI-assisted decision, add which model version, what it was given, and what it returned.

Why retrofitting is expensive. Adding an audit trail to a working system means finding every path that touches a decision and instrumenting it after the fact. Every path, including the batch job somebody wrote in 2019 and the manual override screen two people use. Missing one is worse than having none, because the trail now has a gap nobody can explain.

What that means for an embedded engineer. The audit trail is part of the week-one design rather than a later story. That sounds like it slows the first release and it usually does not, because the alternative is a rebuild once somebody asks the question.

Our financial software compliance guide covers the requirement side in depth, including the engineering translation of the rules.

The second constraint: change control

Getting a change into production in a bank is a longer path than in most companies, and the length is knowable in advance.

Change advisory boards that meet on a schedule. Security review. Penetration testing for anything customer-facing. Sometimes a model risk review with its own committee and its own cadence.

The engineering response is not to fight it. It is to ask, in week one, what has to be true for a change to reach production, who signs each step, and how long each has historically taken. Real durations rather than published targets. Then build the schedule around that answer rather than discovering it in month three.

This is why the first two weeks matter so much here: the release path discovery is worth more than the code written in the same period.

What tends to go wrong specifically

The pilot ran on an extract. A curated dataset behaves nothing like the production tables, and in this sector the difference is not cosmetic: it is the reconciliation break, the account in an unusual state, the record from a migration that predates the current schema.

Nobody defined the acceptable error rate. For an AI-assisted decision in a regulated process, this has to be an explicit number with an owner, because it will be asked about. Nobody volunteers to own it, which is why an embedded engineer has to force the conversation before production. Outcome-based pricing covers how to write it down.

The override path was an afterthought. In practice a human will overrule the system, and that override has to be captured, attributed and explicable. A system that cannot represent its own override is a system that will be switched off after the first contested decision.

Model risk review was not scheduled. The most predictable schedule slip in the sector and the easiest to avoid.

What an embedded engineer does differently here

Designs the audit trail with the data model, not after it.

Treats the override path as a first-class feature with the same rigour as the happy path.

Gets the acceptable error rate stated in writing, with a named owner, before production.

Maps the full approval path in week one and plans against real durations.

And keeps the checks independent of the model. Generated code is not secure by default, and in a regulated decision path the checks that prove behaviour have to be derived from the requirement and graded by something other than the model that produced the code. That is eval-driven development, and in this sector it doubles as the evidence a reviewer asks for.

The handover point that matters here

The inheriting team needs the eval suite more than the documentation, because in a regulated system the question is never only "does it work" but "can you still show it works after you changed it".

A handover consisting of an architecture document leaves the customer unable to modify the system without redoing the assurance work. A handover consisting of a runnable suite derived from the requirements leaves them able to change it and re-evidence it in an afternoon. Handover and exit covers the test.

Related: regulated industry software for the cross-sector view, and insurance for the adjacent case with its own state-by-state variation.

Common questions

Why is financial services the biggest sector for forward deployed engineers?

Among 1,000 postings that named a target industry, financial services and banking led at 24 percent. Two reasons recur: the environments are genuinely hard, with core systems that predate everybody in the room, and the consequences of a confidently wrong answer are asymmetric, being a regulatory question rather than a bug report.

What constraint shapes financial services engagements most?

The audit trail. The question asked is not whether a decision was correct but whether you can demonstrate how it was reached: what data was used, which rule version applied, who or what decided, and when. For an AI-assisted decision, add the model version, its input and its output.

Why can't the audit trail be added later?

Because retrofitting means finding every path that touches a decision and instrumenting it after the fact, including the batch job written years ago and the override screen two people use. Missing one path is worse than having no trail, because the trail then has a gap nobody can explain.

How should an embedded engineer handle bank change control?

Not by fighting it. Ask in week one what has to be true for a change to reach production, who signs each step, and how long each has historically taken, using real durations rather than published targets. Then build the schedule around that. Model risk review is the most predictable slip and the easiest to avoid.

What goes wrong most often in this sector?

A pilot that ran on a curated extract rather than production tables, no explicitly owned acceptable error rate, an override path treated as an afterthought, and an unscheduled model risk review. A system that cannot represent its own override will be switched off after the first contested decision.

What should the handover include in a regulated financial system?

A runnable eval suite derived from the requirements, more than documentation. In a regulated system the question is not only whether it works but whether you can still show it works after changing it. An architecture document leaves the inheriting team unable to modify the system without redoing the assurance work.

More in Where the model is used

Forward deployed engineering for enterprise AI

Enterprise AI pilots die in three places: data nobody audited, a success metric nobody defined before the work started, and users who were handed a workflow they had no part in designing. None of those three can be fixed from outside the building, which is the entire argument for embedded engineering in this context. MIT NANDA reported in July 2025 that 95 percent of generative AI pilots produced no measurable profit-and-loss impact, from a sample of 52 executive interviews, 153 leader surveys and 300 public deployments. The failures it describes are organisational rather than technical.

Forward deployed engineering for AI agents

AI agents appear in 35 percent of forward deployed engineer job postings, ahead of general LLM experience at 31 percent and retrieval at 12 percent. The reason agents pull this role rather than a normal integration is that an agent needs permissions, tool access and an escalation path, and all three are properties of the customer's organization rather than of your product. AWS named its own methodology Agentic Process Transformation, directing customers to start with a business process, reimagine it for an agentic world, deploy to production, and demonstrate measurable results.

Forward deployed engineering in government and defense

Government and defense is where the model was invented and it remains 18 percent of the job postings that name a target industry. Three constraints shape every engagement and none of them are technical: personnel clearance, which decides who can even be in the room; environments that are disconnected from the internet, which removes the tooling most teams assume; and procurement cycles long enough that the technology changes before the contract concludes. The engineering response to all three is the same, which is to design for the constraint rather than around it.

Forward deployed engineering in healthcare

Healthcare accounts for 17 percent of the forward deployed engineer postings that named a target industry. Two constraints decide every engagement. The data usually cannot leave the organization, which means the work happens inside their infrastructure on their terms. And the clinical workflow cannot stop, which means every deployment is a change to a process that is running continuously with real consequences. Together those rule out the two things software teams normally rely on: taking the data home, and a maintenance window.