Skip to main content

ENTRO-DASA: Dynamic Autonomous Sovereignty Algorithm โ€” Cybernetic Framework for Multi-Trajectory Attractor Guidance and Self-Regulating Consistency Locks in Dissipative Cognition Systems

Project description

ENTRO-DASA

Dynamic Autonomous Sovereignty Algorithm

A Cybernetic Framework for Multi-Trajectory Attractor Guidance and Self-Regulating Consistency Locks in Dissipative Cognition Systems


PyPI version PyPI downloads Python versions DOI OSF Preregistration ORCID License: MIT Series Version Website


๐Ÿ“Œ Overview

ENTRO-DASA is a deterministic, multi-threaded, real-time cybernetic framework that treats cognitive coherence as an engineered invariant enforced through sovereign attractor dynamics โ€” not an emergent statistical property.

"Computational sovereignty is not assumed or hoped for โ€” it is mathematically enforced through dynamic attractor governance and adaptive gravity modulation."

Contemporary AI architectures operating as open dissipative systems exhibit characteristic failure modes under environmental noise: contextual drift, semantic divergence, inference trajectory collapse, and stochastic resonance amplification. ENTRO-DASA provides a principled four-module cybernetic governance pipeline that classifies any cognitive trajectory state as:

Signal Deviation Status Action
๐ŸŸข CONSISTENCY LOCK D_j(t) โ‰ค ฮธ_warn Certified attractor basin confinement
๐ŸŸ  MONITORING PHASE ฮธ_warn < D_j โ‰ค ฮธ_crit Preventive gravity adjustment
๐Ÿ”ด CRITICAL DEVIATION D_j(t) > ฮธ_crit Immediate trajectory recapture via ฮฑ-amplification

๐Ÿ—‚๏ธ Table of Contents


โœจ Key Features

  • Four-module governance pipeline โ€” DASA Core Engine, Strategic Analytics Module, Visualization Stack, Digital Archival Infrastructure
  • Adaptive Linguistic Gravity (ALG) โ€” dynamic restoring force modulated in real time by measured trajectory deviation
  • Multi-trajectory swarm governance โ€” three parallel cognitive swarms Tโ‚, Tโ‚‚, Tโ‚ƒ with inter-trajectory synchronization
  • Consistency Lock mechanism โ€” hard Consistency Basin projection preventing post-lock drift under bounded noise
  • Stochastic Lyapunov stability guarantee โ€” certified convergence for ฯƒ < ฯƒ_crit โ‰ˆ 0.38
  • Real-time Streamlit + Plotly 3D visualization โ€” live geodesic trajectory rendering and CCS monitoring
  • JSON/CSV temporal archiving โ€” SHA-256 append-only tamper-evident operational history
  • Full open-source distribution โ€” available across 11 platforms

๐Ÿ“ Project Structure

ENTRO-DASA/
โ”‚
โ”œโ”€โ”€ entro_dasa/                         # Core Python package
โ”‚   โ”œโ”€โ”€ __init__.py                     # Package entry point & public API
โ”‚   โ”œโ”€โ”€ pipeline.py                     # Main ENTRO-DASA governance pipeline
โ”‚   โ”œโ”€โ”€ score.py                        # CCS scoring function & decision logic
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ modules/                        # Governance modules
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ dasa_core.py                # Module 1: DASA Core Engine (DCE)
โ”‚   โ”‚   โ”œโ”€โ”€ analytics.py                # Module 2: Strategic Analytics Module (SAM)
โ”‚   โ”‚   โ”œโ”€โ”€ consistency_lock.py         # Module 3: Consistency Basin enforcement
โ”‚   โ”‚   โ””โ”€โ”€ synchronizer.py             # Module 4: Inter-trajectory synchronization
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ gravity/                        # Adaptive Linguistic Gravity subsystem
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ algr.py                     # Adaptive Linguistic Gravity Rule kernel
โ”‚   โ”‚   โ”œโ”€โ”€ attractor.py                # Sovereign Attractor (A*) field generator
โ”‚   โ”‚   โ””โ”€โ”€ potential.py                # DASA Cognitive Well V(x) computation
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ trajectory/                     # Trajectory management
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ swarm.py                    # Multi-trajectory swarm Tโ‚, Tโ‚‚, Tโ‚ƒ manager
โ”‚   โ”‚   โ”œโ”€โ”€ geodesic.py                 # Geodesic cognitive routing engine
โ”‚   โ”‚   โ””โ”€โ”€ deviation.py                # Deviation metric D_{i,j}(t) computation
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ stochastic/                     # Stochastic perturbation modeling
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ noise.py                    # Gaussian perturbation operator ฮท ~ N(0, ฯƒยฒI)
โ”‚   โ”‚   โ”œโ”€โ”€ lyapunov.py                 # Stochastic Lyapunov stability analysis
โ”‚   โ”‚   โ””โ”€โ”€ phase_transition.py         # Phase transition characterization
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ adaptive/                       # Adaptive feedback regulation
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ memory.py                   # Temporal memory stabilization (M-window)
โ”‚   โ”‚   โ””โ”€โ”€ feedback.py                 # Outer-loop adaptive parameter optimization
โ”‚   โ”‚
โ”‚   โ””โ”€โ”€ utils/                          # Shared utilities
โ”‚       โ”œโ”€โ”€ __init__.py
โ”‚       โ”œโ”€โ”€ metrics.py                  # CCS, CERI, FDR computation
โ”‚       โ”œโ”€โ”€ validators.py               # Input validation & type checking
โ”‚       โ””โ”€โ”€ constants.py                # Canonical parameter registry
โ”‚
โ”œโ”€โ”€ visualization/                      # Real-time visualization subsystem
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ app.py                          # Streamlit application entry point
โ”‚   โ”œโ”€โ”€ dashboard.py                    # Main dashboard layout & controls
โ”‚   โ”œโ”€โ”€ plot3d.py                       # Plotly 3D trajectory renderer
โ”‚   โ”œโ”€โ”€ timeseries.py                   # CCS / deviation time-series panels
โ”‚   โ””โ”€โ”€ components/
โ”‚       โ”œโ”€โ”€ attractor_sphere.py         # Consistency Basin 3D sphere renderer
โ”‚       โ”œโ”€โ”€ swarm_cloud.py              # Point cloud trajectory renderer
โ”‚       โ””โ”€โ”€ status_panel.py             # ๐Ÿ”ด๐ŸŸ ๐ŸŸข signal status panel
โ”‚
โ”œโ”€โ”€ archival/                           # Digital Archival Framework (DAF)
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ writer.py                       # Append-only JSON/CSV record writer
โ”‚   โ”œโ”€โ”€ checksum.py                     # SHA-256 tamper-evidence layer
โ”‚   โ””โ”€โ”€ partitioner.py                  # Per-trajectory time-window CSV partitioner
โ”‚
โ”œโ”€โ”€ simulation/                         # Experimental simulation environment
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ environment.py                  # Noise regime configuration (low/moderate/high)
โ”‚   โ”œโ”€โ”€ benchmarks.py                   # Five-configuration comparative stability suite
โ”‚   โ”œโ”€โ”€ parameters.py                   # Canonical v10.2 parameter registry
โ”‚   โ””โ”€โ”€ results/                        # Pre-computed simulation outputs
โ”‚       โ”œโ”€โ”€ stability_comparison.json
โ”‚       โ”œโ”€โ”€ entropy_suppression.json
โ”‚       โ””โ”€โ”€ phase_transition_sweep.json
โ”‚
โ”œโ”€โ”€ examples/                           # Usage examples & tutorials
โ”‚   โ”œโ”€โ”€ quickstart.py                   # Minimal working example
โ”‚   โ”œโ”€โ”€ basic_governance.ipynb          # Jupyter: single-trajectory governance
โ”‚   โ”œโ”€โ”€ swarm_demo.ipynb                # Jupyter: multi-trajectory swarm simulation
โ”‚   โ”œโ”€โ”€ noise_resistance.ipynb          # Jupyter: stochastic Lyapunov analysis
โ”‚   โ”œโ”€โ”€ streamlit_live.py               # Launch real-time 3D dashboard
โ”‚   โ””โ”€โ”€ custom_attractor.py             # Custom A* specification example
โ”‚
โ”œโ”€โ”€ tests/                              # Unit and integration tests
โ”‚   โ”œโ”€โ”€ test_dasa_core.py
โ”‚   โ”œโ”€โ”€ test_algr.py
โ”‚   โ”œโ”€โ”€ test_consistency_lock.py
โ”‚   โ”œโ”€โ”€ test_synchronizer.py
โ”‚   โ”œโ”€โ”€ test_stochastic.py
โ”‚   โ”œโ”€โ”€ test_pipeline.py
โ”‚   โ”œโ”€โ”€ test_scoring.py
โ”‚   โ””โ”€โ”€ test_archival.py
โ”‚
โ”œโ”€โ”€ docs/                               # Documentation source
โ”‚   โ”œโ”€โ”€ architecture.md                 # Pipeline & module architecture reference
โ”‚   โ”œโ”€โ”€ mathematics.md                  # Full mathematical formalism documentation
โ”‚   โ”œโ”€โ”€ governance.md                   # Governance protocol & threshold calibration
โ”‚   โ”œโ”€โ”€ visualization.md                # Streamlit + Plotly setup guide
โ”‚   โ””โ”€โ”€ api_reference.md                # Full Python API reference
โ”‚
โ”œโ”€โ”€ paper/                              # Research paper artifacts
โ”‚   โ”œโ”€โ”€ ENTRO-DASA_Research_Paper.pdf   # Published paper (PDF)
โ”‚   โ”œโ”€โ”€ ENTRO-DASA_Research_Paper.docx  # Editable Word version
โ”‚   โ””โ”€โ”€ figures/                        # Paper figures & diagrams
โ”‚       โ”œโ”€โ”€ pipeline_diagram.svg
โ”‚       โ”œโ”€โ”€ phase_transition_plot.svg
โ”‚       โ””โ”€โ”€ attractor_basin_3d.svg
โ”‚
โ”œโ”€โ”€ .gitlab-ci.yml                      # GitLab CI/CD pipeline
โ”œโ”€โ”€ .github/                            # GitHub Actions workflows
โ”‚   โ””โ”€โ”€ workflows/
โ”‚       โ”œโ”€โ”€ tests.yml
โ”‚       โ””โ”€โ”€ publish.yml
โ”œโ”€โ”€ pyproject.toml                      # Build system configuration
โ”œโ”€โ”€ setup.cfg                           # Package metadata
โ”œโ”€โ”€ requirements.txt                    # Runtime dependencies
โ”œโ”€โ”€ requirements-dev.txt                # Development dependencies
โ”œโ”€โ”€ CHANGELOG.md                        # Version history (v1.0 โ†’ v10.2)
โ”œโ”€โ”€ CONTRIBUTING.md                     # Contribution guidelines
โ”œโ”€โ”€ CODE_OF_CONDUCT.md
โ”œโ”€โ”€ AUTHORS.md                          # Author and contributor registry
โ”œโ”€โ”€ LICENSE                             # MIT License
โ””โ”€โ”€ README.md                           # This file

๐Ÿš€ Quick Start

Installation

# Install from PyPI
pip install entro-dasa

# Install from source
git clone https://github.com/gitdeeper12/ENTRO-DASA.git
cd ENTRO-DASA
pip install -e .

Minimal Example

from entro_dasa import DASAGovernor

# Initialize the governor with sovereign attractor at origin
governor = DASAGovernor(attractor=[0.0, 0.0, 0.0])

# X: trajectory state matrix of shape (n_points, 3)
# Run governance pipeline across T_max steps
result = governor.run(X, T_max=500)

print(result.label)           # "CONSISTENCY_LOCK" | "MONITORING" | "CRITICAL"
print(result.ccs_score)       # float in [0, 1] โ€” Convergence Concordance Score
print(result.breakdown)       # {"S": 0.94, "R": 0.92, "I": 0.97, "D": 0.89}
print(result.entropy_ceri)    # Cognitive Entropy Reduction Index
print(result.failure_modes)   # list of detected deviation events (if any)

With Custom Gravity Parameters

from entro_dasa import DASAGovernor

governor = DASAGovernor(
    attractor=[0.0, 0.0, 0.0],
    params={
        "alpha":    1.05,   # amplification exponent (critical deviation)
        "beta":     0.98,   # damping exponent (below threshold)
        "theta":    0.80,   # critical deviation threshold
        "gamma":    0.05,   # computational step rate
        "w0":       1.00,   # baseline gravity coefficient
        "lambda_q": 0.01,   # quartic regularization constant
        "kappa_s":  0.10,   # inter-trajectory synchronization coefficient
        "sigma":    0.15,   # environmental noise level (for simulation)
    }
)
result = governor.run(X, T_max=500, n_swarms=3)

With Learnable Adaptive Layer

from entro_dasa import DASAGovernor
from entro_dasa.adaptive import AdaptiveFeedback

# Load outer-loop adaptive parameter optimizer
adapter = AdaptiveFeedback.from_pretrained("default")
governor = DASAGovernor(attractor=[0.0, 0.0, 0.0], adapter=adapter)

# Adaptive layer recalibrates ฮฑ, ฮฒ, ฮธ, ฮบ_s based on runtime performance
result = governor.run(X, T_max=500)
print(result.adapted_params)  # parameter values after adaptive optimization

Launch Real-Time 3D Dashboard

# Start Streamlit visualization
streamlit run examples/streamlit_live.py

# Dashboard available at: http://localhost:8501
# Live 3D trajectory rendering ยท CCS time-series ยท SAM signal status

๐Ÿงฉ ENTRO-DASA Pipeline

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚          Cognitive State Input  X โˆˆ Rยณ  (Trajectories Tโ‚,Tโ‚‚,Tโ‚ƒ) โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                           โ”‚
         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
         โ”‚                 โ”‚                  โ”‚
         โ–ผ                 โ–ผ                  โ–ผ
   DASA Core          Stochastic         Geodesic
   Engine (DCE)       Perturbation       Router
   Parallel threads   ฮท ~ N(0, ฯƒยฒI)      Fisher metric
         โ”‚                 โ”‚                  โ”‚
         โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                           โ”‚
                           โ–ผ
              Adaptive Linguistic Gravity
              w_{t+1} = w_t ยท ฮฑ^[d>ฮธ] ยท ฮฒ^[dโ‰คฮธ]
                           โ”‚
                           โ–ผ
              Inter-Trajectory Synchronization
              F_sync = ฮบ_s ยท (c_j - c_{j'})
                           โ”‚
                           โ–ผ
              Strategic Analytics Module (SAM)
              ๐Ÿ”ด Critical ยท ๐ŸŸ  Monitor ยท ๐ŸŸข Lock
                           โ”‚
                           โ–ผ
              Consistency Basin Enforcement
              x(t+1) = ฮ _{B_C}[ update + ฮท ]
                           โ”‚
                           โ–ผ
              Convergence Concordance Score
              CCS = (1/N) ฮฃ exp(-ฮบ ยท dยฒ_final)
                           โ”‚
                  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                  โ–ผ                 โ–ผ
          Digital Archive    3D Visualization
          JSON/CSV + SHA-256  Streamlit + Plotly

Module Descriptions

# Module Formula Description
1 Trajectory Deviation (d) d_{i,j}(t) = โ€–x_{i,j}(t) โˆ’ A*โ€–โ‚‚ Instantaneous Euclidean distance from sovereign attractor
2 Adaptive Linguistic Gravity (w) w_{t+1} = w_t ยท ฮฑ^[d>ฮธ] ยท ฮฒ^[dโ‰คฮธ] Dynamic restoring force modulation (ฮฑ=1.05, ฮฒ=0.98)
3 State Update with Noise x(t+1) = x(t) โˆ’ ฮณยทw_tยทโˆ‡V(x) + ฮท Gradient-flow guidance + stochastic perturbation
4 Convergence Concordance (CCS) CCS = (1/N) ฮฃ exp(โˆ’ฮบยทdยฒ_final) Certified attractor lock score โˆˆ [0, 1]

๐Ÿ“Š Scoring Function

CCS_sys = (1/3) ยท ฮฃ_j CCS_j

Governance certification threshold:  CCS_sys โ‰ฅ 0.95

Noise resistance bound (Stochastic Lyapunov):
  โˆšL* โ‰ˆ ฯƒ / โˆš(2K* โˆ’ K*ยฒ) โ‰ˆ 1.90ฯƒ   (for K* โ‰ˆ 0.15)

DASA Cognitive Well (potential field):
  V(x) = (1/2)ยทk(t)ยทโ€–x โˆ’ A*โ€–ยฒ + (ฮป/4)ยทโ€–x โˆ’ A*โ€–โด

System performance benchmarks (v10.2, ฯƒ = 0.15):

Configuration CCS_sys FDR CERI ฯƒ=0.30 CCS
ENTRO-DASA (full, v10.2) 0.97 0.03 0.94 0.89
No Adaptive Gravity (fixed w) 0.83 0.17 0.76 0.61
No Consistency Lock 0.91 0.09 0.87 0.74
No Synchronization Force 0.87 0.13 0.81 0.68
Ungoverned Baseline 0.29 0.63 0.12 0.14

SAM decision thresholds:

Score Range Classification Condition
CCS_sys โ‰ฅ 0.95 ๐ŸŸข CONSISTENCY LOCK All trajectories within B_C; attractor certified
0.70 โ‰ค CCS < 0.95 ๐ŸŸ  MONITORING PHASE Partial convergence; gravity adjustment active
CCS < 0.70 ๐Ÿ”ด CRITICAL DEVIATION Trajectory recapture required; ฮฑ-amplification engaged

๐ŸŒ Platforms & Mirrors

Platform URL Role
๐Ÿ™ GitHub (Primary) github.com/gitdeeper12/ENTRO-DASA Source code, issues, PRs
๐ŸฆŠ GitLab (Mirror) gitlab.com/gitdeeper12/ENTRO-DASA CI/CD mirror
๐Ÿชฃ Bitbucket (Mirror) bitbucket.org/gitdeeper-12/ENTRO-DASA Enterprise mirror
๐Ÿ”๏ธ Codeberg (Mirror) codeberg.org/gitdeeper12/ENTRO-DASA Open-source community
๐Ÿ“ฆ PyPI pypi.org/project/entro-dasa Python package distribution
๐Ÿ”ฌ Zenodo doi.org/10.5281/zenodo.20353988 Citable DOI, paper & data
๐Ÿ“‹ OSF Project osf.io/xxxxx Research project registry
๐Ÿ“ OSF Preregistration doi.org/10.17605/OSF.IO/XXXXX Pre-registered study protocol
๐ŸŒ Website entro-dasa.netlify.app Live documentation & dashboard
๐Ÿง‘โ€๐Ÿ”ฌ ORCID orcid.org/0009-0003-8903-0029 Researcher identity
๐Ÿ—„๏ธ Internet Archive archive.org/details/osf-registrations-xxxxx Permanent archival copy

๐ŸŒ Official Website Pages

Page URL
Homepage entro-dasa.netlify.app
Dashboard entro-dasa.netlify.app/dashboard
Results entro-dasa.netlify.app/results
Documentation entro-dasa.netlify.app/documentation

๐Ÿ”„ Clone & Download

Git Clone

# GitHub (Primary)
git clone https://github.com/gitdeeper12/ENTRO-DASA.git

# GitLab (Mirror)
git clone https://gitlab.com/gitdeeper12/ENTRO-DASA.git

# Bitbucket (Mirror)
git clone https://bitbucket.org/gitdeeper-12/ENTRO-DASA.git

# Codeberg (Mirror)
git clone https://codeberg.org/gitdeeper12/ENTRO-DASA.git

Direct ZIP Download

Source Link
GitHub ENTRO-DASA-main.zip
GitLab ENTRO-DASA-main.zip
Bitbucket ENTRO-DASA-main.zip
Codeberg ENTRO-DASA-main.zip
PyPI files pypi.org/project/entro-dasa/#files
Zenodo record doi.org/10.5281/zenodo.20353988

๐Ÿ“– Citation

If ENTRO-DASA contributes to your research, please cite using one of the following formats.

๐Ÿ“ฆ PyPI Package

@software{baladi2026entrodasa_pypi,
  author       = {Baladi, Samir},
  title        = {{ENTRO-DASA}: Dynamic Autonomous Sovereignty Algorithm},
  year         = {2026},
  version      = {10.2.0},
  publisher    = {Python Package Index},
  url          = {https://pypi.org/project/entro-dasa},
  note         = {Python package, MIT License, EntropyLab Series E-LAB-12}
}

๐Ÿ”ฌ Zenodo Archive (Paper & Data)

@dataset{baladi2026entrodasa_zenodo,
  author       = {Baladi, Samir},
  title        = {{ENTRO-DASA}: Dynamic Autonomous Sovereignty Algorithm โ€”
                  Research Paper and Simulation Data},
  year         = {2026},
  publisher    = {Zenodo},
  version      = {10.2.0},
  doi          = {10.5281/zenodo.20353988},
  url          = {https://doi.org/10.5281/zenodo.20353988},
  series       = {E-LAB-12}
}

๐Ÿ“ OSF Preregistration

@misc{baladi2026entrodasa_osf,
  author       = {Baladi, Samir},
  title        = {{ENTRO-DASA} Framework: Pre-registered Study Protocol for
                  Cybernetic Governance of Dissipative Cognition Systems},
  year         = {2026},
  publisher    = {Open Science Framework},
  doi          = {10.17605/OSF.IO/XXXXX},
  url          = {https://doi.org/10.17605/OSF.IO/XXXXX},
  note         = {OSF Preregistration}
}

๐Ÿ“„ Research Paper

@article{baladi2026entrodasa,
  author       = {Baladi, Samir},
  title        = {{ENTRO-DASA}: A Cybernetic Framework for Multi-Trajectory
                  Attractor Guidance and Self-Regulating Consistency Locks
                  in Dissipative Cognition Systems},
  year         = {2026},
  month        = {May},
  series       = {E-LAB-12},
  version      = {10.2.0},
  doi          = {10.5281/zenodo.20353988},
  url          = {https://doi.org/10.5281/zenodo.20353988},
  note         = {Ronin Institute / Rite of Renaissance}
}

APA (inline)

Baladi, S. (2026). ENTRO-DASA: A Cybernetic Framework for Multi-Trajectory Attractor Guidance and Self-Regulating Consistency Locks in Dissipative Cognition Systems (Version 10.2.0, Series E-LAB-12). Zenodo. https://doi.org/10.5281/zenodo.20353988


๐Ÿ“œ License

This project is licensed under the MIT License โ€” see the LICENSE file for details.

MIT License

Copyright (c) 2026 Samir Baladi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction...

๐Ÿ‘ค Author

Samir Baladi Interdisciplinary AI Researcher โ€” Neural Engineering & Cybernetic Systems Ronin Institute / Rite of Renaissance ยท EntropyLab Series

Contact Link
๐Ÿ“ง Email gitdeeper@gmail.com
๐Ÿง‘โ€๐Ÿ”ฌ ORCID 0009-0003-8903-0029
๐Ÿ™ GitHub github.com/gitdeeper12
๐ŸŒ Website entro-dasa.netlify.app

Series E-LAB-12 ยท Project 60 ยท Version 10.2.0 ยท May 2026

DOI PyPI License: MIT

"Computational sovereignty is not assumed โ€” it is enforced."

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

entro_dasa-10.2.0.tar.gz (32.0 kB view details)

Uploaded Source

Built Distribution

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

entro_dasa-10.2.0-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file entro_dasa-10.2.0.tar.gz.

File metadata

  • Download URL: entro_dasa-10.2.0.tar.gz
  • Upload date:
  • Size: 32.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: ENTRO-DASA-Uploader/10.2.0

File hashes

Hashes for entro_dasa-10.2.0.tar.gz
Algorithm Hash digest
SHA256 de891b7a0ecbb9d611b924bd281d86073e50e922d2e4676d1d3944ce9e7bbf41
MD5 bb84daf0dee24540ae86d9c264af152a
BLAKE2b-256 8879c42426cecd662e1aed9a48071ed3312b17c80c5337cbcdb28c3117d14e47

See more details on using hashes here.

File details

Details for the file entro_dasa-10.2.0-py3-none-any.whl.

File metadata

  • Download URL: entro_dasa-10.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: ENTRO-DASA-Uploader/10.2.0

File hashes

Hashes for entro_dasa-10.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 22c9ff1f79d959302a5186a1f310aff96c852a7b871e0d91cf8fdb651f4fd647
MD5 3cf1f0ba6bd8c6bca0d7534112ccb74b
BLAKE2b-256 1db1721e275b9c9fe7ace5e328346ae5f8feb1b14b75bf5b06352a3a8bc31a09

See more details on using hashes here.

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