Agentic AI Platform
MCP server, multi-agent system, code-aware RAG, evals
Exposed a 12-node DAG workflow engine to LLM agents through a production MCP server and a hybrid code-aware RAG pipeline, then built three agents on LangGraph + Claude Agent SDK: a ReAct workflow-composition agent, a node-scaffolding agent, and a multi-agent failure-triage system with an adversarial critic. Hardened with eval-driven development and human-in-the-loop approval.
Architecture · click to expand
MCP Tool Surface
The agent acts on the workflow engine through MCP tools (top) and observes it through read-only MCP resources (bottom).
Agent Designs
Each agent drives specific MCP tools and resources: the composer loops the design tools, the scaffolder reads schemas + codebase RAG, and triage reads run state and logs.
Agent Loop Graphs
Each agent is a LangGraph StateGraph: a ReAct loop (model cycles through tools via conditional edges) and a supervisor loop for the multi-agent triage.
Code-Aware RAG
Vector, keyword, and graph retrieval are fused and reranked into the top-k context, benchmarked with a gated recall@10 eval.