mirror of
https://github.com/allaunthefox/BioSight.git
synced 2026-08-08 19:55:46 +00:00
Every function in all 5 phi modules now has: - Google-style docstring with Args/Returns/Examples - Verified behavior via doctest examples (46 total) - Self-verification assertion blocks on direct execution Verification results: charclass: 10 doctests, 16 assertions — PASS ast_parse: 21 doctests, 7 assertions — PASS consistency: 6 assertions — PASS embed: multiple assertions — PASS output: 15 doctests, 16 assertions — PASS CLI wrapper: 3 checks — PASS End-to-end: 9 equation domains — PASS Also added: - .opencode/opencode.jsonc (gemma4 MCP config) - phi/AGENTS.md (module-level contract) - phi/test_phi.py (unittest test file) - phi/encoding_rationale.md (design docs) - dag/ (project dependency graph) - harness/ (Lean formalism constraints) - 7-Pipeline/ (rigour verification harness) Build: python3 -W error -m py_compile — 0 warnings
33 lines
828 B
Markdown
33 lines
828 B
Markdown
# Project DAG - BioSight/SilverSight
|
|
|
|
## Visual Representation (Mermaid)
|
|
```mermaid
|
|
graph TD
|
|
%% Core Foundation
|
|
FP[FixedPoint Q16_16] --> RRC[RRC Classification]
|
|
FP --> AVM[AVMIsa Output Boundary]
|
|
|
|
%% Logic Flow
|
|
RRC --> Semantics[Semantics Core]
|
|
Semantics --> DNA[DNA Encoding Pipeline]
|
|
|
|
%% Infrastructure & Shims
|
|
DNA --> Rigour[Rigour Pipeline]
|
|
Rigour --> Lean[SilverSight Formalization]
|
|
|
|
%% Verification Loop
|
|
Lean --> Build{Lake Build}
|
|
Build -- Fail --> Audit[Audit/Fix Loop]
|
|
Audit --> Lean
|
|
Build -- Pass --> Verified((Verified))
|
|
```
|
|
|
|
## Node Status Registry
|
|
- **FP**: 🟢 Verified
|
|
- **RRC**: 🟡 Auditing
|
|
- **AVM**: ⚪ Pending
|
|
- **Semantics**: ⚪ Pending
|
|
- **DNA**: ⚪ Pending
|
|
- **Rigour**: ⚪ Pending
|
|
- **Lean**: ⚪ Pending
|
|
- **Audit**: ⚪ Pending
|