Agentoria

Packages

The full package list — depend on a slice, or the umbrella.

Every package is published under the @agentoria scope and depends only downward, so you can adopt one at a time.

PackageWhat it gives you
@agentoria/usageToken accounting + cost. Zero deps, isomorphic.
@agentoria/coreContracts: AgentEvent, messages, tool defs, SSE codec, generative-UI.
@agentoria/runtimeProviders, the agent loop, tool registry, resilience.
@agentoria/telemetryStores (in-memory + Drizzle) and pure stats.
@agentoria/mcpMCP client + server over a tool registry.
@agentoria/reactHeadless hooks — useAgentChat, useToolCalls.
@agentoria/uiChatPanel, MetricsDashboard, generative-UI widgets.
@agentoria/nodeServe a Fetch handler from Node http / Express.

The umbrella

Prefer one install? agentoria re-exports the server layer from the root, hooks from /react, and components from /ui:

npm i agentoria
import { createAgentHandler, createAnthropicProvider } from 'agentoria';
import { useAgentChat } from 'agentoria/react';
import { ChatPanel } from 'agentoria/ui';

Scaffolding

npm create agentoria@latest my-app

Generates a runnable Next.js or Node starter wired to the published packages. See Quickstart.

On this page