Architecture Overview
Module Dependency Graph
Twelve modules on one lockstep version. Dependencies form four layers plus a meta artifact (BOM) that pins them all.
ASCII fallback (for terminal / plain-text readers)
FOUNDATION
tnsai-core Agent · Role · Action · Events · SPI · ToolMethodRegistry
(no inter-module dependencies)
│
▼
CAPABILITIES — depend on tnsai-core
tnsai-llm LLMClient impls for 20+ providers · prompt caching
tnsai-coordination Group topologies · council · voting
tnsai-tools POJO toolkits across web · file · DB · code · media · fintech · …
tnsai-mcp Model Context Protocol client + server
tnsai-quality Observability + security enforcement
│
▼
COMPOSED — depend on core + 1+ capability
tnsai-intelligence → core, coordination
RAG · planning · reasoning · context
tnsai-channels → core, coordination
Telegram · CLI · Email · Slack · Discord · WhatsApp
adapters via SPI
tnsai-evaluation → core, intelligence, quality
Benchmarks · quality gates · evaluators
tnsai-integration → core, coordination, evaluation
SCOPBridge + framework adapters
│
▼
APPLICATION
tnsai-server → core, llm, coordination, quality
WebSocket backend · RAG service · tool execution
META
tnsai-bom Bill of Materials — pins all 12 modules to one versionCore Concepts
Agent Lifecycle
ASCII fallback (for terminal / plain-text readers)
User Message
│
▼
agent.chat(message)
│
├── Memory append to conversation history
├── System Prompt identity + roles + invariants + state
└── LLM call request with tool definitions
│
▼
LLM Response
│
┌───────────────┴───────────────┐
│ │
▼ ▼
Text reply Tool Call
│ │
│ ▼
│ ActionExecutor
│ │
│ │ ActionType:
│ ├── LOCAL Java method on Role
│ ├── WEB_SERVICE HTTP / REST endpoint
│ ├── LLM LLM dispatch via ToolMethodDispatcher
│ └── MCP_TOOL Model Context Protocol tool
│ │
│ ▼
│ Tool Result
│ │
│ ▼
│ back to LLM (multi-turn loop)
│
▼
return to userAction Routing
Actions are discovered from Roles via @ActionSpec annotations. The ActionExecutor routes each action to the correct executor based on ActionType:
| Type | Source | Example |
|---|---|---|
LOCAL | Java method on Role | @ActionSpec(type = ActionType.LOCAL) String greet(String name) |
WEB_SERVICE | HTTP / REST endpoint | @ActionSpec(type = ActionType.WEB_SERVICE) + @WebService(...) |
LLM | LLM dispatch using the agent's ToolMethodDispatcher | @ActionSpec(type = ActionType.LLM) + agent-level .builtInTools(...) / .toolPojos(...) |
MCP_TOOL | Model Context Protocol server tool | @ActionSpec(type = ActionType.MCP_TOOL) + @MCPTool(serverUrl = "...") |
Extension Points (SPI)
TnsAI uses Java's ServiceLoader pattern for modular extensibility:
| SPI Interface | Module | Purpose |
|---|---|---|
LLMClientProvider | Core | Register LLM providers |
CheckpointerProvider | Core | State persistence |
PlannerHandle.Factory | Intelligence | Planning algorithms |
ReasoningStrategyHandle.Factory | Intelligence | Reasoning patterns |
ContextManagerHandle.Factory | Intelligence | Decision tracing |
EvalHandle.Factory | Quality | Evaluation hooks |
SecurityEnforcerHandle.Factory | Quality | Security policies |
Register implementations in META-INF/services/<interface-name>.
Agent Internal Architecture
The Agent facade composes a small set of focused collaborators — each
owns one slice of behavior, so extending or replacing one piece doesn't
ripple through the whole class. If you're subclassing Agent or
swapping out one of these collaborators via SPI, this is the map.
ASCII fallback (for terminal / plain-text readers)
Agent identity · lifecycle · template methods · facade
│
├── AgentOrchestrator chat · streaming hooks · tool-call loop · KB
│
├── AgentCapabilities planning · reasoning · eval · feedback ·
│ environment · variant · resilience
│
├── AgentCognitiveSupport
│ internal cognitive support (public for visibility)
│
├── AgentHierarchyManager
│ parent / child relationships
│
├── AgentStreamingSupport
│ streaming chat + ChatChunk events
│
├── AgentMessagingHandler
│ inter-agent messaging via communication SPI
│
└── AgentGroupManager group membershipDesign Principles
- Annotation-first —
@ActionSpec,@AgentSpec,@ChannelSpecover programmatic config - SPI for extensibility — modules register via
META-INF/services/ - Composition over inheritance — Agent delegates to focused managers
- Immutability — records for data,
List.of(),Map.of() - Thread safety —
ConcurrentHashMap,CopyOnWriteArrayList, virtual threads