mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
WEFT OS is a Wayland compositor and application runtime where every app is a WebAssembly component rendered in an isolated Servo WebView.
ipc.rs tests (4 tests): - request_msgpack_roundtrip: LaunchApp serializes and deserializes with correct field values. - response_msgpack_roundtrip: LaunchAck round-trips through MessagePack. - frame_write_read_roundtrip: write_frame encodes a 4-byte LE length header + body; read_frame decodes the framed request correctly. - read_frame_eof_returns_none: empty stream returns None without error. main.rs tests (5 tests): - registry_launch_increments_id: each launch returns a strictly increasing session ID. - registry_terminate_known_session: terminate returns true and state transitions to NotFound. - registry_terminate_unknown_returns_false: terminate on missing ID returns false. - registry_running_ids_reflects_live_sessions: running_ids returns all active sessions; terminated sessions are removed. - registry_state_not_found_for_unknown: querying an unknown session ID returns AppStateKind::NotFound. Also extends scripts/wsl-test.sh to run weft-appd tests alongside weft-compositor tests. |
||
|---|---|---|
| .github/workflows | ||
| crates | ||
| docs | ||
| infra | ||
| protocol | ||
| scripts | ||
| .gitattributes | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| justfile | ||
| README.md | ||
| rust-toolchain.toml | ||
WEFT OS
WEFT OS is a Linux-based operating system effort built around a Smithay compositor, a Servo-rendered system shell, and a Wasmtime-based application runtime.
Current repository scope
This repository currently contains:
- the baseline Rust workspace
- public engineering documentation derived from the authoritative blueprint
- initial design documents for the shell protocol boundary and the Wasm–Servo channel
- local and CI validation paths for repository bootstrap work
It does not yet contain a compositor, shell, or application runtime implementation.
Source of truth
The authoritative technical reference for this repository is docu_dev/WEFT-OS-COMPREHENSIVE-BLUEPRINT.md.
Historical blueprint documents exist in docu_dev/, but they are not implementation authority where they conflict with the comprehensive blueprint.
Privacy boundary
docu_dev/ is a private coordination area used during development. It is intentionally ignored by git and is not part of the tracked public repository surface.
Development model
- Primary development host: Windows workstation
- Primary runtime target: Linux VM or QEMU guest
- Core system language: Rust
Validation
On Windows PowerShell:
./infra/scripts/check.ps1
On Linux:
./infra/scripts/check.sh
Repository layout
crates/ Rust workspace members
docs/ Public engineering documentation
infra/ Validation scripts and VM workflow material