563

Agents in Practice: Stack, Prompts and Use Cases

updated 2026-07-065 min read22 connected nodes

The model-to-system interface that lets an LLM trigger external actions. Tool Calling is the pattern where an LLM selects a predefined function, fills its arguments, and hands execution to software. This guide pulls together everything on Onexial tagged agents — 22 connected nodes across definitions, workflows, tool stacks, comparisons, prompts and applied use cases — and orders it the way you would actually learn it: vocabulary first, then process, then tooling, then execution. Every item below links to a full node with its own examples and connections, so you can go as deep as you need without losing the map.

Core concepts behind Agents

Before wiring anything together, the vocabulary has to be precise. These 15 definitions cover the terms that show up in almost every Agents discussion — each one links to a full entry with an example and its own connections inside the graph.

DEFDictionaryNODE·6AFBF9

Tool Calling

The model-to-system interface that lets an LLM trigger external actions.

#agents#systems
/tool-callingopen →
DEFDictionaryNODE·75B36E

Agent Memory

Persistent context that lets agents retain preferences, decisions, and prior work.

#agents#context
/agent-memoryopen →
DEFDictionaryNODE·48DEBE

MCP (Model Context Protocol)

Open protocol that lets LLMs connect to tools, data sources and apps through a standard interface.

#ai#protocol#agents
/mcp-model-context-protocolopen →
DEFDictionaryNODE·5BFF00

Agentic RAG

RAG where an agent decides what to retrieve, when, and from which source — instead of a single static query.

#ai#retrieval#agents
/agentic-ragopen →
DEFDictionaryNODE·7C0FDD

Agentic Workflow

A workflow where an LLM decides the next step instead of a hard-coded path.

#ai#agents
/agentic-workflowopen →
DEFDictionaryNODE·4FAFE9

Tool Use

An LLM invoking external functions to act beyond text generation.

#ai#agents
/tool-useopen →
DEFDictionaryNODE·310655

Long-Term Memory

Persistent state an agent carries between sessions.

#ai#agents
/long-term-memoryopen →
DEFDictionaryNODE·71B899

Episodic Memory

Session-scoped memory of specific past events.

#ai#agents
/episodic-memoryopen →
DEFDictionaryNODE·33A8E0

Planner-Executor Pattern

Splitting agents into a planner LLM and a smaller executor LLM.

#ai#agents
/planner-executoropen →
DEFDictionaryNODE·1EF41E

Reflection

An agent critiquing and revising its own output before returning.

#ai#agents
/reflectionopen →
DEFDictionaryNODE·6EE0DC

Function Calling

The API mechanism that lets a model request a tool call.

#ai#agents
/function-callingopen →
DEFDictionaryNODE·758727

MCP (Model Context Protocol)

Open standard letting AI clients call external tools, data and prompts.

#ai#protocol#agents
/model-context-protocolopen →

Workflows: how Agents runs end to end

Concepts only matter once they become a repeatable process. Below are 2 documented workflows that apply Agents to a concrete problem, with the steps, the tools involved and the variations worth testing.

Trade-offs and comparisons

Most Agents decisions are trade-offs rather than right answers. These 3 comparisons break down the real differences, when each option wins, and the recommendation for the common case.

Prompts you can reuse

Prompts are reusable components. Each of these 1 prompts is written to be dropped into a Agents workflow with minimal editing, including the context it expects and an example output.

Real applications of Agents

Finally, 1 applied use cases: the situation, the system used to solve it, and the outcome. This is the layer that turns Agents from an idea into leverage.

Frequently asked questions

What is Tool Calling?
Tool Calling is the pattern where an LLM selects a predefined function, fills its arguments, and hands execution to software. It is the bridge between language reasoning and reliable system action.
What is an example of Tool Calling?
A support assistant decides to call get_order_status with an order ID instead of guessing the delivery date from conversation context.
Why does Tool Calling matter for AI and automation?
The model-to-system interface that lets an LLM trigger external actions. It connects to the workflows, prompts and tool stacks linked on this page, so you can move from definition to execution without leaving Onexial.
What is Agent Memory?
Agent Memory is the stored state an AI system can retrieve across sessions: user preferences, previous outputs, project facts, operational rules, and feedback loops.
What is an example of Agent Memory?
A research agent remembers the company ICP, preferred competitor categories, and rejected sources before generating the next market scan.
Why does Agent Memory matter for AI and automation?
Persistent context that lets agents retain preferences, decisions, and prior work. It connects to the workflows, prompts and tool stacks linked on this page, so you can move from definition to execution without leaving Onexial.
What does MCP actually stand for?
Model Context Protocol. It is an open standard for exposing tools, resources and prompt templates to AI models over a JSON-RPC channel.
Who created MCP?
Anthropic released the specification in November 2024. OpenAI, Google, Microsoft, Cursor and most agent frameworks have since adopted it.
keep reading