Structural Explainability Admin: administration of the SE ecosystem.
- enforcement of constitution (automation)
- repository lifecycle operations
- cross-repository consistency
scaffolding
- repository templates
synchronization
- configuration propagation
validation orchestration
- multi-repo validation execution
workflow reuse
- shared GitHub Actions
bulk operations
- dependency upgrades
- structural updates
Show command reference
After you get a copy of this repo in your own GitHub account,
open a machine terminal in Repos or where you want the project:
# Replace username with YOUR GitHub username.
git clone https://github.com/username/se-admin
cd se-admin
code .uv self update
uv python pin 3.15
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
# run the module
uv run python -m se_admin show
# do chores
npx markdownlint-cli "**/*.md" --fix
uv run python -m ruff format .
uv run python -m ruff check . --fix
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