🤖 AI Summary
Existing AI programming agents are typically bound to specific delivery formats—such as command-line interfaces, integrated development environments, or web applications—limiting their reusability across heterogeneous engineering environments. This work proposes Sema Code, a novel framework that reconceptualizes AI coding agents as embeddable infrastructure by decoupling the core reasoning engine from client interfaces and delivering a unified kernel as a standard npm library. The framework incorporates eight key mechanisms: multi-tenancy isolation, FIFO input queuing, secure session restoration, adaptive context compression, multi-agent collaborative scheduling, todo-driven workflow management, four-layer asynchronous permission control, and three-tier ecosystem integration (MCP/Skills/Plugins). A single Sema Core engine has successfully powered both a VS Code extension and SemaClaw, a cross-platform messaging gateway, enabling consistent intelligent coding experiences across diverse platforms including Telegram and Feishu.
📝 Abstract
AI coding agents have become central to developer workflows, yet every existing solution locks its reasoning capabilities within a specific delivery form, such as a CLI, IDE plugin, or web application. This limitation creates systemic barriers when enterprises attempt to reuse these capabilities across heterogeneous engineering environments. To address this challenge, we present Sema Code, an open AI coding framework built on the principle of being embeddable, pluggable, and framework-first. Sema Code completely decouples the core agent engine from all client layers, publishing it as a standalone npm library that any runtime can drive programmatically. Built around this architecture, we designed eight key mechanisms: multi-tenant engine isolation, FIFO input queuing with safe session reconstruction, adaptive context compression, multi-agent collaborative scheduling, intelligent Todo-based process management, four-layer asynchronous permission control, three-tier ecosystem integration spanning MCP, Skills, and Plugins, and a background task framework with separated execution and observation privileges. These mechanisms collectively address the engineering challenges of transforming a complex agent engine into a shared, programmable core. Demonstrating its architectural versatility, the same Sema Core engine simultaneously powers a VSCode extension and a multi-channel messaging gateway, which we name SemaClaw, to unify agent interactions across platforms such as Telegram and Feishu. These represent two fundamentally different product forms sharing an identical reasoning kernel, differing only at the client layer.