Skip to main content

Σ OVERWATCH — Reality Await Layer (RAL) control plane for agentic AI

Project description

CI License: MIT Python 3.10+

Institutional Decision Infrastructure

Truth · Reasoning · Memory

🚀 Start Here · 🔁 Hero Demo · 🏢 Boardroom Brief · 📜 Specs · 🗺️ Navigation · 🔬 RAL


The Problem

Your organization makes thousands of decisions. Almost none are structurally recorded with their reasoning, evidence, or assumptions.

  • Leader leaves → their rationale leaves with them.
  • Conditions change → nobody detects stale assumptions.
  • Incident occurs → root-cause analysis becomes guessing.
  • AI accelerates decisions 100× → governance designed for human speed fails silently.

This is not a documentation gap. It is a missing infrastructure layer.

Every institution pays this cost — in re-litigation, audit overhead, governance drag, and silent drift. The question: keep paying in consequences, or invest in prevention.

Full economic tension analysis · Boardroom brief · Risk model


The Solution

Σ OVERWATCH fills the void between systems of record and systems of engagement with a system of decision.

Every decision flows through three primitives:

Primitive Artifact What It Captures
Truth Decision Ledger Record (DLR) What was decided, by whom, with what evidence
Reasoning Reasoning Scaffold (RS) Why this choice — claims, counter-claims, weights
Memory Decision Scaffold + Memory Graph (DS + MG) Reusable templates + queryable institutional memory

When assumptions decay, Drift fires. When drift exceeds tolerance, a Patch corrects it. This is the Drift → Patch loop — continuous self-correction.


Try It (5 Minutes)

git clone https://github.com/8ryanWh1t3/DeepSigma.git && cd DeepSigma
pip install -r requirements.txt

# Score coherence (0–100, A–F)
python -m coherence_ops score ./coherence_ops/examples/sample_episodes.json --json

# Full pipeline: episodes → DLR → RS → DS → MG → report
python -m coherence_ops.examples.e2e_seal_to_report

# Why did we make this decision?
python -m coherence_ops iris query --type WHY --target ep-001

Drift → Patch in 60 seconds (v0.3.0):

python -m coherence_ops.examples.drift_patch_cycle
# BASELINE 90.00 (A) → DRIFT 85.75 (B) → PATCH 90.00 (A)

👉 Full walkthrough: HERO_DEMO.md — 8 steps, every artifact touched.


Golden Path (v0.5.1)

One command. One outcome. No ambiguity. Proves the full 7-step loop end-to-end: Connect → Normalize → Extract → Seal → Drift → Patch → Recall.

# Local (fixture mode — no credentials)
deepsigma golden-path sharepoint \
  --fixture demos/golden_path/fixtures/sharepoint_small --clean

# Or via the coherence CLI
coherence golden-path sharepoint \
  --fixture demos/golden_path/fixtures/sharepoint_small

# Docker
docker compose --profile golden-path run --rm golden-path

Output: golden_path_output/ with per-step JSON artifacts and summary.json.

👉 Details: demos/golden_path/README.md


Trust Scorecard (v0.6.0)

Measurable SLOs from every Golden Path run. Generated automatically in CI.

python -m tools.trust_scorecard \
  --input golden_path_ci_out --output trust_scorecard.json

# With coverage
python -m tools.trust_scorecard \
  --input golden_path_ci_out --output trust_scorecard.json --coverage 85.3

Output: trust_scorecard.json with metrics, SLO checks, and timing data.

👉 Spec: specs/trust_scorecard_v1.md · Dashboard: Trust Scorecard tab


Repo Structure

DeepSigma/
├─ START_HERE.md          # Front door
├─ HERO_DEMO.md           # 5-min hands-on walkthrough
├─ NAV.md                 # Navigation index
├── category/             # Economic tension, boardroom brief, risk model
├── canonical/            # Normative specs: DLR, RS, DS, MG, Prime Constitution
├── coherence_ops/        # Python library + CLI + examples
├── specs/                # JSON schemas (11 schemas)
├── examples/             # Episodes, drift events, demo data
├── llm_data_model/       # LLM-optimized canonical data model
├── docs/                 # Extended docs (vision, IRIS, policy packs)
├── mermaid/              # 35+ architecture & flow diagrams
├── engine/               # Compression, degrade ladder, supervisor
├── dashboard/            # React dashboard + mock API
├── adapters/             # MCP, OpenClaw, SharePoint, Power Platform, AskSage, Snowflake, LangChain
├── demos/                # Golden Path end-to-end demo + fixtures
└── release/              # Release readiness checklist

CLI Quick Reference

Command Purpose
python -m coherence_ops audit <path> Cross-artifact consistency audit
python -m coherence_ops score <path> [--json] Coherence score (0–100, A–F)
python -m coherence_ops mg export <path> --format=json Export Memory Graph
python -m coherence_ops iris query --type WHY --target <id> Why was this decided?
python -m coherence_ops iris query --type WHAT_DRIFTED --json What assumptions decayed?
python -m coherence_ops demo <path> Score + IRIS in one command
coherence reconcile <path> [--auto-fix] [--json] Reconcile cross-artifact inconsistencies
coherence schema validate <file> --schema <name> Validate JSON against named schema
coherence dte check <path> --dte <spec> Check episodes against DTE constraints
deepsigma golden-path <source> [--fixture <path>] 7-step end-to-end Golden Path

Connectors (v0.6.0)

All connectors conform to the Connector Contract v1.0 — a standard interface with a canonical Record Envelope for provenance, hashing, and access control.

Connector Transport MCP Tools Docs
SharePoint Graph API sharepoint.list / get / sync docs/26
Power Platform Dataverse Web API dataverse.list / get / query docs/27
AskSage REST API asksage.query / models / datasets / history docs/28
Snowflake Cortex + SQL API cortex.complete / embed / snowflake.query / tables / sync docs/29
LangChain Callback Governance + Exhaust handlers docs/23
OpenClaw HTTP Dashboard API client adapters/openclaw/

Key Links

Resource Path
Reality Await Layer (RAL) ABOUT.md
Front door START_HERE.md
Hero demo HERO_DEMO.md
Boardroom brief category/boardroom_brief.md
Economic tension category/economic_tension.md
Risk model category/risk_model.md
Canonical specs /canonical/
JSON schemas /specs/
Python library /coherence_ops/
IRIS docs docs/18-iris.md
Docs map docs/99-docs-map.md

Operations

Resource Purpose
OPS_RUNBOOK.md Run Money Demo, tests, diagnostics, incident playbooks
TROUBLESHOOTING.md Top 20 issues — symptom → cause → fix → verify
CONFIG_REFERENCE.md All CLI args, policy pack schema, environment variables
STABILITY.md What's stable, what's not, versioning policy, v1.0 criteria
TEST_STRATEGY.md Test tiers, SLOs, how to run locally, coverage

Run with coverage:

pytest --cov=coherence_ops --cov-report=term-missing

Contributing

See CONTRIBUTING.md. All contributions must maintain consistency with Truth · Reasoning · Memory and the four canonical artifacts (DLR / RS / DS / MG).

License

See LICENSE.


Σ OVERWATCH We don't sell agents. We sell the ability to trust them.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepsigma-0.6.1.tar.gz (175.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deepsigma-0.6.1-py3-none-any.whl (147.9 kB view details)

Uploaded Python 3

File details

Details for the file deepsigma-0.6.1.tar.gz.

File metadata

  • Download URL: deepsigma-0.6.1.tar.gz
  • Upload date:
  • Size: 175.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for deepsigma-0.6.1.tar.gz
Algorithm Hash digest
SHA256 8fbb1a54c89eb12043b06941065b3453005e91cf371ac053d4620ac2a9ee23ab
MD5 24285dd2d1d716fc063f6df1cda91e88
BLAKE2b-256 58554bffcc495e48008ea025687b88269bd47b03fcc00e0411e47b92b735da7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepsigma-0.6.1.tar.gz:

Publisher: ci.yml on 8ryanWh1t3/DeepSigma

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file deepsigma-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: deepsigma-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 147.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for deepsigma-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ac7b5767c764b1aaa1254ad9955f5c1001e32eb5ed34cd13791eb35bd32c475b
MD5 8df2e5ce10276256641f89a3a5f45fe6
BLAKE2b-256 1dc607549ae1e42ed1c6b65374cf1ff8f8aabf7c418b0d2afc325b57d8f7176d

See more details on using hashes here.

Provenance

The following attestation bundles were made for deepsigma-0.6.1-py3-none-any.whl:

Publisher: ci.yml on 8ryanWh1t3/DeepSigma

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page