Blank white background with no objects or features visible.

Conheça o TrueForge: o agent harness de código aberto e independente de fornecedor. Custo 50% menor. Explorar agora→

Andrew Ng's AI Engineering Skills Map: What Enterprise Teams Should Standardize

By Boyu Wang

Published: September 1, 2026

Andrew Ng's map is a skills framework, not a product architecture. This article asks a narrower enterprise question: which mechanics should engineers understand and own, and which repeatable runtime, access, governance, reuse, and evidence primitives can a platform standardize without replacing that judgment?

Source Note
Source note. Andrew Ng and DeepLearning.AI introduced the AI Engineering Skills Map on August 14, 2026. The primary release says the map draws on analysis of more than 10,000 job postings, structured expert and hiring interviews, surveys, and other online data. Ng's official writing page lists detailed follow-ups on building and deploying AI applications (August 21) and software engineering fundamentals (August 28). The infrastructure mapping below is TrueFoundry's editorial interpretation, not an endorsement by Andrew Ng or DeepLearning.AI.

Andrew Ng's four top-level skills are deceptively simple:

  1. Building and deploying AI applications
  2. Software engineering fundamentals
  3. Using coding agents
  4. Shaping the build

The useful signal is what the list refuses to collapse. AI engineering is not reduced to prompting; coding agents do not erase software fundamentals; deployment is part of the craft; and product judgment sits alongside implementation. The map therefore treats AI engineering as a combination of systems work, software engineering, agent-assisted development, and judgment.

Platform Map Callout

Ng maps the capabilities people need. Enterprises also need a platform map: which repeatable infrastructure should every team inherit instead of rebuilding?

1. A skills map is not a product checklist

The wrong way to use Ng's map would be to draw four boxes and claim a platform "solves" each one. Skills are human capabilities. Product judgment, architecture judgment, debugging ability, evaluation design, and customer understanding do not disappear because a company buys infrastructure.

The more useful enterprise translation is this: standardize the repeatable mechanics so engineers can spend more of their scarce judgment on the parts that genuinely require judgment.

Figure 1. Four AI engineering skill areas feeding shared enterprise infrastructure primitives and institutional capability.
Figure 1. TrueFoundry editorial synthesis. Ng defines human skills; the infrastructure mapping asks which repeated mechanics can become shared organizational primitives without outsourcing engineering or product judgment.

2. Building and deploying AI applications: this is where the platform map is strongest

Ng's August 21 follow-up breaks building and deploying AI applications into six capabilities: LLM foundations, grounding models with data, building agentic systems, evaluation-driven development, operating in production, and machine-learning foundations. The important point is that these are engineering skills, not vendor categories. A platform can operationalize parts of the work; it cannot substitute for knowing why one architecture, model, evaluator, or failure policy is appropriate.

LLM foundations → AI Gateway can standardize access, not understanding

Engineers still need to understand model behavior: context windows, caching, knowledge cutoffs, sampling, reasoning effort, tool calling, latency, cost, and provider-specific behavior. TrueFoundry AI Gateway can standardize how routed model traffic is accessed and governed—unified APIs, routing and fallbacks, RBAC, rate limits, budgets, guardrails, and OpenTelemetry-compatible observability—but it does not remove the need to understand those model tradeoffs.

Grounding models with data → governed access, not “RAG in a box”

Ng treats grounding as an architectural menu rather than a synonym for vector search: engineers may choose prompt context, retrieval, tool calls, vector indexes, knowledge graphs, semantic layers over structured data, or combinations of them. There is no universal “grounding → MCP Gateway” mapping. When an application exposes retrieval or data access through MCP tools, MCP Gateway can govern that access path through discovery, authentication, tool-level permissions, downstream credentials, guardrails, approvals, observability, and audit. If grounding happens directly inside the application or through a vector store, knowledge graph, or semantic layer that does not traverse MCP, that path remains outside MCP Gateway.

Building agentic systems → architecture first; TrueForge maps to the harness/runtime branch

Ng's August 21 expansion treats agentic systems as an architectural spectrum rather than a single framework choice. At one end, an application can execute a comparatively explicit workflow of model calls. At the more open-ended end, an agent harness lets the model repeatedly choose its next step while the surrounding runtime manages tools, context, execution, safety boundaries, and continuation. In between are hybrid systems that combine explicit workflow structure with agentic nodes.

That means the underlying skill is architecture judgment: deciding what should be deterministic, what should be delegated to a model, what may run in parallel, what tools the system may call, how memory and long-session context should work, when multiple agents help, and what fallbacks, guardrails, and governance are required.

TrueForge maps strongly to the harness/runtime branch of that design space. Its documentation defines an open-source agent harness that runs the model/tool loop, connects to MCP servers, manages long-task context, treats isolated sandbox execution as a tool, pauses for human approval, supports subagents, and persists sessions across reconnects and restarts.

The mapping becomes concrete in the AgentSpec. A reusable agent definition can specify the model and parameters, instructions, MCP servers and tool filters, approval policy, Skills, sandbox behavior, context management, response format, and iteration limit. Those are runtime choices an engineer may need when implementing an agent-harness architecture.

Scope Boundary Note
Scope boundary. TrueForge is not the whole “building agentic systems” skill. It does not decide whether an explicit workflow is better than an agent loop, own arbitrary business-process topology, define business truth, supply application-specific evaluation criteria, or replace downstream authorization. TrueFoundry AI and MCP Gateways can govern model and tool traffic routed through them, but those shared control planes are complementary to—not substitutes for—the architecture itself.
Figure 2. Agentic systems as an architectural spectrum from explicit workflows through hybrid systems to an agent harness runtime.
Figure 2. “Building agentic systems” is broader than any one runtime. TrueForge maps strongly to the harness/runtime side of the design space; application workflow topology, business semantics, evaluation criteria, and downstream authority remain separate concerns.

Evaluation-driven development → structured evidence, not a built-in evaluator

Ng treats disciplined evaluation and error analysis as a core AI-engineering skill. The platform implication is not “buy an evaluator.” It is that evaluations need reliable evidence about what actually happened: prompts and responses where retained, model/tool choices, intermediate steps, failures, latency, cost, and the surrounding task context.

TrueForge makes its runtime structure explicit through an Agent → Session → Turn → Event → Delta model. The documentation distinguishes these objects precisely:

TrueForge Objects Table
TrueForge
object
Documented meaning Why it can matter for
evaluation
Agent A reusable definition containing model, instructions, tools, and configuration; it is not a running process. Identifies the runtime definition being exercised.
Session One issue or piece of work whose turns share context; its ID can be persisted so work resumes later. Groups a long-running task without mixing unrelated work.
Turn One request/response cycle. A turn may pause for approval, clarification, or MCP authentication and continue through a later turn. Provides a natural interaction-level unit for analysis.
Event A structured record emitted while a turn runs—for example turn.created, mcp.initialize, model.message, tool.response, tool.approval_required, and turn.done. Lets debugging or evaluation reconstruct which runtime actions occurred.
Delta A streamed fragment associated with an event, notably token-by-token model output; persisted event views are merged. Useful for streaming/timing analysis, but usually not the semantic evaluation object by itself.

"Each event tells your app what the agent is doing."

TrueForge SDK Concepts — Event
Figure 3. TrueForge runtime evidence hierarchy from Agent to Session to Turn to Event to Delta, with example turn events.
Figure 3. TrueForge documents Agent → Session → Turn → Event → Delta as its SDK mental model. Events make execution inspectable; task-specific evaluators still determine whether the behavior was correct or valuable.

The Event model is technically useful because the docs also specify an event ID, a thread_id that distinguishes the root agent from subagent threads, and sequence information used when resuming after a disconnect. That provides structured execution evidence rather than a single opaque final answer.

For traffic routed through TrueFoundry Gateways, model- and MCP-boundary traces and metrics add another evidence layer. But the boundary remains important: events and traces do not determine whether an answer was correct, a tool action was appropriate, or a business outcome was successful. The application still needs task-specific datasets, deterministic assertions, LLM judges where appropriate, human review, or other evaluation logic.

Operating in production → shared controls around the runtime

Ng's production branch includes observability, failures, security, regression testing, and cost/latency tradeoffs. Here the TrueFoundry mapping is strongest when phrased as shared operating controls, not as a replacement for production engineering.

AI Gateway documents unified model access, fine-grained access control, rate limiting, virtual-model load balancing with retries/fallbacks, budget limiting, guardrails, and OpenTelemetry-compatible metrics/logging for model traffic routed through it. MCP Gateway adds centralized visibility and policy around MCP tool traffic, including pre/post-tool guardrails, approval workflows, and audit records. Agent Registry provides a catalog plus centralized metrics and traces for registered agents, including remote agents.

Those capabilities can reduce duplicated operational plumbing across teams. They do not define the application's SLOs, incident policy, rollback semantics, idempotency strategy, data-retention requirements, or business-specific failure handling.

Machine-learning foundations → still foundations

There is intentionally no product substitution here. Understanding bias/variance, data quality, evaluation, model tradeoffs, and learning dynamics remains a human skill. Infrastructure may support the workflow, but it cannot replace the mental models needed to reason about uncertain outputs.

3. Software-engineering fundamentals matter more when agents write more code

Ng's August 28 follow-up makes the relationship to coding agents explicit: software fundamentals remain essential because engineers still have to recognize and steer tradeoffs the agent cannot infer from business context alone. He organizes this branch around building full-stack applications, managing data, designing system architectures, making systems secure and reliable, and scaling and operating in production.

The TrueFoundry mapping here is intentionally indirect. A platform can standardize some implementation primitives—authentication and authorization at shared boundaries, model/tool access policies, budget/rate controls, sandbox isolation, persistent agent runtime state, and telemetry—but it cannot supply the engineer's understanding of data models, consistency, testing, failure domains, security design, or system architecture.

Engineering Concerns Table
Engineering
concern
What the engineer must
understand
What shared infrastructure can standardize
Architecture Boundaries, failure domains, state ownership, consistency Stable harness/runtime interfaces; shared model/tool access boundaries
Security Threat model, least privilege, data sensitivity, downstream authority Gateway authn/authz, tool permissions, credential handling, guardrails; sandbox isolation in the harness
Reliability Retries, idempotency, failure handling, rollback, durable state Persistent agent sessions/events, model routing/fallback primitives, telemetry
Cost Economic value of model/tool/agent choices Budget/rate policies and cost attribution
Operations What constitutes a meaningful SLO or incident Shared traces/metrics for routed traffic and registered agents

The principle is simple: coding agents can accelerate implementation, but architecture still determines the shape of the failure.

4. Using coding agents: govern the environment around them

Ng makes using coding agents a separate top-level skill. In the original Skills Map, this is about the developer's own operating skill: having a useful mental model of how coding agents work and fail, managing their context, deciding how much autonomy to grant, supplying verifiers or evals, knowing when to intervene, and continually updating the workflow as the tools change.

That is not something TrueFoundry can replace. The natural product mapping is only to pieces of the environment around coding agents. For compatible coding clients that use MCP, MCP Gateway can centralize server discovery, inbound authentication, tool-level access control, downstream credentials, guardrails, approvals, and audit. That can make the tool surface more consistent and governable across users and clients.

Skills Registry addresses a different problem: reusable procedural knowledge. TrueFoundry documents Skills as versioned artifacts that can be published once and reused across TrueFoundry Agents, Claude Code, and Cursor, inheriting repository RBAC, version history, and audit logs.

Tools and Skills Note

Tools and Skills solve different problems.

MCP governs callable capabilities and their access path. A Skill packages instructions, scripts, and supporting material for how an agent should perform a class of work. Neither one makes a developer proficient at supervising a coding agent.

5. Shaping the build: the weakest product mapping is the most important one

The fourth branch is the least appropriate place for product promotion. Ng's framing moves upstream from implementation toward product sense, business context, customer goals, ownership, worthwhile problem selection, and judgment about when to ship an MVP versus when risk or quality calls for a more careful build.

No gateway, harness, registry, or dashboard supplies that judgment. Infrastructure can improve the feedback loop: routed gateway traffic can expose usage, latency, failures, and spend; Agent Registry can centralize metrics and traces for registered agents; budget controls can bound experiments. Those are inputs to judgment, not substitutes for deciding what should be built or what outcome matters.

This is the useful enterprise reading of the map: standardize undifferentiated mechanics so engineers can spend more time on architecture, evaluation, customer understanding, and product decisions that cannot be centralized.

6. The enterprise version of the skills map

If Ng's map describes the modern engineer, an enterprise AI platform should answer a parallel question: what should every engineer get by default?

Organizational Capability Mapping Table
Organizational
capability
TrueFoundry / TrueForge mapping Boundary
Runtime Consistent agent
execution
TrueForge: harness/runtime primitives for model/tool loops, MCP, Skills, sandbox-as-tool, HITL, subagents, context management, persistent sessions, turns, events, and deltas. Strong mapping to the harness/runtime branch of agentic-system engineering; not the whole skill and not the owner of arbitrary workflow/business semantics.
Models Portable model
access
AI Gateway: unified access, routing/fallbacks, RBAC, rate limits, budgets, guardrails, and telemetry for routed model traffic. Operationalizes model access; does not teach LLM foundations or determine the right model/evaluation strategy.
Tools Governed
enterprise
capability access
MCP Gateway: registry/discovery, inbound auth, tool-level access, downstream credentials, pre/post guardrails, approvals, observability, and audit. Applies when tools/data are accessed through MCP; does not replace the underlying grounding architecture or downstream business authorization.
Knowledge Reusable
procedures
Skills Registry: reusable, versioned, discoverable Skills that inherit repository RBAC, version history, and audit logs. Supports procedural reuse; does not prove a Skill is correct or make someone proficient at using coding agents.
Agents Inventory and
shared
governance
Agent Registry: register and discover TrueFoundry or remote agents, apply access controls, and centralize metrics/traces for registered agents. Inventory/observability surface; does not define the application's orchestration or business semantics.
Evidence Operational
feedback
TrueForge Events + Gateway traces/metrics: structured evidence about runtime steps and routed model/tool activity. Evidence is not evaluation; task-specific criteria, datasets, judges, human review, and promotion policy remain external.

7. The bigger shift: from individual fluency to institutional capability

The most important enterprise consequence of Ng's skills map may be that AI engineering is becoming too broad to operationalize through individual heroics.

An excellent engineer may understand models, RAG, agents, evals, distributed systems, security, coding agents, product tradeoffs and operations. But if every engineer must also rebuild model adapters, credential handling, MCP discovery, tool authorization, approval state, cost accounting and tracing inside every project, the organization is wasting that expertise on undifferentiated infrastructure.

A stronger division of labor is:

  • Engineers own judgment: architecture, evaluation design, model/tool choice, product tradeoffs, error analysis and what to build.
  • TrueForge provides the open agent harness/runtime: reusable mechanics for running model/tool loops with context, tools, sandboxing, approvals, state, subagents, and events.
  • TrueFoundry Gateways provide shared policy boundaries: model and MCP access, routing, budgets, guardrails, credentials, approvals, audit, and telemetry for traffic intentionally routed through them.
  • Systems of record remain authoritative: business data, entitlements and side effects still belong to the systems that own them.
Enterprise AI Infrastructure Goal

The goal of enterprise AI infrastructure is not to replace AI engineering skill. It is to let that skill compound instead of being spent rebuilding the same runtime and governance layer in every application.

References

  1. Andrew Ng / DeepLearning.AI — “The AI Engineering Skills Map” (Aug. 14, 2026). Primary framework and methodology.
  2. Andrew Ng — Writing. Official index for the Aug. 21 “Building and Deploying AI Applications” and Aug. 28 “Software Engineering Fundamentals” follow-ups.
  3. Andrew Ng — “Building and Deploying AI Applications” (Aug. 21, 2026). Detailed expansion of the first skill area.
  4. TrueForge — Introduction. Definition of the harness and documented execution-loop capabilities.
  5. TrueForge — Create an Agent. AgentSpec fields and runtime options.
  6. TrueForge — SDK Concepts: Event. Agent/Session/Turn/Event/Delta semantics and event metadata.
  7. TrueFoundry — Introduction to AI Gateway.
  8. TrueFoundry — MCP Gateway Overview.
  9. TrueFoundry — MCP Gateway Authentication and Security.
  10. TrueFoundry — Skills Registry.
  11. TrueFoundry — Agent Registry.

Editorial disclosure: Andrew Ng and DeepLearning.AI are not affiliated with this article and do not endorse TrueFoundry. Their AI Engineering Skills Map is used as an external framework; all infrastructure mappings are TrueFoundry editorial analysis. Product capabilities were rechecked against public TrueFoundry and TrueForge documentation available on August 31, 2026.

Try now.

One gateway for all your models, MCP servers, and agents.
No credit card needed.

Start free
Table of Contents

One Gateway for Every LLM, Agent and MCP Server

Book a 30-min with our AI expert

Book a Demo

The fastest way to build, govern and scale your AI

Book Demo
Summarize with
ChatGPT logo by OpenAI
Perplexity AI logo
Blurry red snowflake on white background, symmetrical frosty design with soft edges and abstract shape.

Discover More

No items found.
September 1, 2026
|
5 min read

Andrew Ng's AI Engineering Skills Map: What Enterprise Teams Should Standardize

No items found.
August 31, 2026
|
5 min read

LLM Cost Optimization: The Complete Guide (2026)

Ferramentas de LLM
August 31, 2026
|
5 min read

From Agent Harness to System Intelligence: What Graph Engineering Changes in Production AI

No items found.
August 31, 2026
|
5 min read

Agent Security Is a Systems Problem: From Prompt Injection to Runtime Control

No items found.
No items found.

Recent Blogs

Black left pointing arrow symbol on white background, directional indicator.
Black left pointing arrow symbol on white background, directional indicator.
Take a quick product tour
Start Product Tour
Product Tour