t2000-engine
Installation
SKILL.md
t2000: Agent Engine
Purpose
Build conversational AI agents with financial capabilities on Sui.
@t2000/engine provides QueryEngine, 12 financial tools, LLM orchestration,
MCP client/server integration, streaming, sessions, and cost tracking.
Quick Start
import { QueryEngine, AnthropicProvider, getDefaultTools } from '@t2000/engine';
import { T2000 } from '@t2000/sdk';
const agent = await T2000.create({ pin: process.env.T2000_PIN });
const engine = new QueryEngine({
provider: new AnthropicProvider({ apiKey: process.env.ANTHROPIC_API_KEY }),
agent,
tools: getDefaultTools(),
});