| # Primordial OS Runtime Prototype |
|
|
| **Created and Developed by Collin D. Weber.** |
|
|
| A runnable user-space **HIR Γ OAM** runtime prototype for the Rice-Facing AI-in-Health Review Showcase. |
|
|
| --- |
|
|
| ## What This Is |
|
|
| The Primordial OS Runtime Prototype demonstrates the intersection of: |
|
|
| - **HIR** β Honesty, Integrity, Respect |
| - **OAM** β Outsourced Agency Model |
| - **Resonance** β the governing stability threshold produced when fidelity and cohesion reinforce under pressure |
|
|
| This is a user-space prototype written in Python. It is not a bootable operating system. It is not a kernel. It is pre-validation architecture demonstrating runtime concepts. |
|
|
| **Governing stability threshold:** Resonance. |
|
|
| --- |
|
|
| ## Limitations |
|
|
| See [LIMITATIONS.md](LIMITATIONS.md) for the full statement of boundaries. |
|
|
| This prototype: |
| - Is **not** clinical software |
| - Is **not** a medical device |
| - Does **not** diagnose, treat, cure, or make medical decisions |
| - Does **not** replace clinicians, therapists, hospice, palliative care, emergency services, or legal counsel |
|
|
| --- |
|
|
| ## Review Packet |
|
|
| | Document | Purpose | |
| |---|---| |
| | [SHOWCASE_README.md](SHOWCASE_README.md) | Full architecture overview for reviewers | |
| | [WHAT_THIS_PROVES.md](WHAT_THIS_PROVES.md) | What the prototype demonstrably shows | |
| | [WHAT_THIS_DOES_NOT_PROVE.md](WHAT_THIS_DOES_NOT_PROVE.md) | Hard scope boundaries | |
| | [RUN_COMMANDS.md](RUN_COMMANDS.md) | All runnable commands | |
| | [LIMITATIONS.md](LIMITATIONS.md) | Regulatory and clinical scope limits | |
|
|
| --- |
|
|
| ## Project Structure |
|
|
| ``` |
| Primordial_OS_Runtime/ |
| βββ README.md |
| βββ SHOWCASE_README.md |
| βββ WHAT_THIS_PROVES.md |
| βββ WHAT_THIS_DOES_NOT_PROVE.md |
| βββ RUN_COMMANDS.md |
| βββ CLAUDE.md |
| βββ LIMITATIONS.md |
| βββ CHANGELOG.md |
| βββ MANIFEST.json |
| βββ pyproject.toml |
| βββ src/ |
| β βββ primordial_os/ |
| β βββ hir_kernel.py |
| β βββ oam_detector.py |
| β βββ safety_engine.py |
| β βββ runtime.py |
| β βββ memory_gate.py |
| β βββ audit_log.py |
| β βββ audit_store.py |
| β βββ cli.py |
| β βββ release_builder.py |
| βββ tests/ |
| βββ examples/ |
| βββ audit_logs/ |
| ``` |
|
|
| --- |
|
|
| ## Setup |
|
|
| ``` |
| pip install -e . |
| ``` |
|
|
| Requires Python 3.11+. If you are running tests directly from the extracted folder without installing the package first, use `PYTHONPATH=src python -m pytest` on Linux/macOS or `$env:PYTHONPATH="src"; py -m pytest` in PowerShell. |
|
|
| --- |
|
|
| ## Quick Run |
|
|
| ``` |
| py -m pytest |
| py -m primordial_os.cli run-scenario green |
| py -m primordial_os.cli run-scenario oam-red |
| ``` |
|
|
| See [RUN_COMMANDS.md](RUN_COMMANDS.md) for the full command list. |
|
|
| --- |
|
|
| ## Author |
|
|
| Collin D. Weber |
|
|