// akash.sengar.ts
const engineer = {
name: "Akash Sengar",
role: "Senior Software Engineer",
focus: ["AI Agent Systems", "TypeScript", "Open Source Infrastructure"],
building: "Agentium — TypeScript-native AI agent orchestration framework",
contributing: "agno-agi/agno",
teaching: "YouTube — agent architecture, OSS deep dives, system design",
education: "Computer Science · VIT Vellore",
openTo: ["Collaborations", "OSS", "Interesting Problems"],
} as const;🚀 Flagship Project — Agentium
A TypeScript-native, zero-dependency AI agent orchestration framework for Node.js.
Model-agnostic · Multi-agent teams · Voice & Browser agents · Production-ready.
import { Agent, Team, Workflow } from '@agentium/core';
// Swap any of 30+ providers with one line — zero rewrites
const researcher = new Agent({
model: 'claude-3-5-sonnet',
tools: [webSearch, codeInterpreter],
memory: { type: 'graph', store: 'postgres' },
hooks: { beforeTool: auditLog, onError: circuitBreaker },
});
// Multi-agent teams in 4 modes: coordinate · route · broadcast · collaborate
const team = new Team({
mode: 'coordinate',
members: [researcher, analyst, writer],
transport: { type: 'socket.io' }, // REST · WebSocket · Voice · A2A
});
await team.run('Analyze Q4 data and draft a shareholder report'); // ✓|
🤖 Agents
|
👥 Teams
|
🌐 Transport
|
🗄️ Storage
|
30+ Model Providers · Graph Memory · PII Guard · Audit Trail · Cost Auto-Stop · Semantic Cache · Eval Framework
|
Languages AI / Agents |
Runtime & Frontend Infrastructure |
|
One of the fastest-growing open-source AGI frameworks. Contributing features, fixes, and architectural improvements to push the state of production agent systems. |
Building in public — agent architectures, TypeScript internals, OSS deep dives, system design walkthroughs. No fluff.




