Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,45 @@
# βš–οΈ arbiter

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![Status: Experimental](https://img.shields.io/badge/Status-Experimental-orange)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT "License: MIT - Open source software license")
![Status: Experimental](https://img.shields.io/badge/Status-Experimental-orange "Status: Experimental - This project is in early development")

> [!CAUTION]
> This project is currently **experimental** and is not recommended for production use. Use with caution in development environments only.

Dual natureβ€”combining bare-metal virtualized hardware management (aSHARD VRAM pinning) with quantum-accelerated Kubernetes scheduling.

## πŸ“– Overview

`arbiter` is a specialized orchestration layer designed for high-performance computing environments. It bridges the gap between low-level hardware management and cloud-native scheduling, providing a unified interface for managing virtualized resources with precision.

## πŸ—οΈ Architecture

```mermaid
graph TD
subgraph CloudNative [Cloud Native Layer]
K8s[Kubernetes Cluster]
Workloads[AI Workloads]
end

subgraph Orchestration [Orchestration Layer]
Arbiter((Arbiter Core))
QS[Quantum-Accelerated Scheduler]
end

subgraph Infrastructure [Infrastructure Layer]
BM[Bare-Metal Hardware]
VRAM[aSHARD VRAM Pinning]
end

Workloads --> K8s
K8s <--> QS
QS <--> Arbiter
Arbiter <--> VRAM
VRAM <--> BM

style Arbiter fill:#f96,stroke-width:4px
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The background color #f96 (light orange) has a low contrast ratio with white text (approx. 1.6:1), which fails WCAG AA standards (minimum 4.5:1). Since this PR specifically aims to improve accessibility, explicitly setting the text color to black (#000) ensures the label remains readable regardless of the user's GitHub theme or Mermaid's default text color settings.

Suggested change
style Arbiter fill:#f96,stroke-width:4px
style Arbiter fill:#f96,stroke-width:4px,color:#000

```
Comment on lines +17 to +41
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To further align with the goal of improving accessibility, consider providing a text-based alternative for the Mermaid architecture diagram. While visual diagrams are helpful, they are often inaccessible to screen reader users. A brief textual summary of the system layers and data flow (perhaps within a <details> block) would ensure the architecture is understandable for all developers.


## πŸš€ Key Features

- πŸ—οΈ **Infrastructure Awareness**: Directly manages bare-metal resources for maximum performance.
Expand Down