https://github.com/structural-explainability/spec-se
Authoritative specification of Structural Explainability (SE).
https://github.com/structural-explainability/spec-se
accountability explainability formal-specification neutrality representational-constraints structural-explainability
Last synced: about 1 month ago
JSON representation
Authoritative specification of Structural Explainability (SE).
- Host: GitHub
- URL: https://github.com/structural-explainability/spec-se
- Owner: structural-explainability
- License: mit
- Created: 2025-12-30T18:08:46.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-01T04:13:23.000Z (5 months ago)
- Last Synced: 2026-01-03T18:24:37.295Z (5 months ago)
- Topics: accountability, explainability, formal-specification, neutrality, representational-constraints, structural-explainability
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Structural Explainability (SE)
[](https://opensource.org/license/MIT)

[](https://github.com/structural-explainability/spec-se/actions/workflows/links.yml)
[](https://github.com/structural-explainability/spec-se/security)
> Authoritative specification of Structural Explainability (SE).
## Overview
The Structural Explainability (SE) specification defines the minimal,
interpretation-neutral constraints under which identity, structure, change,
explanation, and disagreement can coexist over time.
SE establishes a shared representational substrate that remains stable across
incompatible epistemic, causal, and normative frameworks.
## Purpose
The purpose of SE is to define
**the conditions under which explanation is possible without being embedded**.
SE enables external frameworks to
explain, evaluate, or judge recorded structures
while preventing those interpretations from being asserted as substrate facts.
SE concerns representation only.
It does not determine meaning, correctness, or responsibility.
## Scope
This specification defines:
- neutrality constraints on representation
- explicit identity and persistence requirements
- structured, non-destructive representation of change
- boundaries between structure and interpretation
This specification does NOT define:
- causal explanations or mechanisms
- epistemic truth or validation
- normative judgment or enforcement
- domain vocabularies or application semantics
- decision-making or optimization logic
## Position in the Stack
SE is the foundational substrate.
- Structural Explainability (SE) defines admissible representation constraints.
- Accountable Entities (AE) refine identity and persistence regimes.
- Evolution Protocol (EP) defines structural change over time.
- Contextual Evidence & Explanations (CEE) attach interpretation above the substrate.
No downstream specification may weaken or override SE constraints.
## Relationship to Other Specifications
- SE is **foundational** and has no upstream dependencies.
- AE, EP, and CEE are defined as downstream specifications.
- All downstream specifications MUST conform to SE neutrality constraints.
- Interpretation, explanation, and evaluation occur strictly outside SE.
## Repository Contents
- [SPEC.md](./SPEC.md) - Normative specification
- [SPEC_LAYERS.md](./SPEC_LAYERS.md) - Canonical epistemic layer model and definitions
- [IDENTIFIERS.md](./IDENTIFIERS.md) - Stable requirement identifiers
- [CONFORMANCE.md](./CONFORMANCE.md) - Conformance checklist
- [se-manifest-1.md](./manifests/se-manifest-1.md) - SE manifest schema and field definitions
- [ANNOTATIONS.md](./ANNOTATIONS.md) - Annotation standards
- [LICENSE](./LICENSE) - licensing terms
- [CITATION.cff](./CITATION.cff) - Citation metadata
- [CHANGELOG.md](./CHANGELOG.md) - Version history
## Clarifying Statement
Structural Explainability defines what may be represented and
how it may change, without asserting
what is known, why it happened, or what ought to be done.
By separating structure from interpretation, SE ensures that:
- shared structural history remains stable and neutral,
- incompatible explanations may coexist without contradiction,
- accountability is preserved under persistent disagreement.
SE enables explanation without becoming explanatory.
## Developer (running pre-commit)
Steps to run pre-commit locally. Install `uv`.
Initialize once:
```shell
uv self update
uvx pre-commit install
uvx pre-commit run --all-files
```
Save progress as needed:
```shell
git add -A
# If pre-commit makes changes, re-run `git add -A` before committing.
git commit -m "update"
git push -u origin main
```