Sunesis Agents
Agents that understand, not just respond
Build autonomous agents that don't just respond — they understand intent, emotion, and context. Deploy AI workers that think, learn, and act across your tools.
Capabilities
What an agent can do
Agent Builder
Visually compose agents that understand intent, emotion, and context — not just keywords.
Tool Integration
Connect any API, database, or service. Agents call tools autonomously to get work done.
Memory
Long-term memory across sessions. Agents recall preferences, history, and context.
Reasoning Engine
Multi-step reasoning with emotion-aware decisions. Think, then act — like a person would.
Developer-First
Define an agent in 10 lines
agent.ts
import { Sunesis } from "@sunesis/agents";
const agent = new Sunesis.Agent({
name: "Aria",
voice: "clone:voice_abc123",
memory: { type: "long-term" },
emotion: true,
tools: [sendEmail, bookMeeting, searchWeb],
});
agent.on("message", async (ctx) => {
const mood = await ctx.analyzeEmotion(); // feels the user
const reply = await agent.reason(ctx, mood); // thinks
await agent.speak(reply); // responds with empathy
});Use Cases
Where agents shine
Customer Support
Agents that resolve tickets with empathy — not scripts. Hand off to humans when emotion spikes.
Personal Assistant
Book meetings, draft emails, and manage your day. An agent that knows how you work.