Registry / ai-ml / agent-os-kernel

agent-os-kernel

JSON →
library3.7.0pypypi✓ verified 80d ago

A kernel architecture for governing autonomous AI agents with Nexus Trust Exchange. Version 3.7.0, in public preview. Monthly releases.

pip install agent-os-kernel
INSTALL
IMPORT
SIG · AGENT-OS-KERNEL
A
agent-os-kernel
ai-mlpythonv3.7.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AgentKernel
from agent_control_plane import AgentKernel
from agent_os import AgentKernel

Initialize and run an AgentKernel with a trust API key from environment.

import asyncio from agent_os import AgentKernel async def main(): kernel = AgentKernel(trust_api_key=os.environ.get('TRUST_API_KEY', '')) await kernel.start() # ... use kernel await kernel.stop() asyncio.run(main())
Debug
Known issues
breakingVersion 3.0 changed the kernel initialization signature: `AgentKernel()` now requires `trust_api_key` as a positional argument (was optional).
fix
Update code to pass `trust_api_key` explicitly.
affects: 3.0+
deprecatedThe `NexusClient` class is deprecated in 3.5+, use `NexusTrustExchange` instead.
fix
Replace `NexusClient` with `NexusTrustExchange`.
affects: >=3.5
gotchaThe kernel requires Python 3.9+. Installation on older Python fails silently (no error message).
fix
Verify Python version >= 3.9 before installing.
affects: all
Upgrade
Version history
3.7.0latest on PyPI · released May 18, 2026
Audit
Dependencies
aiohttprequiredHTTP client for agent communication
Agent activity
53 hits · last 30 days
node
46
OpenAI (training)
1
Resources
agent-os-kernel — pip install agent-os-kernel · libregistry