Institutional decision infrastructure: capture intent, run governed execution, detect drift, and patch safely.
pip install deepsigma
./run_money_demo.shExpected output:
BASELINE score=90.00 grade=A
DRIFT score=85.75 grade=B red_flags=1
PATCH score=90.00 grade=A patch=RETCON drift_resolved=true
What just happened:
- BASELINE — scored an entity under a policy pack, produced a sealed episode
- DRIFT — re-scored after a data change, detected coherence drift automatically
- PATCH — applied a governed retcon patch, restored coherence, sealed the resolution
8 deterministic artifacts land in docs/examples/demo-stack/drift_patch_cycle_run/.
Every run produces the same scores, same grades, same artifacts — verify with:
make core-baseline # SHA-256 proof in CORE_BASELINE_REPORT.jsonOrganizational coherence is the ability to see, decide, and act as one system over time—because its truth, reasoning, and memory stay aligned across people, tools, and turnover.
In practice, coherence means:
- the "why" is retrievable (not tribal)
- authority is explicit (not implied)
- changes are patched, not overwritten
- cross-team work links (people ↔ scope ↔ cost ↔ requirements)
- drift is detected early and corrected consistently
One product line, one version, two editions:
- CORE edition: minimal, demo-first, deterministic (
pip install deepsigma) - ENTERPRISE edition: extended adapters, dashboards, and ops surfaces (repo-native under
enterprise/)
Edition boundary ledger: EDITION_DIFF.md
Use Core mode when you need fast adoption and low cognitive load.
Active Core surface at repo root:
run_money_demo.shsrc/core/docs/examples/demo-stack/tests/test_money_demo.py
Use Enterprise mode when you need connectors, dashboards, extended security, broader telemetry, and integration-heavy workflows.
Dependency note:
pip install "deepsigma[enterprise]"installs enterprise runtime extras used by telemetry/radar tooling.- Full enterprise code surfaces are repository-native under
enterprise/and are run from source in this repo.
Enterprise surfaces are first-class under:
Examples of parked modules:
enterprise/dashboard/enterprise/docker/enterprise/release_kpis/enterprise/schemas/enterprise/scripts/enterprise/src/(non-core packages)enterprise/docs/(full enterprise docs)
Run the enterprise wedge:
make enterprise-demo
make test-enterpriseBuild both edition artifacts from one version line:
make release-artifactsOutputs in dist/:
deepsigma-core-vX.Y.Z.zipdeepsigma-enterprise-vX.Y.Z.zip
For the full-platform docs and architecture map, use parked docs directly:
enterprise/docs/positioning/positioning_manifesto.mdenterprise/docs/positioning/executive_briefing_one_page.mdenterprise/docs/release/enterprise/docs/security/enterprise/docs/mermaid/
- Keep root focused on a reliable first proof.
- Keep enterprise depth available without deleting capability.
- Expand from Core into Enterprise intentionally, not by drift.