Files
2125_GCE/D_DRIVE_FOLDERS.md
T
2026-07-09 12:54:44 -04:00

6.1 KiB
Executable File

D Drive Folder Structure for SuperDave Glyph System

Root: D:\SuperDave_2125\

Core Folders

D:\SuperDave_2125\
├── docs\                           ← Documentation
│   ├── OPERATIONS.md               ← Full workflow guide
│   ├── API_REFERENCE.md            ← Endpoint details
│   └── PINOKIO_INTEGRATION.md      ← How to connect models
│
├── configs\                        ← Configuration files
│   └── model_config.json           ← Model settings
│
├── logs\                           ← System logs
│   └── [system logs]
│
├── glyphs\                         ← Glyph data files (on D drive)
│   ├── supercharged_glyphs.json    ← 600 glyphs with 152 superpowers
│   ├── superpowers.json            ← 152 superpowers
│   ├── super_registry.py           ← Glyph registry module
│   ├── superpower_registry.py      ← Superpower registry module
│   ├── superpower_assigner.py      ← Power assignment algorithm
│   └── specialized_types.py        ← Glyph type definitions
│
├── gx_compiler\                    ← Python → .gx binary compiler
│   ├── compressor.py               ← GSZ3 compression
│   ├── gx_packer.py                ← XIC binary format
│   ├── segmenter.py                ← Source code segmenter
│   └── manifest_builder.py         ← GX manifest generation
│
├── gx_lain\                        ← LAIN cognition engine (8-lane)
│   ├── runtime.py                  ← Main execution runtime
│   ├── lane_processors.py          ← 8-lane symbolic processing
│   └── lain_glyph_bridge.py        ← Glyph ↔ LAIN integration
│
├── dual_layer\                     ← Dual-layer symbolic integration
│   ├── router.py                   ← Glyph → Model routing
│   ├── symbolic_engine.py          ← Glyph activation & resonance
│   └── vram_manager.py             ← VRAM + resonance management
│
├── runtime_executor\               ← GX binary loader
│   ├── gx_loader.py                ← .gx file loader
│   ├── runner.py                   ← GX execution runner
│   └── context.py                  ← Execution context
│
├── glyphos\                        ← Symbolic pipeline
│   ├── cognitive_kernel.py         ← Cognitive processing
│   ├── symbolic_pipeline.py        ← Symbolic processing
│   └── events.py                   ← Event system
│
├── xic_extensions\                 ← XIC VM extensions
│   ├── compressed_engine.py        ← Compressed execution
│   ├── segment_runtime.py          ← Segment runtime
│   └── execution_tracer.py         ← Execution tracing
│
├── integrations\                   ← External integrations
│   └── fedmart\                    ← FedMart telemetry
│       ├── glyph_telemetry.py      ← Glyph activation telemetry
│       └── xic_adapter.py          ← XIC telemetry adapter
│
├── codex_lineage\                  ← Grammar & lineage
│   ├── grammar_hooks.py            ← Grammar hooks
│   ├── contributor_index.py        ← Contributor tracking
│   ├── lineage_model.py            ← Lineage tracking
│   └── epoch_mapper.py             ← Epoch mapping
│
├── LLMCompress\                    ← LLM compression utilities
│   ├── llm_compressor.py           ← LLM compression
│   └── llm_adapter.py              ← LLM adapter
│
├── fedmart_ui\                     ← Web dashboard
│   ├── dashboard.html              ← Telemetry dashboard
│   └── [static assets]
│
├── tests\                          ← Unit tests
│   ├── test_supercharged_registry.py
│   ├── test_lain_glyph_bridge.py
│   ├── test_cognitive_kernel.py
│   └── validate_superpower_assignment.py
│
├── integration_tests\              ← Integration tests
│   ├── run_all_tests.py
│   ├── test_compile.py
│   ├── test_run.py
│   └── test_inspect.py
│
├── benchmark\                      ← Benchmarking
│   ├── glyphrunner_bench.py
│   ├── run_all_benchmarks.py
│   └── benchmark_results.json
│
├── programs\                       ← Pre-built .gx programs
│   ├── bench_glyph_v0.gx.json
│   ├── bench_glyph_v1.gx.json
│   └── ... (50+ versions)
│
├── server.py                       ← FastAPI backend (copy to D:\)
├── compress_and_run.py             ← Enhanced execution program
├── glyph_explorer.py               ← Visual glyph explorer
├── glyph_runner.py                 ← Glyph runner script
├── dual_layer_integration.py       ← Dual-layer integration
├── glyph_model_integration.py      ← Model integration
└── TerminalLauncher.py             ← Windows launcher

Output Paths (Windows)

C:\SuperDave_Projects\outputs\
├── images\                         ← Forge image outputs
├── videos\                         ← Janus video outputs
└── [other outputs]

Log Paths (Windows)

C:\SuperDave_Projects\logs\
└── [system logs]

Key Files

File Purpose Location
supercharged_glyphs.json 600 glyphs with 152 superpowers D:\SuperDave_2125\glyphs\
superpowers.json 152 superpowers D:\SuperDave_2125\glyphs\
compress_and_run.py Enhanced execution program D:\SuperDave_2125\
glyph_explorer.py Visual glyph explorer D:\SuperDave_2125\
server.py FastAPI backend D:\SuperDave_2125\
dual_layer_integration.py Dual-layer endpoints D:\SuperDave_2125\

Notes

  • All paths use Windows drive letter D:\ for SuperDave_2125
  • On WSL, use /mnt/d/SuperDave_2125/ as equivalent
  • Glyph data is stored in glyphs/ folder
  • Pre-built programs are in programs/ folder
  • Documentation is in docs/ folder