Structural Explainability (SE) Manifest Schema
This repository defines the canonical SE_MANIFEST.toml schema
for the Structural Explainability ecosystem.
It is the first dependency layer in the SE repository graph.
It has no upstream SE dependencies and exists
so foundational repositories can validate their
manifests without depending on se-constitution.
The schema is maintained in:
Show command reference
Open a machine terminal where you want the project:
git clone https://github.com/structural-explainability/se-manifest-schema
cd se-manifest-schema
code .# if strange errors, clean uv cache
# uv cache clean
uv self update
uv python pin 3.14
uv sync --extra dev --extra docs --upgrade
uvx pre-commit install
git add -A
uvx pre-commit run --all-files
# repeat if changes were made
git add -A
uvx pre-commit run --all-files
# validate schema (this repo only)
uv run se-manifest validate-schema --strict
# validate manifest (all repos)
uv run se-manifest validate-manifest --strict
# types, tests, docs
uv run python -m pyright
uv run python -m pytest
uv run python -m zensical build
# save progress
git add -A
git commit -m "update"
git push -u origin main