Command-line tool for bringing repositories up to a managed baseline using layered canonical templates.
Show command reference
Open a machine terminal where you want the project:
git clone https://github.com/structural-explainability/se-df
cd se-df
code .# if PowerShell blocks execution
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
.\rel.ps1
uv self update
uv python pin 3.14
uv lock --upgrade
uv sync --extra dev --extra docs --upgrade
uvx pre-commit install
uvx pre-commit autoupdate
git add -A
uvx pre-commit run --all-files
# repeat if changes were made
uvx pre-commit run --all-files
# test drive
uv run se-df --help
uv run se-df init --help
uv run se-df validate --help
uv run se-df generate --help
uv run se-df compare --help
uv run se-df conformance --help
uv run se-df report --help
uv run se-df up --help
# 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