ethernium-continuity-legacy 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ethernium_continuity_legacy-3.0.0/LICENSE +21 -0
- ethernium_continuity_legacy-3.0.0/PKG-INFO +319 -0
- ethernium_continuity_legacy-3.0.0/README.md +288 -0
- ethernium_continuity_legacy-3.0.0/continuity-lite/continuity_lite/continuity_legacy/run_continuity_lite.py +307 -0
- ethernium_continuity_legacy-3.0.0/continuity-lite/continuity_lite/continuity_legacy/sync_translations.py +79 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/__init__.py +1 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/archive_manager.py +77 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/automation_common.py +270 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/bootstrap_context.py +36 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/bootstrap_project.py +167 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/cognitive_map.py +111 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/context_loader.py +160 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/continuity_status.py +76 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/continuity_suggest.py +64 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/decision_engine.py +136 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/discover_project.py +109 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/doc_parity_check.py +128 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/encoding_sanitizer.py +135 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/heal_parity.py +78 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/hook_utils.py +89 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/memory_graph_lite.py +64 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/notify_webhook.py +143 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/omega_engine.py +135 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/run_continuity_cycle.py +18 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/run_continuity_omega.py +200 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/secret_detector.py +49 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/summarize_memory.py +58 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/sync_external_dev_context.py +232 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/sync_translations.py +79 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/system_membership_check.py +68 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/update_memory.py +81 -0
- ethernium_continuity_legacy-3.0.0/continuity-omega/continuity_omega/continuity_legacy/vector_store_lite.py +69 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/__init__.py +1 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/archive_manager.py +77 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/automation_common.py +339 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/bootstrap_context.py +36 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/bootstrap_project.py +167 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/context_loader.py +160 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/continuity_status.py +76 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/continuity_suggest.py +64 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/decision_engine.py +136 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/discover_project.py +109 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/doc_parity_check.py +128 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/encoding_sanitizer.py +135 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/ene_optimizer.py +76 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/heal_parity.py +78 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/hook_utils.py +83 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/memory_graph_lite.py +64 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/notify_webhook.py +143 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/run_continuity_cycle.py +211 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/secret_detector.py +67 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/sovereign_identity.py +124 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/summarize_memory.py +58 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/sync_external_dev_context.py +232 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/sync_translations.py +179 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/system_membership_check.py +69 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/tokenator.py +310 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/update_memory.py +81 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/vector_store_lite.py +69 -0
- ethernium_continuity_legacy-3.0.0/continuity-pro/continuity_pro/continuity_legacy/zip_bridge.py +88 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/PKG-INFO +319 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/SOURCES.txt +67 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/dependency_links.txt +1 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/entry_points.txt +6 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/requires.txt +5 -0
- ethernium_continuity_legacy-3.0.0/ethernium_continuity_legacy.egg-info/top_level.txt +3 -0
- ethernium_continuity_legacy-3.0.0/pyproject.toml +51 -0
- ethernium_continuity_legacy-3.0.0/setup.cfg +4 -0
- ethernium_continuity_legacy-3.0.0/tests/test_continuity.py +55 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Ethernium (X: @Steveblackbeard)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ethernium-continuity-legacy
|
|
3
|
+
Version: 3.0.0
|
|
4
|
+
Summary: Continuity Legacy: Persistent Cognitive Layer for AI context handoffs. Deterministic Merkle-based integrity with Shannon Entropy physics. Includes Lite, Pro, and Omega editions.
|
|
5
|
+
Author: SteveBlackbeard
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium
|
|
8
|
+
Project-URL: Repository, https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/issues
|
|
10
|
+
Keywords: ai,context,continuity,llm,handover,merkle-tree,cybersecurity,rag,automation,entropy,governance
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
21
|
+
Classifier: Topic :: Security :: Cryptography
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
26
|
+
Requires-Dist: rich>=13.0.0
|
|
27
|
+
Requires-Dist: pydantic>=2.0.0
|
|
28
|
+
Requires-Dist: networkx>=3.0
|
|
29
|
+
Requires-Dist: tiktoken>=0.5.0
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
<p align="center">
|
|
33
|
+
<img src="https://raw.githubusercontent.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/main/banners/ethernium_header.png?raw=true" alt="Ethernium Continuity Legacy Official Header">
|
|
34
|
+
</p>
|
|
35
|
+
|
|
36
|
+
# Continuity Legacy: Persistent Cognitive Layer 🧬
|
|
37
|
+
|
|
38
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/actions/workflows/industrial_guardian.yml)
|
|
39
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/releases)
|
|
40
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/LICENSE)
|
|
41
|
+
[](https://www.python.org/downloads/release/python-3100/)
|
|
42
|
+
|
|
43
|
+
#### Languages
|
|
44
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_es.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/README.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_ja.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_zh.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_ru.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_fr.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_it.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_de.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_pt.md)
|
|
45
|
+
|
|
46
|
+
"**AI doesn't forget anymore.**"
|
|
47
|
+
|
|
48
|
+
*This prevents LLMs from losing context and destroying your codebase, mathematically forcing them to align with a cryptographic hash.*
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 🏛️ Enterprise Use Cases
|
|
53
|
+
Continuity Legacy solves the "Semantic Drift" in long-term AI-Human collaboration:
|
|
54
|
+
1. **Cross-Agent Handoffs**: Transfer full project context between different AI models (GPT-4 to Claude to local LLMs) with zero context loss.
|
|
55
|
+
2. **Multi-Day RAG Stability**: Ensures that Retrieval-Augmented Generation systems always point to the canonical source of truth, even after system resets.
|
|
56
|
+
3. **Legacy Restoration**: Instantly reconstruct the architectural intent of a project years after the last human developer has left.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## ⚡ 30-Second Quickstart (Professional Onboarding)
|
|
61
|
+
Get the entire Ethernium Continuity Ecosystem running in seconds:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# Install the unified metapackage
|
|
65
|
+
pip install continuity-legacy
|
|
66
|
+
|
|
67
|
+
# Initialize the Guardian DNA in your current project
|
|
68
|
+
continuity init
|
|
69
|
+
|
|
70
|
+
# Verify state consistency
|
|
71
|
+
continuity status
|
|
72
|
+
|
|
73
|
+
# [NEW] Audit project cognitive weight (tokens)
|
|
74
|
+
continuity-tokens scan
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## 🛡️ Industrial Proof & Quality
|
|
80
|
+
To address the need for concrete evidence, we provide a verified Case Study and Benchmarks:
|
|
81
|
+
* [**CASE_STUDY_DRIFT.md**](./CASE_STUDY_DRIFT.md): A real-world demonstration of how Continuity detects and blocks unauthorized semantic changes that Git ignores.
|
|
82
|
+
* [**BENCHMARKS.md**](./BENCHMARKS.md): Measured performance results (Latencies, Memory footprint, and Merkle scan speeds).
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
<!-- DNA_CRYSTAL -->
|
|
88
|
+
> [!IMPORTANT]
|
|
89
|
+
> **DNA CRYSTAL**: `v3.0.0-1c0e806954bc423f`
|
|
90
|
+
> [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium)
|
|
91
|
+
|
|
92
|
+
## 🏛️ Table of Contents
|
|
93
|
+
1. [Choose Your Edition](#-choose-your-edition)
|
|
94
|
+
2. [Technical Specifications](#-technical-specifications-hardware-profiles)
|
|
95
|
+
3. [30-Second Quickstart](#-30-second-quickstart-the-onboarding-experience)
|
|
96
|
+
4. [Quick Installation](#-quick-installation)
|
|
97
|
+
5. [Operation Modes](#-modos-de-operación-how-to-use)
|
|
98
|
+
6. [Core Infrastructure](#-core-infrastructure-the-cognitive-core)
|
|
99
|
+
7. [The Quality Flow](#-the-quality-flow-the-border-guard)
|
|
100
|
+
8. [Guardian DNA Algorithm](#-guardian-dna-technical-specification)
|
|
101
|
+
9. [Origins: The Ethernium Heritage](#-origins-the-ethernium-heritage)
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## 🏛️ Choose Your Edition
|
|
106
|
+
|
|
107
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-lite/)
|
|
108
|
+
_Minimalist local sync with DNA Synthesis for zero-loss handoffs._
|
|
109
|
+
|
|
110
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-pro/)
|
|
111
|
+
_Industrial-grade border guard. Features Enterprise-grade cyber-security, RFC 6962 Merkle Hardening, and Fail-Closed Hooks._
|
|
112
|
+
|
|
113
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-omega/)
|
|
114
|
+
_Advanced RAG, cognitive mapping, and a stunning 3D Glassmorphic Dashboard for impactful data visualization._
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
| Guide | Link |
|
|
119
|
+
| :--- | :--- |
|
|
120
|
+
| [**Industrial Guide**](./HOW_TO_USE_IT.md) | [HOW_TO_USE_IT.md](./HOW_TO_USE_IT.md) |
|
|
121
|
+
| [**Release Manifest**](./RELEASE_NOTES_MANIFEST.md) | [RELEASE_NOTES_MANIFEST.md](./RELEASE_NOTES_MANIFEST.md) |
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## 🏛️ Enterprise Use Cases
|
|
126
|
+
Continuity Legacy solves the "Semantic Drift" in long-term AI-Human collaboration:
|
|
127
|
+
1. **Cross-Agent Handoffs**: Transfer full project context between different AI models (GPT-4 to Claude to local LLMs) with zero context loss.
|
|
128
|
+
2. **Multi-Day RAG Stability**: Ensures that Retrieval-Augmented Generation systems always point to the canonical source of truth, even after system resets.
|
|
129
|
+
3. **Legacy Restoration**: Instantly reconstruct the architectural intent of a project years after the last human developer has left.
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## 🏛️ Software Supply Chain Security (SLSA)
|
|
134
|
+
Continuity Legacy implements high-integrity governance for the project lineage:
|
|
135
|
+
- **RFC 6962 Merkle Integrity**: Every markdown file is part of a Merkle Tree. A single byte change in your documentation alters the root hash.
|
|
136
|
+
- **Deterministic Synthesis**: Cross-platform verification (Windows/Linux) ensures that the "Project Soul" is identical across all environments.
|
|
137
|
+
- **Fail-Closed Hooks**: Native Git-Hooks that block pushes if the DNA drift is detected.
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## 🏛️ The Triple-Tier Ecosystem
|
|
142
|
+
Continuity provides three levels of depth in governance:
|
|
143
|
+
- **Border Control**: Strict validation of commits against the project's logical heritage.
|
|
144
|
+
- **DNA Integrity**: Automated file synchronization of documentation and source code.
|
|
145
|
+
- **Global Awareness**: Full documentation and CLI support localized in 9 languages.
|
|
146
|
+
- **Diamond Sanitization**: Deep purge of encoding errors (mojibake) and streamlined terminal-friendly directory structures.
|
|
147
|
+
- **[NEW] Token Sentinel (v1.0)**: Integrated telemetry to monitor project "Cognitive Weight" and optimize LLM context consumption.
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## 📊 Technical Specifications (Hardware Profiles)
|
|
152
|
+
Each edition is optimized for specific resource footprints:
|
|
153
|
+
|
|
154
|
+
| Edition | RAM (Min) | Storage | Dependencies | Best For |
|
|
155
|
+
| :--- | :--- | :--- | :--- | :--- |
|
|
156
|
+
| **Lite** | < 100 MB | < 5 MB | Zero | Local Dev / CI-CD |
|
|
157
|
+
| **Pro** | 4 GB | 50 MB | Standard | Industrial Handoffs |
|
|
158
|
+
| **Omega** | 16 GB+ | 500 MB+ | RAG/Graph | Enterprise Strategy |
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## ⏱️ 30-Second Quickstart (The Onboarding Experience)
|
|
163
|
+
|
|
164
|
+
> **`example-project/`** is a pre-configured sandbox included in this repository. It simulates a real project already managed by Continuity Legacy.
|
|
165
|
+
|
|
166
|
+
1. **Navigate to the example environment**:
|
|
167
|
+
```bash
|
|
168
|
+
cd example-project
|
|
169
|
+
```
|
|
170
|
+
2. **Verify the DNA Parity**:
|
|
171
|
+
```bash
|
|
172
|
+
python ../continuity-lite/run_continuity_lite.py check
|
|
173
|
+
```
|
|
174
|
+
3. **Expected Outcome**: You will see a green `[✔] Parity Confirmed`.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## 🚀 Quick Installation
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
# 1. Clone the repository
|
|
182
|
+
git clone https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium.git
|
|
183
|
+
cd CONTINUITY-LEGACY-by-Ethernium
|
|
184
|
+
|
|
185
|
+
# 2. Install from PyPI (when published)
|
|
186
|
+
pip install ethernium-continuity-lite
|
|
187
|
+
|
|
188
|
+
# Or install locally in editable mode
|
|
189
|
+
pip install -e continuity-lite
|
|
190
|
+
|
|
191
|
+
# 3. Activate the Sentinel Guardian (auto Git-Hooks + DNA init)
|
|
192
|
+
continuity-lite init
|
|
193
|
+
|
|
194
|
+
# 4. Verify your DNA parity
|
|
195
|
+
continuity-lite check
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## 🏛️ Architecture: Memory Core
|
|
201
|
+
Continuity Legacy uses a **Total Decoupling** design. Editions are not a monolithic block, but independent tools operating on a single source of truth:
|
|
202
|
+
|
|
203
|
+
* **Absolute Independence**: Using `Lite` does not consume `Pro` or `Omega` resources. Engines only consume RAM/CPU on demand.
|
|
204
|
+
* **Common Substrate**: All editions share the `.continuity/STATE.json` and `PROJECT_CONTEXT.md`.
|
|
205
|
+
* **Passive Interoperability**: A change registered by one edition is immediately visible to others, ensuring the logical lineage flows without friction.
|
|
206
|
+
|
|
207
|
+
### 📊 The NEXUS v2.10.0 Sovereign Audit Cycle
|
|
208
|
+
```mermaid
|
|
209
|
+
sequenceDiagram
|
|
210
|
+
participant D as Developer (Architect)
|
|
211
|
+
participant SDK as SDK Identity (ED25519)
|
|
212
|
+
participant HG as Hub Guardian (GHOST_MODE)
|
|
213
|
+
participant TC as THE_CHOSEN_ONES (Registry)
|
|
214
|
+
participant DNA as DNA Ledger (STATE.json)
|
|
215
|
+
|
|
216
|
+
D->>SDK: Sign Context Seed
|
|
217
|
+
SDK->>HG: Verify Sovereign Identity
|
|
218
|
+
HG->>TC: Audit Collaborator Key
|
|
219
|
+
alt Identity Verified
|
|
220
|
+
TC->>HG: Grant Access (Open Nucleotides)
|
|
221
|
+
HG->>DNA: Update Merkle Root
|
|
222
|
+
HG->>D: Green Badge (v2.10.0)
|
|
223
|
+
else Identity Missing
|
|
224
|
+
HG->>D: REJECT (v2.10.0-SDK_ERROR)
|
|
225
|
+
Note over HG: Context stays LOCKED
|
|
226
|
+
end
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## 🚀 Operating Modes
|
|
232
|
+
Continuity Legacy can be integrated into your workflow in three main ways:
|
|
233
|
+
|
|
234
|
+
1. **Autonomous Mode (CLI)**: Run `continuity-lite status` or `check` manually.
|
|
235
|
+
2. **Sentinel Mode (Automatic Guardian)**: Use `continuity-lite init` to install Git-Hooks automatically.
|
|
236
|
+
3. **Auditor Mode (Manual DNA)**: Use the parity script to generate drift reports.
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## 🧠 Key Features (Industrial Symphony)
|
|
241
|
+
- **Metabolism Optimization**: Typ-Rich engine with <100ms startup and lazy-loading of cores.
|
|
242
|
+
- **DNA Synthesis**: Merkle Tree cryptographic protection (SHA-256).
|
|
243
|
+
- **Sovereign Identity**: Digital signing of Project DNA using ED25519 (v2.6.0+).
|
|
244
|
+
- **Dual Bridge Portals**: Symmetric Identity for ZIP files (`Ethernium_Portal_Inside/Outside`).
|
|
245
|
+
- **Token Sentinel**: Context telemetry and x10 optimization via ENE.
|
|
246
|
+
- **Governance**: Sentinel Guardian with automatic Git-Hooks and session logging.
|
|
247
|
+
- **Global Symmetry**: Industrial-grade documentation and CLI support in 9 languages.
|
|
248
|
+
- **Industrial Sanitization**: Full purge of UTF-16 files and tactical debris.
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## 🧩 Core Infrastructure (The Cognitive Core)
|
|
253
|
+
Continuity organizes project intelligence into structured nodes:
|
|
254
|
+
* **.continuity/**: The memory core with `TIMELINE.md` and `DECISIONS_LOG.md`.
|
|
255
|
+
* **`STATE.json`**: State snapshot protected by SHA-256 signature.
|
|
256
|
+
* **`PROJECT_CONTEXT.md`**: Defines the rules and the strategic soul of the system.
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## 🪐 Tokenator v2.9.3: Information Physics & SDK Sealing
|
|
261
|
+
Tokenator is the cognitive engine that manages context density and security. It operates on the principles of **Information Theory** to minimize token cost while maximizing logical purity.
|
|
262
|
+
|
|
263
|
+
---
|
|
264
|
+
|
|
265
|
+
## 🔍 The Quality Flow (The Border Guard)
|
|
266
|
+
Continuity actúa como un "Socratic Firewall". Protege tu intención de diseño mediante un bucle de validación determinista.
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
### 🧪 Technical Flow: The Synthesis Engine
|
|
271
|
+
```mermaid
|
|
272
|
+
graph LR
|
|
273
|
+
subgraph "Input Layer"
|
|
274
|
+
RAW[Raw Context/Code]
|
|
275
|
+
end
|
|
276
|
+
subgraph "Processing Layer (NEXUS)"
|
|
277
|
+
RAW --> H[Shannon Entropy Audit]
|
|
278
|
+
H -- "H < 5.0 (Pure)" --> ENE[ENE v3.0 Mapping]
|
|
279
|
+
H -- "H > 5.0 (Noisy)" --> REF[Suggest Refactor]
|
|
280
|
+
ENE --> SYMB[Symbolic Equations]
|
|
281
|
+
end
|
|
282
|
+
subgraph "Security Layer (THE_CHOSEN_ONES)"
|
|
283
|
+
SYMB --> SDK[SDK Sealing]
|
|
284
|
+
SDK -- "GHOST MODE" --> LOCK[Encrypted Nucleotide .locked]
|
|
285
|
+
end
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
### ⚛️ Conceptual Flow: Information Physics (Singularity)
|
|
289
|
+
```mermaid
|
|
290
|
+
graph TD
|
|
291
|
+
A[Context Gravity] -- "Raw Fragments" --> B((Entropy Reduction))
|
|
292
|
+
B -- "Minimizing H(X)" --> C[Logic Density Maximized]
|
|
293
|
+
C -- "NEXUS Core" --> D{Sovereign Persistence}
|
|
294
|
+
D -- "Authorized" --> E[Instant Context Restoration]
|
|
295
|
+
D -- "Unauthorized" --> F[Semantic Silence]
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## 🧬 Guardian DNA (Technical Specification)
|
|
301
|
+
**Continuity Legacy** utiliza un algoritmo de hashing "Nucleótido" determinista para generar la identidad única de un proyecto.
|
|
302
|
+
|
|
303
|
+
- **Nucleotide Hashing**: Cada artefacto canónico (`.md`, `.json`) es procesado usando **SHA-256**.
|
|
304
|
+
- **DNA Synthesis**: El sistema agrega estos segmentos en un **Merkle Tree** jerárquico.
|
|
305
|
+
- **The Merkle Root**: El hash final que representa el **Estado Absoluto**.
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## 🌌 Origins: The Ethernium Heritage
|
|
310
|
+
## 🤝 Community & Governance
|
|
311
|
+
The **NEXUS Phase** is governed by the **THE_CHOSEN_ONES** protocol. Open source contributions are welcomed, but critical logic and symbolic DNA are protected.
|
|
312
|
+
|
|
313
|
+
- **How to Collaborate**: See [CONTRIBUTING.md](CONTRIBUTING.md) for keys and access.
|
|
314
|
+
- **Support**: Reach out via [X (@ethernium)](https://x.com/ethernium) or [Email](mailto:etherniumcorp@outlook.com)
|
|
315
|
+
|
|
316
|
+
**Continuity Legacy** was born from the systemic need within the **Ethernium Ecosystem**, an evolving frontier of cognitive computing and autonomous systems. Where session resets occur millions of times, the risk of "Semantic Entropy" was critical. We needed to ensure that the *soul* of a project transitioned from one cognitive instance to the next without loss or drift.
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
*Continuity Legacy: Protecting the logical lineage of your software.*
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/main/banners/ethernium_header.png?raw=true" alt="Ethernium Continuity Legacy Official Header">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# Continuity Legacy: Persistent Cognitive Layer 🧬
|
|
6
|
+
|
|
7
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/actions/workflows/industrial_guardian.yml)
|
|
8
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/releases)
|
|
9
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/LICENSE)
|
|
10
|
+
[](https://www.python.org/downloads/release/python-3100/)
|
|
11
|
+
|
|
12
|
+
#### Languages
|
|
13
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_es.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/README.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_ja.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_zh.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_ru.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_fr.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_it.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_de.md) [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/OTHER_LANGUAGES/README_pt.md)
|
|
14
|
+
|
|
15
|
+
"**AI doesn't forget anymore.**"
|
|
16
|
+
|
|
17
|
+
*This prevents LLMs from losing context and destroying your codebase, mathematically forcing them to align with a cryptographic hash.*
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 🏛️ Enterprise Use Cases
|
|
22
|
+
Continuity Legacy solves the "Semantic Drift" in long-term AI-Human collaboration:
|
|
23
|
+
1. **Cross-Agent Handoffs**: Transfer full project context between different AI models (GPT-4 to Claude to local LLMs) with zero context loss.
|
|
24
|
+
2. **Multi-Day RAG Stability**: Ensures that Retrieval-Augmented Generation systems always point to the canonical source of truth, even after system resets.
|
|
25
|
+
3. **Legacy Restoration**: Instantly reconstruct the architectural intent of a project years after the last human developer has left.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## ⚡ 30-Second Quickstart (Professional Onboarding)
|
|
30
|
+
Get the entire Ethernium Continuity Ecosystem running in seconds:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# Install the unified metapackage
|
|
34
|
+
pip install continuity-legacy
|
|
35
|
+
|
|
36
|
+
# Initialize the Guardian DNA in your current project
|
|
37
|
+
continuity init
|
|
38
|
+
|
|
39
|
+
# Verify state consistency
|
|
40
|
+
continuity status
|
|
41
|
+
|
|
42
|
+
# [NEW] Audit project cognitive weight (tokens)
|
|
43
|
+
continuity-tokens scan
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## 🛡️ Industrial Proof & Quality
|
|
49
|
+
To address the need for concrete evidence, we provide a verified Case Study and Benchmarks:
|
|
50
|
+
* [**CASE_STUDY_DRIFT.md**](./CASE_STUDY_DRIFT.md): A real-world demonstration of how Continuity detects and blocks unauthorized semantic changes that Git ignores.
|
|
51
|
+
* [**BENCHMARKS.md**](./BENCHMARKS.md): Measured performance results (Latencies, Memory footprint, and Merkle scan speeds).
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
<!-- DNA_CRYSTAL -->
|
|
57
|
+
> [!IMPORTANT]
|
|
58
|
+
> **DNA CRYSTAL**: `v3.0.0-1c0e806954bc423f`
|
|
59
|
+
> [](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium)
|
|
60
|
+
|
|
61
|
+
## 🏛️ Table of Contents
|
|
62
|
+
1. [Choose Your Edition](#-choose-your-edition)
|
|
63
|
+
2. [Technical Specifications](#-technical-specifications-hardware-profiles)
|
|
64
|
+
3. [30-Second Quickstart](#-30-second-quickstart-the-onboarding-experience)
|
|
65
|
+
4. [Quick Installation](#-quick-installation)
|
|
66
|
+
5. [Operation Modes](#-modos-de-operación-how-to-use)
|
|
67
|
+
6. [Core Infrastructure](#-core-infrastructure-the-cognitive-core)
|
|
68
|
+
7. [The Quality Flow](#-the-quality-flow-the-border-guard)
|
|
69
|
+
8. [Guardian DNA Algorithm](#-guardian-dna-technical-specification)
|
|
70
|
+
9. [Origins: The Ethernium Heritage](#-origins-the-ethernium-heritage)
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 🏛️ Choose Your Edition
|
|
75
|
+
|
|
76
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-lite/)
|
|
77
|
+
_Minimalist local sync with DNA Synthesis for zero-loss handoffs._
|
|
78
|
+
|
|
79
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-pro/)
|
|
80
|
+
_Industrial-grade border guard. Features Enterprise-grade cyber-security, RFC 6962 Merkle Hardening, and Fail-Closed Hooks._
|
|
81
|
+
|
|
82
|
+
[](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium/blob/main/continuity-omega/)
|
|
83
|
+
_Advanced RAG, cognitive mapping, and a stunning 3D Glassmorphic Dashboard for impactful data visualization._
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
| Guide | Link |
|
|
88
|
+
| :--- | :--- |
|
|
89
|
+
| [**Industrial Guide**](./HOW_TO_USE_IT.md) | [HOW_TO_USE_IT.md](./HOW_TO_USE_IT.md) |
|
|
90
|
+
| [**Release Manifest**](./RELEASE_NOTES_MANIFEST.md) | [RELEASE_NOTES_MANIFEST.md](./RELEASE_NOTES_MANIFEST.md) |
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## 🏛️ Enterprise Use Cases
|
|
95
|
+
Continuity Legacy solves the "Semantic Drift" in long-term AI-Human collaboration:
|
|
96
|
+
1. **Cross-Agent Handoffs**: Transfer full project context between different AI models (GPT-4 to Claude to local LLMs) with zero context loss.
|
|
97
|
+
2. **Multi-Day RAG Stability**: Ensures that Retrieval-Augmented Generation systems always point to the canonical source of truth, even after system resets.
|
|
98
|
+
3. **Legacy Restoration**: Instantly reconstruct the architectural intent of a project years after the last human developer has left.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## 🏛️ Software Supply Chain Security (SLSA)
|
|
103
|
+
Continuity Legacy implements high-integrity governance for the project lineage:
|
|
104
|
+
- **RFC 6962 Merkle Integrity**: Every markdown file is part of a Merkle Tree. A single byte change in your documentation alters the root hash.
|
|
105
|
+
- **Deterministic Synthesis**: Cross-platform verification (Windows/Linux) ensures that the "Project Soul" is identical across all environments.
|
|
106
|
+
- **Fail-Closed Hooks**: Native Git-Hooks that block pushes if the DNA drift is detected.
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## 🏛️ The Triple-Tier Ecosystem
|
|
111
|
+
Continuity provides three levels of depth in governance:
|
|
112
|
+
- **Border Control**: Strict validation of commits against the project's logical heritage.
|
|
113
|
+
- **DNA Integrity**: Automated file synchronization of documentation and source code.
|
|
114
|
+
- **Global Awareness**: Full documentation and CLI support localized in 9 languages.
|
|
115
|
+
- **Diamond Sanitization**: Deep purge of encoding errors (mojibake) and streamlined terminal-friendly directory structures.
|
|
116
|
+
- **[NEW] Token Sentinel (v1.0)**: Integrated telemetry to monitor project "Cognitive Weight" and optimize LLM context consumption.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 📊 Technical Specifications (Hardware Profiles)
|
|
121
|
+
Each edition is optimized for specific resource footprints:
|
|
122
|
+
|
|
123
|
+
| Edition | RAM (Min) | Storage | Dependencies | Best For |
|
|
124
|
+
| :--- | :--- | :--- | :--- | :--- |
|
|
125
|
+
| **Lite** | < 100 MB | < 5 MB | Zero | Local Dev / CI-CD |
|
|
126
|
+
| **Pro** | 4 GB | 50 MB | Standard | Industrial Handoffs |
|
|
127
|
+
| **Omega** | 16 GB+ | 500 MB+ | RAG/Graph | Enterprise Strategy |
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## ⏱️ 30-Second Quickstart (The Onboarding Experience)
|
|
132
|
+
|
|
133
|
+
> **`example-project/`** is a pre-configured sandbox included in this repository. It simulates a real project already managed by Continuity Legacy.
|
|
134
|
+
|
|
135
|
+
1. **Navigate to the example environment**:
|
|
136
|
+
```bash
|
|
137
|
+
cd example-project
|
|
138
|
+
```
|
|
139
|
+
2. **Verify the DNA Parity**:
|
|
140
|
+
```bash
|
|
141
|
+
python ../continuity-lite/run_continuity_lite.py check
|
|
142
|
+
```
|
|
143
|
+
3. **Expected Outcome**: You will see a green `[✔] Parity Confirmed`.
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## 🚀 Quick Installation
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
# 1. Clone the repository
|
|
151
|
+
git clone https://github.com/SteveBlackbeard/CONTINUITY-LEGACY-by-Ethernium.git
|
|
152
|
+
cd CONTINUITY-LEGACY-by-Ethernium
|
|
153
|
+
|
|
154
|
+
# 2. Install from PyPI (when published)
|
|
155
|
+
pip install ethernium-continuity-lite
|
|
156
|
+
|
|
157
|
+
# Or install locally in editable mode
|
|
158
|
+
pip install -e continuity-lite
|
|
159
|
+
|
|
160
|
+
# 3. Activate the Sentinel Guardian (auto Git-Hooks + DNA init)
|
|
161
|
+
continuity-lite init
|
|
162
|
+
|
|
163
|
+
# 4. Verify your DNA parity
|
|
164
|
+
continuity-lite check
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
## 🏛️ Architecture: Memory Core
|
|
170
|
+
Continuity Legacy uses a **Total Decoupling** design. Editions are not a monolithic block, but independent tools operating on a single source of truth:
|
|
171
|
+
|
|
172
|
+
* **Absolute Independence**: Using `Lite` does not consume `Pro` or `Omega` resources. Engines only consume RAM/CPU on demand.
|
|
173
|
+
* **Common Substrate**: All editions share the `.continuity/STATE.json` and `PROJECT_CONTEXT.md`.
|
|
174
|
+
* **Passive Interoperability**: A change registered by one edition is immediately visible to others, ensuring the logical lineage flows without friction.
|
|
175
|
+
|
|
176
|
+
### 📊 The NEXUS v2.10.0 Sovereign Audit Cycle
|
|
177
|
+
```mermaid
|
|
178
|
+
sequenceDiagram
|
|
179
|
+
participant D as Developer (Architect)
|
|
180
|
+
participant SDK as SDK Identity (ED25519)
|
|
181
|
+
participant HG as Hub Guardian (GHOST_MODE)
|
|
182
|
+
participant TC as THE_CHOSEN_ONES (Registry)
|
|
183
|
+
participant DNA as DNA Ledger (STATE.json)
|
|
184
|
+
|
|
185
|
+
D->>SDK: Sign Context Seed
|
|
186
|
+
SDK->>HG: Verify Sovereign Identity
|
|
187
|
+
HG->>TC: Audit Collaborator Key
|
|
188
|
+
alt Identity Verified
|
|
189
|
+
TC->>HG: Grant Access (Open Nucleotides)
|
|
190
|
+
HG->>DNA: Update Merkle Root
|
|
191
|
+
HG->>D: Green Badge (v2.10.0)
|
|
192
|
+
else Identity Missing
|
|
193
|
+
HG->>D: REJECT (v2.10.0-SDK_ERROR)
|
|
194
|
+
Note over HG: Context stays LOCKED
|
|
195
|
+
end
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## 🚀 Operating Modes
|
|
201
|
+
Continuity Legacy can be integrated into your workflow in three main ways:
|
|
202
|
+
|
|
203
|
+
1. **Autonomous Mode (CLI)**: Run `continuity-lite status` or `check` manually.
|
|
204
|
+
2. **Sentinel Mode (Automatic Guardian)**: Use `continuity-lite init` to install Git-Hooks automatically.
|
|
205
|
+
3. **Auditor Mode (Manual DNA)**: Use the parity script to generate drift reports.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## 🧠 Key Features (Industrial Symphony)
|
|
210
|
+
- **Metabolism Optimization**: Typ-Rich engine with <100ms startup and lazy-loading of cores.
|
|
211
|
+
- **DNA Synthesis**: Merkle Tree cryptographic protection (SHA-256).
|
|
212
|
+
- **Sovereign Identity**: Digital signing of Project DNA using ED25519 (v2.6.0+).
|
|
213
|
+
- **Dual Bridge Portals**: Symmetric Identity for ZIP files (`Ethernium_Portal_Inside/Outside`).
|
|
214
|
+
- **Token Sentinel**: Context telemetry and x10 optimization via ENE.
|
|
215
|
+
- **Governance**: Sentinel Guardian with automatic Git-Hooks and session logging.
|
|
216
|
+
- **Global Symmetry**: Industrial-grade documentation and CLI support in 9 languages.
|
|
217
|
+
- **Industrial Sanitization**: Full purge of UTF-16 files and tactical debris.
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
221
|
+
## 🧩 Core Infrastructure (The Cognitive Core)
|
|
222
|
+
Continuity organizes project intelligence into structured nodes:
|
|
223
|
+
* **.continuity/**: The memory core with `TIMELINE.md` and `DECISIONS_LOG.md`.
|
|
224
|
+
* **`STATE.json`**: State snapshot protected by SHA-256 signature.
|
|
225
|
+
* **`PROJECT_CONTEXT.md`**: Defines the rules and the strategic soul of the system.
|
|
226
|
+
|
|
227
|
+
---
|
|
228
|
+
|
|
229
|
+
## 🪐 Tokenator v2.9.3: Information Physics & SDK Sealing
|
|
230
|
+
Tokenator is the cognitive engine that manages context density and security. It operates on the principles of **Information Theory** to minimize token cost while maximizing logical purity.
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## 🔍 The Quality Flow (The Border Guard)
|
|
235
|
+
Continuity actúa como un "Socratic Firewall". Protege tu intención de diseño mediante un bucle de validación determinista.
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
### 🧪 Technical Flow: The Synthesis Engine
|
|
240
|
+
```mermaid
|
|
241
|
+
graph LR
|
|
242
|
+
subgraph "Input Layer"
|
|
243
|
+
RAW[Raw Context/Code]
|
|
244
|
+
end
|
|
245
|
+
subgraph "Processing Layer (NEXUS)"
|
|
246
|
+
RAW --> H[Shannon Entropy Audit]
|
|
247
|
+
H -- "H < 5.0 (Pure)" --> ENE[ENE v3.0 Mapping]
|
|
248
|
+
H -- "H > 5.0 (Noisy)" --> REF[Suggest Refactor]
|
|
249
|
+
ENE --> SYMB[Symbolic Equations]
|
|
250
|
+
end
|
|
251
|
+
subgraph "Security Layer (THE_CHOSEN_ONES)"
|
|
252
|
+
SYMB --> SDK[SDK Sealing]
|
|
253
|
+
SDK -- "GHOST MODE" --> LOCK[Encrypted Nucleotide .locked]
|
|
254
|
+
end
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
### ⚛️ Conceptual Flow: Information Physics (Singularity)
|
|
258
|
+
```mermaid
|
|
259
|
+
graph TD
|
|
260
|
+
A[Context Gravity] -- "Raw Fragments" --> B((Entropy Reduction))
|
|
261
|
+
B -- "Minimizing H(X)" --> C[Logic Density Maximized]
|
|
262
|
+
C -- "NEXUS Core" --> D{Sovereign Persistence}
|
|
263
|
+
D -- "Authorized" --> E[Instant Context Restoration]
|
|
264
|
+
D -- "Unauthorized" --> F[Semantic Silence]
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
---
|
|
268
|
+
|
|
269
|
+
## 🧬 Guardian DNA (Technical Specification)
|
|
270
|
+
**Continuity Legacy** utiliza un algoritmo de hashing "Nucleótido" determinista para generar la identidad única de un proyecto.
|
|
271
|
+
|
|
272
|
+
- **Nucleotide Hashing**: Cada artefacto canónico (`.md`, `.json`) es procesado usando **SHA-256**.
|
|
273
|
+
- **DNA Synthesis**: El sistema agrega estos segmentos en un **Merkle Tree** jerárquico.
|
|
274
|
+
- **The Merkle Root**: El hash final que representa el **Estado Absoluto**.
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## 🌌 Origins: The Ethernium Heritage
|
|
279
|
+
## 🤝 Community & Governance
|
|
280
|
+
The **NEXUS Phase** is governed by the **THE_CHOSEN_ONES** protocol. Open source contributions are welcomed, but critical logic and symbolic DNA are protected.
|
|
281
|
+
|
|
282
|
+
- **How to Collaborate**: See [CONTRIBUTING.md](CONTRIBUTING.md) for keys and access.
|
|
283
|
+
- **Support**: Reach out via [X (@ethernium)](https://x.com/ethernium) or [Email](mailto:etherniumcorp@outlook.com)
|
|
284
|
+
|
|
285
|
+
**Continuity Legacy** was born from the systemic need within the **Ethernium Ecosystem**, an evolving frontier of cognitive computing and autonomous systems. Where session resets occur millions of times, the risk of "Semantic Entropy" was critical. We needed to ensure that the *soul* of a project transitioned from one cognitive instance to the next without loss or drift.
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
*Continuity Legacy: Protecting the logical lineage of your software.*
|