Skip to main content

Khy OS — AI platform operating system with an extensible default app runtime

Project description

khy — the AI-native operating system

khy

The AI-native operating system.
A hand-written OS kernel + a Claude-Code-class agentic CLI + a 16-backend AI gateway.
One install, batteries included.

PyPI npm CI CodeQL
License Python Node Platforms Made with C / JS / Python / MoonBit

60-Second Tour · What is khy · Quickstart · The Three Pillars · Compare · 中文


🤯 What is khy

khy is a full AI-native operating system — written almost entirely by one person. It spans every layer most projects only touch one of:

  • a hand-written OS kernel in C (preemptive scheduler, demand paging, copy-on-write fork, POSIX-style signals, pipes, per-process fd tables, a dual ELF + PE loader) that boots and runs under QEMU;
  • a Claude-Code-class agentic CLI — streaming TUI, tool-calling loop, permission gating, sub-agents, workflows, goal mode, context compaction;
  • a 16-backend AI gateway that fronts Claude, Qwen, Cursor, Kiro, Windsurf, Warp, Trae, Ollama, Codex and more behind one API, with cascade failover and circuit breaking — no vendor lock-in;
  • shipped through two parallel package channels (pip install khy-os / npm i -g @khy/os) with a self-healing, multi-language dev environment.

It's the kind of project that usually takes a team and a few years. Here it's one repo you can pip install in 30 seconds and run today.


⚡ 60-Second Tour

pip install khy-os        # or:  npm install -g @khy/os
khy                       # launch the agentic terminal
┌─ khy ─────────────────────────────────────────────── 18% ctx ─┐
│ › refactor the gateway adapter cascade and add a test          │
│                                                                │
│ 💭 思考 · 142 字 (Ctrl+O 展开)                                 │
│ ▸ 读取 · 编辑 · 执行命令 · 4 个步骤  ✓✓✓✓                       │
│   ✓ 完成                                                        │
│ ⠹ 生成中… · 12s · ~340 tok                                      │
└────────────────────────────────────────────────────────────────┘

📽️ Demo recording: drop an asciinema cast or GIF at assets/demo.gif and it renders here. See docs/launch/DEMO.md for the exact 45-second script that shows the kernel booting and the agent coding.


🚀 Quickstart

Install (pick one channel — both ship the identical workshop)

# pip channel
python3 -m pip install -U khy-os

# npm channel
npm install -g @khy/os

Run

khy                       # agentic terminal (the headline experience)
khy preflight             # diagnose PATH / Node / deps / claude before first run
khy ai "summarize this repo"      # one-shot AI, no REPL
khy gateway status        # see which of the 16 AI backends are live

Boot the actual OS

khy iso build --output dist/khy-os.iso     # build a bootable ISO
# then attach dist/khy-os.iso in QEMU / VMware / VirtualBox

Full guides: docs/指南/ · Windows + VMware: docs/指南/windows-vmware-清单.md


🧱 The Three Pillars

1. A real, hand-written kernel

Not a wrapper around Linux — a kernel built from boot sector up, validated under QEMU at every phase:

Capability Status
Preemptive scheduler + PS/2 keyboard + line-edited shell ✅ QEMU-tested
Demand paging · copy-on-write fork · fault isolation ✅ QEMU-tested
POSIX-style signals (sigaction/sigreturn) · pipes · per-process fd tables ✅ QEMU-tested
Standard streams (fd 0–2) · shell pipelines (|) ✅ QEMU-tested
Dual binary loader: ELF + PE ✅ QEMU-tested

Hybrid micro/monolithic design — performance paths in kernel space, I/O through IPC. Roadmap: real keyboard stdin and block-device persistence.

2. A Claude-Code-class agent in your terminal

  • Streaming Ink TUI with collapsible process groups, persisted thinking, real context-fill meter, and a live token/stall indicator.
  • A full tool-calling loop with structured results, loop detection, and max_tokens recovery — benchmarked against Claude Code / Qwen Code / OpenCode.
  • Permission gating, AskUserQuestion, sub-agents, goal mode, and a visual workflow editor with a native execution engine.

3. A 16-backend AI gateway

One endpoint in front of every model you already pay for — bring your own keys, keep your data local:

Claude · Qwen · Cursor · Kiro · Windsurf · Warp · Trae · Ollama · Codex · …

Cascade failover, circuit breakers, transient-error cooldown, and per-user multi-tenant isolation. Falls back automatically when a channel goes down.


🗺️ Architecture

            ┌──────────────────────────────────────────────┐
            │  khy CLI  ·  Ink TUI  ·  agent loop  ·  goals │   ← what you touch
            └───────────────┬──────────────────────────────┘
                            │
        ┌───────────────────┴────────────────────┐
        │   AI Gateway (16 adapters, failover)    │   ← bring your own keys
        │   Claude · Qwen · Cursor · Ollama · …   │
        └───────────────────┬─────────────────────┘
                            │
   ┌────────────────────────┴───────────────────────────┐
   │  Node backend  ·  tools  ·  workflows  ·  services  │   ← runtime
   └────────────────────────┬───────────────────────────┘
                            │
            ┌───────────────┴──────────────────┐
            │  khy kernel (C)  ·  ELF/PE loader │   ← the OS underneath
            │  scheduler · paging · IPC · fork  │
            └──────────────────────────────────┘

   Shipped as one workshop through two channels:  pip install khy-os  /  npm i -g @khy/os

🆚 How It Compares

khy Claude Code Ollama A Linux distro
Agentic coding CLI
Multi-provider, no lock-in ✅ (16) ❌ (1) ✅ (local only)
Self-hostable / bring-your-own-keys
Built-in AI gateway w/ failover
Hand-written OS kernel ✅ (a team)
One-command install

khy isn't trying to beat any one of these — it's the only project that is all of them at once, from the kernel to the agent.


📦 What's in the box

platform/    Python launcher + bundled runtime + shared JS    (pip entrypoint)
services/    Node backend: CLI, gateway, adapters, tools, workflows
apps/        Vue management UI + upper-layer apps
kernel/      The OS: boot, src, ELF/PE loader, MoonBit WASM, ISO build
software/    khyquant — the default built-in app (quant trading)
docs/        架构 (architecture) · 指南 (guides) · 修复记录 (changelogs)
packaging/   npm channel (@khy/os) mirroring the pip workshop

🛣️ Roadmap

  • Real keyboard stdin + block-device persistence in the kernel
  • Recorded boot-to-agent demo (assets/demo.gif)
  • More gateway adapters + adapter capability matrix in docs
  • Hosted playground

Changelog: CHANGELOG.md


⭐ Star history

Star History Chart


🤝 Contributing & community


📜 License

Source-available. khy is free to download, run, study, and use non-commercially — see LICENSE. Copying, modifying, or redistributing the source, and commercial use, require written permission from the author (孔浩原 / Kong Haoyuan). For commercial licensing or collaboration, reach out.


If a one-person AI-native OS is the kind of thing you want to exist,
star the repo — it's the cheapest way to tell the author to keep going.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

khy_os-0.1.94.tar.gz (9.6 MB view details)

Uploaded Source

Built Distribution

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

khy_os-0.1.94-py3-none-any.whl (10.8 MB view details)

Uploaded Python 3

File details

Details for the file khy_os-0.1.94.tar.gz.

File metadata

  • Download URL: khy_os-0.1.94.tar.gz
  • Upload date:
  • Size: 9.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for khy_os-0.1.94.tar.gz
Algorithm Hash digest
SHA256 bc80e2fc3e4c16c4b470c352836ef92e02406f46976c0246f36a48be85b73edb
MD5 1f793720a0263348da5c8bce4fa26d85
BLAKE2b-256 c34b197d261764044d6fbab547f8a3b9092806e8754c5a49b1cd142ab2c2ad27

See more details on using hashes here.

File details

Details for the file khy_os-0.1.94-py3-none-any.whl.

File metadata

  • Download URL: khy_os-0.1.94-py3-none-any.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for khy_os-0.1.94-py3-none-any.whl
Algorithm Hash digest
SHA256 c86778378099e0c142dbe9fcde68e908a6a4c84a525542e46749d359d602fadf
MD5 cc3f32b71856f5e11c5131cd470c4dd8
BLAKE2b-256 3d928c657e655fbbe55a1707ecd118970ffdc953e2f88ebe5c692da041698e3e

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