🤖 AI Summary
This work addresses the structural security risks posed by large language model–driven autonomous agents to traditional operating systems, whose “resource exposure plus permission check” model proves inadequate—once compromised, attackers can abuse low-level resources to perform privilege-escalated operations. To mitigate this, the paper proposes AgenticOS, an intent-centric secure operating system architecture that treats structured agent intents as the entry point for system calls. The kernel synthesizes a least-privilege execution environment and enforces mandatory mediation, end-to-end auditing, and information flow control. Built upon a four-layer design—comprising the Ghost Kernel, Logic Shutter, Agent Capsule, and Semantic Boundary Gateway—and leveraging an Intent ABI, Manifest-Only Runtime, and Weaver capability mechanism, AgenticOS redefines the OS role from resource manager to intent filter, enabling semantic-level security governance of AI behaviors and substantially reducing the risk of resource misuse following agent hijacking.
📝 Abstract
Traditional OS security models based on "resource exposure plus permission checks" face structural challenges as LLM-driven autonomous agents acquire capabilities for planning, tool use, network access, and code execution. Once an agent runtime is compromised through prompt injection or malicious tool outputs, an attacker can compose POSIX-style resource primitives into behaviors far beyond the user's task authorization. To address this, we propose AgenticOS, an intent-oriented secure OS architecture that consolidates delegable, auditable software capabilities into OS-native ones rather than replacing all applications. The core insight is to reframe the OS from a "resource manager" into an "intent filter": instead of requesting low-level resources directly, agents submit structured intent declarations, from which the system synthesizes a least-privilege environment with mandatory mediation, auditing, and information-flow constraints. At the implementation level, we introduce a four-layer architecture -- Ghost Kernel, Logic Shutter, Agent Capsule, and Semantic Boundary Gateway -- together with the Intent ABI, Manifest-Only Runtime, Weaver-based capability generation, and an admission model for AgenticOS-native Skills.