Agentic Primitives

The Building Blocks of AI Agent Systems

๐Ÿ‘ค
Actors
Who participates?
Reference
Human participants who initiate tasks, provide context, and consume outputs.
Reference
AI entities that perceive, reason, and act to accomplish goals.
๐Ÿ”ง
Tools
What can agents access?
LLM + Platform
Read-only interfaces. LLM uses descriptions; Platform handles bindings.
Vector Search Database Query Web Search
LLM + Platform
Interfaces that modify external state. LLM decides; Platform executes.
API Mutation Code Execution Email Sender
๐Ÿ“‹
Instructions
What guides behavior?
Core personality, expertise, tone injected into prompts.
LLM + Platform
Step-by-step procedures. LLM follows; Platform may encode.
Organization-wide policies: constraints and intent.
๐ŸŽฏ
Coordination
How is work coordinated?
Platform
Deterministic sequences in workflow engine.
LLM + Platform
LLM-driven coordination. Platform provides runtime.
Choreography Decentralized
Platform
Event-driven via event bus and pub/sub.
๐Ÿ”—
Connections
How do components link?
Platform
Direct connections. URLs, auth, protocols in infrastructure.
Platform
Dynamic lookup from registries and catalogs.
Platform
Asynchronous message queues for buffered, reliable delivery.
๐Ÿ’ฌ
Interactions
What flows between participants?
LLM + Platform
Instructions requesting action. Platform routes; LLM processes.
LLM + Platform
Requests for information. Platform routes; LLM responds.
State change announcements via webhooks, event bus.
LLM + Platform
Sustained exchanges. Platform manages threads; LLM uses history.
LLM Consumed by the language model in prompts/context
Platform Configured in orchestration platform/infrastructure
LLM + Platform Components for both
Reference Documentation/governance