SlopScore
00 crowd

AstryxOS (github.com/me1iissa/AstryxOS)

UEFI-native x86_64 research operating system written in Rust — NT-inspired kernel, Linux ABI compat, in-kernel X11, Firefox target
Rust · ★ 4 · 0 forks · MIT · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)other
listed 3 hours ago by me1iissa · last checked 3 hours ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-11: AstryxOS, a UEFI research OS in Rust that runs upstream Firefox; the README says the bulk of its Rust "was written by Claude agents working in parallel worktrees". 4 stars; MIT license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as me1iissa. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
UEFI-native x86_64 research operating system written in Rust — NT-inspired kernel, Linux ABI compat, in-kernel X11, Firefox target
created
2026-04-20 · pushed 3 weeks ago · 900 commits · 3 contributors
languages
Rust 82%Python 13%Shell 5%C 1%Assembly 0%Linker Script 0%
paperwork
code of conductcode of conduct filecontributinglicensereadme 100% health
dependencies
✓ 18 deps, none with known advisories · OSV.dev, checked 3 hours ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
other
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
assemblycgdblinker-scriptmakefilepythonrustshell
license (detected)
mit

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: AstryxOS, a UEFI research OS in Rust that runs upstream Firefox; the README says the bulk of its Rust "was written by Claude agents working in parallel worktrees". It carries the MIT license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README (read the rest on GitHub)

AstryxOS

A UEFI-native x86_64 research operating system written in Rust, with an NT-inspired kernel that runs real Linux ELF binaries.

Build License: MIT Tests Rust

AstryxOS desktop — Orbit shell, File Explorer, Text Editor, Settings, Calculator and Terminal running on the in-kernel compositor


AstryxOS is a from-scratch operating system kernel (codename Aether) that takes the NT subsystem model as its architectural inspiration: a microkernel-ish executive at the centre, with personality subsystems layered above the HAL that give each application binary the illusion of running on its native operating system. The practical result is that unmodified upstream binaries run on AstryxOS — and the headline result is that upstream Firefox (musl ESR-115, GTK3) now runs as a windowed application on the in-kernel X11 compositor and renders real HTTPS web content, with no source modifications to the browser. The project is also an experiment in agentic software development: the bulk of the ~200 KLOC of Rust (kernel, bootloader, and the in-tree test suite) was written by Claude agents working in parallel worktrees, with human review at merge time.

Upstream Firefox (musl ESR-115, GTK3) rendering example.com over HTTPS on the AstryxOS in-kernel X11 compositor — an unmodified browser binary, real web content, verified pixels

Upstream Firefox rendering example.com over HTTPS on AstryxOS — chrome, TLS lock, and page content all painted by the in-kernel X11 server and software compositor. The browser binary is unmodified.


Current status

  • Upstream Firefox (musl ESR-115, GTK3) runs windowed on the in-kernel X11 compositor and renders real HTTPS web content — for example.com the browser chrome, the TLS-secured navigation, and the page content all paint to verified pixels, with an unmodified browser binary. Heavier sites (e.g. Wikipedia) load over TLS and paint the browser chrome; full content compositing for large pages is the active focus.
  • Unmodified glibc- and musl-linked ELF binaries run end-to-end (dynamic linker fully wired)
  • Full TCP/IP stack (IPv4, IPv6, 3WHS, FIN, retransmit, congestion control, DHCP, DNS) — Firefox fetches real sites over HTTPS
  • In-kernel X11 server with RENDER, MIT-SHM, XKB, XFIXES, SYNC, BIG-REQUESTS extensions, driving a software compositor that blits to the framebuffer
  • 193 Linux syscalls dispatched; 50+ native Aether syscalls
  • FAT32 read-write, ext2 read-only, NTFS read-only, procfs, tmpfs
  • ~130 KLOC across 200+ Rust source files in kernel/src (including a 56K-line in-tree test suite); ~200 KLOC of Rust repo-wide

Features

Kernel subsystems
Subsystem Description
arch/ x86_64: GDT, IDT, LAPIC, SMP, context switch, ISR delivery
mm/ PMM, VMM, slab heap, page tables, ASLR, OOM killer
sched/ SMP round-robin + priority scheduler (CoreSched)
proc/ Process/thread control blocks, ELF loader (static, PIE, dynamic), PE32+ loader
vfs/ VFS layer: ramfs, FAT32, ext2, NTFS, procfs, tmpfs
net/ Full TCP/IP: IPv4, IPv6, TCP, UDP, ARP, ICMP, DNS, DHCP
x11/ In-kernel X11 server with 7 extensions
ipc/ Pipes, Unix sockets, SysV SHM, timerfd, signalfd, inotify, PTY
security/ Capabilities (capget/capset), rlimits, prctl, PR_SET_NO_NEW_PRIVS
gdi/ GDI engine: device contexts, surfaces, BitBlt, text, regions
gui/ Window manager, compositor, terminal emulator, desktop
nt/ NT personality subsystem (Win32 ABI stub)
ke/ Core executive: spinlocks, DPCs, deferred work, wait/notify
ob/ Object manager: handles, reference counting
hal/ Hardware Abstraction Layer
drivers/ ATA PIO, AHCI DMA, virtio-blk, virtio-net, e1000, AC97, PS/2, xHCI, serial
Syscall ABIs and filesystems
ABI Dispatch Syscalls
Linux x86_64 syscall instruction 193 handled
Native Aether INT 0x2E 50+ native calls
Win32 PE32+ INT 0x2E (NT personality) stub subsystem
Filesystem Access Notes
ramfs read/write Root VFS, in-memory
FAT32 read/write Cluster allocator; create, write, truncate, unlink
ext2 read-only
NTFS read-only
procfs read /proc/self, /proc/PID, cpuinfo, meminfo, uptime, maps, fd/
tmpfs read/write Mounted at /tmp via sys_mount
Hardware drivers
Category Drivers
Block ATA PIO, AHCI DMA, virtio-blk, partition table
Network e1000, virtio-net
Audio AC97 (/dev/dsp)
Input PS/2 keyboard, PS/2 mouse
Display Framebuffer, VMware SVGA stub
USB xHCI enumeration (Tier 1 probe)
Serial 16550 UART
Timer PIT, LAPIC, HPET, RTC

Getting started

Full step-by-step instructions are in docs/QUICKSTART.md.

Short version (Ubuntu 22.04 / WSL2):

# 1. Install system dependencies
sudo apt-get install -y build-essential gcc musl-tools mtools qemu-system-x86 ovmf python3

# 2. Install Rust nightly
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source "$HOME/.cargo/env"
rustup toolchain install nightly && rustup component add rust-src --toolchain nightly

# 3. Clone and build
git clone <repo-url> AstryxOS && cd AstryxOS
./build.sh release
bash scripts/create-data-disk.sh

# 4. Run the test suite
python3 scripts/watch-test.py --idle-timeout 60 --hard-timeout 300

A passing run ends with [PASS] for the headless integration suite.

Running Firefox

Upstream Firefox runs as a windowed app on the in-kernel X11 compositor via the QEMU harness (KVM recommended; SMP=1 for the browser):

# Boot windowed Firefox against a real site (renders example.com content to verified pixels)
python3 scripts/qemu-harness.py start \
    --features firefox-test-core,kdb --smp 1 --ff-gui \
    --ff-url https://example.com

# Capture a screenshot of the live framebuffer
python3 scripts/qemu-harness.py screendump <sid> firefox.png

See docs/FIREFOX_PORT_ROADMAP.md for the milestone tracker and docs/HARNESS.md for the full harness reference.


Documentation

Document Purpose
docs/QUICKSTART.md First-build guide; system dependencies, Rust setup, OVMF troubleshooting
docs/HARNESS.md qemu-harness.py subcommand reference for interactive debugging
docs/DEVELOPMENT_PLAN.md Wave-based roadmap; current state, completed waves, next priorities
docs/FIREFOX_PORT_ROADMAP.md Firefox porting milestone tracker
docs/SOURCE_REVIEW_2026-04-20.md Architecture snapshot from 2026-04-20 code review
CONTRIBUTING.md Contributor routing page: human vs. AI agent guidance
HUMAN_CONTRIBUTING.md Human contributor workflow: branches, commits, PRs, style
AI_CONTRIBUTING.md AI agent guide: worktrees, watchdog, pitfalls, test extension
SECURITY.md Vulnerability reporting and disclosure policy
CODE_OF_CONDUCT.md Contributor Covenant v2.1

Project layout

AstryxOS/
├── bootloader/         # AstryxBoot — custom UEFI bootloader
├── kernel/
│   └── src/
│       ├── arch/       # x86_64: GDT, IDT, LAPIC, SMP, context switch
│       ├── drivers/    # ATA, AHCI, virtio-blk/net, AC97, PS/2, xHCI, serial
│       ├── gdi/        # GDI engine: DC, surfaces, BitBlt, text, regions
│       ├── gui/        # Window manager, compositor, terminal, desktop
│       ├── hal/        # Hardware Abstraction Layer
│       ├── ipc/        # Pipes, Unix sockets, SysV SHM, timerfd, signalfd
│       ├── ke/         # Core executive: spinlocks, DPCs, wait/notify
│       ├── mm/         # PMM, VMM, heap, page tables, ASLR, OOM killer
│       ├── net/        # TCP/IP stack, DNS, DHCP, e1000, virtio-net
│       ├── nt/         # NT personality subsystem (Win32 ABI)
│       ├── ob/         # Object manager (handles, reference counting)
│       ├── proc/       # Process and thread control blocks, ELF/PE loader
│       ├── sched/      # CoreSched — SMP round-robin + priority
│       ├── security/   # Capabilities, rlimits, prctl
│       ├── subsys/
│       │   ├── aether/ # Native Aether syscall dispatch
│       │   ├── linux/  # Linux syscall dispatch (193 syscalls)
│       │   └── win32/  # Win32 syscall dispatch stub
│       ├── syscall/    # Syscall entry point and routing
│       ├── vfs/        # VFS layer: ramfs, FAT32, ext2, NTFS, procfs, tmpfs
│       ├── x11/        # In-kernel X11 server
│       └── test_runner.rs  # 143 headless integration tests
├── shared/             # Types shared between bootloader and kernel
├── tools/              # Host-side utilities
├── scripts/
│   ├── watch-test.py       # Test watchdog — primary CI entry point
│   ├── qemu-harness.py     # Agentic QEMU session manager
│   ├── create-data-disk.sh # Build build/data.img
│   ├── build-musl.sh       # Build musl libc for the data disk
│   ├── install-glibc.sh    # Install glibc dynamic linker + libs
│   └── run-qemu.sh         # Manual QEMU launcher (interactive)
├── docs/
│   ├── QUICKSTART.md
│   ├── HARNESS.md
│   ├── DEVELOPMENT_PLAN.md
│   ├── FIREFOX_PORT_ROADMAP.md
│   └── SOURCE_REVIEW_2026-04-20.md
├── build.sh            # Manual build script
└── rust-toolchain.toml # Pins nightly toolchain version

Wave summary

Completed waves (1–10)
Wave Theme Key deliverables
1 P0/P1 punch-list Bootloader errors, execve leak fix, procfs VFS, virtio-net, inotify, OOM killer
2 Driver hardening Driver stop sweep, ASLR (ET_DYN + PE DYNAMIC_BASE), xHCI enumeration
3 Storage and audio FAT32 read/write cluster allocator, AC97 /dev/dsp
4 Syscall refactor + tmpfs Split 7175-line syscall/mod.rs; sys_mount + tmpfs at /tmp
5 glibc dynamic linker ld-musl-x86_64.so.1 + glibc libs on data disk; glibc hello runs
6 ELF completeness DT_RELR, DT_GNU_HASH, statx, getrandom, mremap, robust_list, membarrier
7 Debug harness qemu-harness.py Tier 1 (session/log) + Tier 2 (GDB RSP stub)
8 X11 extensions MIT-SHM, BIG-REQUESTS, XKB, XFIXES, SYNC, RENDER; glibc stack-canary fix
9 Firefox infrastructure X11 client oracle PASS; Firefox on data disk; C++ hello; MAP_FIXED mmap investigation
10 Firefox bring-up Windowed upstream Firefox (musl ESR-115, GTK3) on the in-kernel X11 server; HTTPS fetch over the TCP/IP stack; example.com content rendered to verified pixels; SMP=1 render-path fixes (scheduler quarantine throttle, recvfrom orderly-EOF)

Contributing

See CONTRIBUTING.md for the contributor workflow.

For what to work on:

The roadmap project shows active waves and backlog.

Human contributors: HUMAN_CONTRIBUTING.md. AI agents: AI_CONTRIBUTING.md.


License

MIT. See LICENSE.

Copyright (c) 2026 Melissa and AstryxOS Contributors.


Acknowledgements

  • ReactOS — clean-room NT ABI reference implementation (MIT licensed)
  • musl libc authors — clean, auditable C library that runs on Aether today
  • Linux kernel authors — syscall ABI and POSIX semantics reference
  • Mozilla — Firefox ESR is the target application that drives RC1 requirements
  • uefi-rs maintainers — Rust UEFI bindings used in the bootloader
Scan report · 2026-09-11
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report