This repo is complete as a local runtime and control plane. The last external dependency is the actual flagship GGUF or .llamafile artifact produced from the chosen upstream model family.
Once that artifact exists and is registered, the authoritative validation path is:
scripts/operator/validate_flagship_runtime.shIt proves the active local runtime can:
- resolve the configured adapter
- locate the native binary or bundled exemplar artifact
- pass the runtime doctor
- answer a direct prompt
- complete a benchmark run
- write runtime receipts locally
scripts/operator/setup_local_user_runtime.sh
scripts/operator/validate_flagship_runtime.shscripts/operator/register_real_gguf_artifact.sh --gguf /absolute/path/model.gguf --binary /absolute/path/llama-cli
scripts/operator/validate_flagship_runtime.shscripts/operator/register_real_gguf_artifact.sh --llamafile /absolute/path/model.llamafile
scripts/operator/validate_flagship_runtime.shIf the validation script fails in command mode, the failure is not in the local control plane by default. It usually means one of these external conditions is still unresolved:
- the GGUF path is wrong
- the binary path is wrong
- the
.llamafileis missing or not executable - the upstream artifact itself does not run correctly on the machine
That is the real final boundary between this repo and the chosen upstream model family/toolchain.