This repository hosts the GTO/WITT prototype and supporting modules. Everything runs locally with no external dependencies.
Run the end-to-end demonstration to see block creation, dust issuance, and maturation:
python gto/main.pyA dependency-free dashboard exposes the WITT control plane (transactions split, VRF block forging, automatic contract stubs).
python dashboards/backend/server.py 8088
# puis ouvrir http://localhost:8088/Explore a lightweight "No Man's Sky"-like generator that also touches the local GTO/WITT JSON API. The module is offline friendly and reports unreachable endpoints without crashing.
python apps/game/nms_like.pyA tiny WebGL starfield renderer powered by engine3d/engine.js and a minimal
asset pipeline:
python engine3d/pipeline.py
python -m http.server --directory engine3d 8080
# ouvrir ensuite http://localhost:8080/Un audit express (version UE4 + shaders AHR) est disponible pour préparer l'intégration du fork AHR dans CODEX :
python scripts/ahr_audit.py --ref release
python scripts/ahr_audit.py --ref release --json .tmp/ahr-audit.jsonSurveillez les mises à jour du fork AHR (ou de n'importe quel repo GitHub) et collectez des idées/graphismes via recherche web :
python scripts/ai_auto_agent.py --repo cadviz/AHRUnrealEngine --ref release --save-state
python scripts/neuronal_searcher.py "stylised sci-fi emissive graphisms" --max-results 5Generate self-contained .pyz archives (PyInstaller-like, stdlib only) for the
demo and game modules:
python scripts/package.py # construit dist/gft-windows.pyz, dist/gft-linux.pyz, dist/gft-macos.pyz
python scripts/package.py --single linux # ne construit qu'une cibleUn squelette PHP minimal expose /api/v2/health via un front-controller, avec coexistence legacy (/api/v1/* stubs/proxy) et middleware de correlation-id + logs structurés.
APP_ENV=dev php -S 0.0.0.0:8000 -t public public/index.phpPuis ouvrir http://localhost:8000/api/v2/health (répond ok).
./vendor/bin/phpunit --testdox tests