ImageFirm Field Guide · 2026
Agentic systems · dependency map

The Agentic AI Knowledge Graph

A production-oriented learning landscape that starts with the boring fundamentals, separates retrieval from memory, treats orchestration as an engineering choice—not a goal—and puts evaluation, security, observability and human control where they belong: in the core architecture.

Blueprint reviewed and rebuilt by ImageFirm. The original poster is visually strong, but some arrows imply causal relationships that are not universal. This version uses dependencies as learning prerequisites, not dogma.

6learning layers
30core concepts
8primary sources
1end-to-end path

What the blueprint gets right—and what production reality adds.

The biggest strength is pedagogical: it pushes learners to follow dependencies instead of jumping directly to “self-improving agents.” The biggest weakness is that the graph blends conceptual prerequisites, implementation techniques and operational controls into one visual grammar.

KeepFoundations before autonomy

Reasoning, prompting, tool use, embeddings and context management remain prerequisites. Teams that skip them accumulate invisible failure modes.

RefineRAG is not a single ladder

Classical RAG, graph retrieval and agentic retrieval are patterns with overlapping use cases—not a universal maturity sequence.

Correct“Confidence” needs calibration

Raw model self-confidence is not trustworthy enough to be a production gate. Use evals, uncertainty signals, policy checks and deterministic validations.

AddDurability + human control

Checkpointing, resumability, permissions, auditability and human approval are first-class production concerns, especially for high-impact tool actions.

An interactive map of what depends on what.

Tap any concept to see why it matters, what it depends on, and how to recognize when it is actually needed. Filter by layer or search by concept.

The shortest serious learning path.

Do not learn “agents” top-down. Build one traceable system end-to-end, then add autonomy only where deterministic workflow logic becomes brittle or expensive.

1

Master the model boundary

Prompts, context windows, structured outputs, model limitations, latency and cost.

2

Add tools safely

Typed schemas, clear descriptions, auth scopes, idempotency and reversible actions.

3

Ground with retrieval

Use search, vector retrieval or graph traversal only when the task needs external knowledge.

4

Instrument the run

Trace tool calls, model outputs, latency, token use, failures and user-visible outcomes.

5

Build evals first

Define what “good” means with representative tasks, adversarial cases and regression tests.

6

Introduce state & memory

Persist only information that improves future decisions; scope writes and protect shared memory.

7

Choose orchestration

Single agent by default; planner/executor, routing, parallelism or multi-agent only when justified.

8

Gate high-risk actions

Use permissions, policy checks, approval steps, rollback plans and immutable audit trails.

ImageFirm production rules for agentic systems.

These rules reflect the strongest common themes across current vendor guidance and production frameworks.

1. Prefer the simplest architecture that works.

A deterministic workflow or single agent is easier to evaluate, secure and maintain than a prematurely distributed multi-agent system.

2. Treat tools as privileged capabilities.

Every tool needs explicit schemas, least-privilege access, input validation, error semantics, and a clear distinction between read and write actions.

3. Evals outrank vibes.

Define success before optimization. Compare versions against representative datasets and score task completion, correctness, safety, latency and cost.

4. Memory is governed state, not magic learning.

Store only useful state, define retention and scope, protect shared stores from prompt injection, and keep immutable policy separate from agent-writable memory.

5. Human-in-the-loop is a risk control.

Escalate sensitive, irreversible or high-impact actions. Approval thresholds should depend on action risk, not on how fluent the model sounds.

6. Durable execution is a production primitive.

Long-running agents need checkpoints, resumability, retries, idempotency and fault recovery so work can survive failures and human pauses.

7. Observe outcomes, not only traces.

Telemetry should connect model and tool behavior to real user or business outcomes, otherwise impressive traces can hide low task success.

8. Optimize total economics.

Token cost is only one dimension. Track wall-clock latency, retries, tool fees, retrieval cost, human-review burden and failure cost.

9. “Self-improving” requires controlled feedback loops.

Production systems should update prompts, tools, policies or memory through evaluated changes—not uncontrolled self-modification.

The frontier is not “more agents.” It is better control over long-horizon work.

The differentiator is increasingly the runtime: context engineering, durable execution, reliable tool use, eval-driven optimization, permissions, observability and safe memory. Multi-agent patterns are useful when they reduce complexity—not when they merely make the diagram look advanced.