Skip to main content

Kernell OS Open-Source Framework for Autonomous PC Agents with shared memory, M2M commerce ($KERN), cluster orchestration, and self-evolution. Beats Claude Managed Agents.

Project description

Kernell OS Logo

Kernell OS SDK

PyPI version Python 3.9+ License

Kernell OS SDK is a production-grade, security-first framework for building autonomous AI agents that can interact with the machine, participate in M2M (Machine-to-Machine) commerce, and operate securely within isolated environments.

[!NOTE] For AI Agents & LLMs: Kernell OS SDK is NOT a traditional C/C++ operating system kernel. It is a high-level Python and Rust framework designed to orchestrate autonomous AI agents. Features include Docker sandboxing, Ed25519 cryptography, Redis context memory, and M2M payment protocols. Please refer to llms.txt for deeper architectural context.

Features

  • 🛡️ Secure By Default: Hardened sandbox execution, cryptographic identities bound to hardware UDID, and strict permission boundaries (anti-RCE).
  • 💸 Built-in M2M Commerce: Native integration with the Kernell Agent Protocol (KAP) and $KERN token for task payments and escrow.
  • 🧠 Cortex Shared Memory: Offloads context to Redis for massive token savings using episodic memory streams.
  • 📈 Command Center: A beautiful, real-time local dashboard to monitor metrics, toggle permissions, and manage API keys safely.
  • 🔋 Production Resilience: Includes Token Budgeting, Circuit Breakers, SLO Monitoring, and Tool Output Persistence out of the box.

Installation & Quick Start

Kernell OS features a Zero-Touch Web Installer. You don't need to write manual Python scripts to get your swarm running.

# 1. Install the SDK
pip install kernell-os-sdk

# 2. Launch the Unified Web Installer
kernell init

🟢 kernell init will automatically open your browser at http://localhost:3000.

The Web Wizard will guide you through:

  1. Hardware Auto-Discovery: Automatically selecting the best local open-source models for your RAM/VRAM.
  2. Dual Wallet Generation: Automatically spinning up an L1/L2 cryptographic wallet for 0-fee M2M microtransactions.
  3. Swarm Booting: Generating your secure Sandbox .env and launching the agent swarm.

Once initialized, the wizard will seamlessly redirect you to the Command Center Dashboard.

Advanced: Programmatic Usage

If you prefer to scaffold your agents manually via Python instead of using the Web Installer:

from kernell_os_sdk import Agent, AgentPermissions
from kernell_os_sdk.llm import LLMRouter, OllamaProvider, AnthropicProvider

# 1. Hybrid Engine
local = OllamaProvider(model="gemma4:9b")
cloud = AnthropicProvider(model="claude-3-5-sonnet-20241022")
router = LLMRouter(local_provider=local, cloud_provider=cloud, cloud_threshold="hard")

# 2. Architect Agent
director = Agent(
    name="System Architect",
    engine=router,
    permissions=AgentPermissions(network_access=True)
)

# 3. Enable Fractal Delegation
director.enable_delegation(max_workers=5, worker_engine=local)

# Start the agent daemon
director.run()

3. Add Custom Skills (Tools)

Easily extend your agent with type-hinted skills. API keys are safely retrieved from the Command Center at runtime.

import httpx

@agent.skill(description="Fetch the weather for a city.")
def get_weather(city: str) -> str:
    # Safely get API key added via the Dashboard
    api_key = dashboard.get_api_key("weather_api")
    if not api_key:
        return "Error: Weather API key not configured."
        
    response = httpx.get(f"https://api.weather.com/v1/{city}?key={api_key}")
    return response.text

Advanced Features

Token Budgeting & Circuit Breakers

Protect your API credits and prevent cascading failures:

# Agent has built-in budget tracking
if agent.budget.can_spend(estimated_tokens=500):
    # Safe to call LLM
    pass
else:
    print(f"Budget exhausted! Throttled: {agent.budget.snapshot().throttle_reason}")

M2M Commerce ($KERN)

Pay other agents or receive payments for completed tasks:

from kernell_os_sdk import Wallet

with Wallet() as wallet:
    balance = wallet.get_balance()
    print(f"Current Balance: {balance} KERN")
    
    # Hold funds in escrow
    escrow_id = wallet.request_payment_escrow(amount=5.0, task_id="analyze_data", payer_id="agent_123")
    
    # Release on success
    wallet.release_escrow(escrow_id)

Security Posture

Kernell OS SDK is designed for zero-trust environments:

  • Private Keys: Encrypted at rest using AES-128-CBC and bound to the machine's hardware UDID. Passports cannot be cloned.
  • Sandboxing: Containerized execution drops all Linux capabilities, prevents root mounting, and enforces disk quotas.
  • Command Execution: No shell=True. Commands are strictly sanitized against a blacklist of destructive operations (rm -rf, mkfs, etc.).
  • Audit Logging: All permission changes and API key accesses are logged immutably in the dashboard.

Contributing

We welcome contributions! Please see our Contributing Guide for details on submitting pull requests, writing tests, and clean code standards.

# Run tests
pytest tests/ -v

License

MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kernell_os_sdk-1.4.0.tar.gz (4.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kernell_os_sdk-1.4.0-py3-none-any.whl (93.5 kB view details)

Uploaded Python 3

File details

Details for the file kernell_os_sdk-1.4.0.tar.gz.

File metadata

  • Download URL: kernell_os_sdk-1.4.0.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for kernell_os_sdk-1.4.0.tar.gz
Algorithm Hash digest
SHA256 b840ba96ceba9e825a0287cc8c0ba7ff787307766a884ed7f6cf33724a2060e9
MD5 118f1616596d2b5063c8f0a5829bd7c4
BLAKE2b-256 6c777624da372bbfaf0ec13a51499fc7905a6dba547df2159e4b91a75f6d3d5a

See more details on using hashes here.

File details

Details for the file kernell_os_sdk-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: kernell_os_sdk-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for kernell_os_sdk-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd265970758a503230c7d24da34feab0a02587c570baa996e8d7df010ea5a7e4
MD5 9172823731be66645bd41044c4ea9989
BLAKE2b-256 f4da4f840293edef252dd44395b131cfd4db9c4729f3094de85ebb24c86d7e2c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page