Metadata-Version: 2.4
Name: fyodoros
Version: 0.9.0
Summary: FyodorOS: A Compiled AI Microkernel with Native Desktop Interface
Author-email: Kiy-K <khoitruong071510@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai
Requires-Dist: google-generativeai
Requires-Dist: anthropic
Requires-Dist: gradio
Requires-Dist: ddgs
Requires-Dist: playwright==1.41.2
Requires-Dist: rich
Requires-Dist: typer
Requires-Dist: requests
Requires-Dist: psutil
Requires-Dist: cryptography
Requires-Dist: argon2-cffi
Requires-Dist: docker>=6.0.0
Requires-Dist: kubernetes>=28.0.0
Requires-Dist: chromadb>=0.4.0
Requires-Dist: pytest
Requires-Dist: pytest-cov
Requires-Dist: pytest-mock
Requires-Dist: nuitka
Requires-Dist: ordered-set
Requires-Dist: fastapi>=0.100.0
Requires-Dist: uvicorn[standard]>=0.20.0
Requires-Dist: websockets>=11.0
Dynamic: license-file

# FyodorOS

[![Version](https://img.shields.io/badge/version-v0.8.0-blue.svg)](https://github.com/Kiy-K/FyodorOS/releases)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

    ███████╗██╗   ██╗ ██████╗ ██████╗  ██████╗ ██████╗
    ██╔════╝╚██╗ ██╔╝██╔═══██╗██╔══██╗██╔═══██╗██╔══██╗
    █████╗   ╚████╔╝ ██║   ██║██║  ██║██║   ██║██████╔╝
    ██╔══╝    ╚██╔╝  ██║   ██║██║  ██║██║   ██║██╔══██╗
    ██║        ██║   ╚██████╔╝██████╔╝╚██████╔╝██║  ██║
    ╚═╝        ╚═╝    ╚═════╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝
    A Compiled AI Microkernel with Native Desktop Interface

The Operating System for Autonomous AI Agents.

## 🚀 Vision

We believe that for AI Agents to be truly useful and safe, they need an environment built for them. FyodorOS provides:

* **Structured Observation:** The OS state (Filesystem, Processes, Users) is a queryable DOM tree.
* **Cognitive Loop:** Built-in ReAct (Reasoning + Acting) loop at the kernel level.
* **Safety Sandbox:** A strict, rule-based verification layer that constraints Agent actions before execution.
* **Agent-Native Apps:** Standard tools (browser, explorer, calc) that return structured JSON/DOM instead of plain text.
* **Cloud Integration (v0.5.0):** Native Docker and Kubernetes support.
* **Long-Term Memory (v0.7.0):** Persistent semantic storage allowing agents to learn and recall information.
* **Desktop Interface (v0.8.0)** 🚀 [NEW]: A native desktop application bridging the Python kernel with a modern React UI.

## 📦 Installation

### Option A: User (Recommended)

Download the installer for Windows, Mac, or Linux from the [Releases](https://github.com/Kiy-K/FyodorOS/releases) page.

### Option B: Developer (Legacy/Headless)

You can install FyodorOS as a Python package for headless or CLI-only usage.

```bash
pip install fyodoros
playwright install chromium
```

## 🛠️ Development

To build the full Desktop experience from source, you need Node.js, Rust, and Python installed.

1. **Clone the Repository**

```bash
git clone https://github.com/Kiy-K/FyodorOS.git
cd fyodoros
```

2. **Install Frontend Dependencies**

```bash
cd gui
npm install
```

3. **Run in Development Mode**

```bash
npm run tauri dev
```

## 🗺️ Roadmap

See our detailed trajectory in [ROADMAP.md](./ROADMAP.md).

## 🏗️ Architecture

FyodorOS v0.8.0 adopts a hybrid architecture to combine the flexibility of Python AI libraries with the performance and native capabilities of Rust.

```mermaid
graph LR
    User[User] <--> React["React UI (Shadcn)"]
    React <--> Tauri["Tauri (Rust Sidecar)"]
    Tauri <--> Nuitka["Nuitka (Compiled Python Kernel)"]
    Nuitka <--> System["Host System (Sandboxed)"]
```

* **React UI**: A modern web-based interface for visualizing the OS state and Agent actions.
* **Tauri**: Handles window management and communicates with the Python kernel via a sidecar protocol.
* **Nuitka Kernel**: The Python core compiled into a standalone binary for performance and security, running the Agent loop and managing system resources.

## 🤝 Contributing

FyodorOS is an experimental sandbox. We welcome contributions to:

* Expand the standard library of Agent Apps.
* Improve the DOM representation of system state.
* Implement more complex Sandbox rules.

---

*Built for the future of Autonomous Computing.*
