cybersec-audit-trail-stack / runtime_README.md
HirModel's picture
Upload 21 files
5729d24 verified
|
Raw
History Blame Contribute Delete
2.74 kB
# 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