#HELIX CORE
HELIX CORE is a layered, sovereign architecture for building, auditing, and governing autonomous AI systems with embedded ethics and verifiable accountability. It spans from foundational identity to metabolic ledger operations.
๐ฎ For all implementation support, next-step planning, and project discussions, contact the core team: helix.project.ai@helixprojectai.com =======
Constitutional oversight layer for Python scripts in the HELIX AI ecosystem.
The Sovereign Runtime provides constitutional governance for Python scripts, ensuring:
The system is structured across five sovereign layers (L0-L4), implemented as Git submodules, with a central vault.
| Layer | Path | Description | Type |
|---|---|---|---|
| L0 | ./identity/ |
Source: DBC & Suitcase โ Foundational identity and capability declarations. | Submodule |
| L1 | ./constitution/ |
Source: Rust REM โ Constitutional rule engine and execution monitor. | Submodule |
| L2 | ./hgl/ |
Source: HGL Compiler โ Hierarchical Grammar Language compiler for policy. | Submodule |
| L3 | ./grammar/ |
Source: Constitutional Grammar โ Definitive grammar for sovereign clauses. | Submodule |
| L4 | ./helix-ledger/ |
Source: Metabolic Anchor (V9 Stable) โ Immutable proof and state ledger. | Submodule |
| โ | ./agents/ |
The Vault: Stored DBCs and Glyphs โ Secure storage for agents and artifacts. | Shared Volume |
Core Data Flow:
Identity (L0) โ Constitution (L1) โ HGL Policy (L2) โ Grammar Binding (L3) โ Ledger Proof (L4)
Deploy the full sovereign stack with a single sequence.
git clone --recursive https://github.com/helixprojectai-code/HELIX-CORE.git
cd HELIX-COREIgnites all layers and the monitoring stack.
docker-compose -f docker-compose.prod.yml up -d| Task | Command | What to Look For |
|---|---|---|
| Check Fleet Status | docker-compose -f docker-compose.prod.yml ps |
All services show Up. |
| View Launch Logs | docker-compose -f docker-compose.prod.yml logs --tail=50 |
Look for INFO/Started messages. |
| Stream Live Logs | docker-compose -f docker-compose.prod.yml logs -f |
Real-time monitoring (exit with Ctrl+C). |
| Stop the Fleet | docker-compose -f docker-compose.prod.yml down |
Stops and removes all containers. |
| Stop & Preserve Data | docker-compose -f docker-compose.prod.yml stop |
Stops containers but keeps them. |
HELIX CORE operates under active constitutional principles. All layer transitions and ledger entries are subject to precedent-based review.
We welcome deep technical discussions on layer integration, grammar extensions, and ledger proofs.
The central channel for all planning is: ๐ง helix.project.ai@helixprojectai.com
Use this email for:
- Proposing new DBC structures or glyphs for The Vault.
- Discussing extensions to the Constitutional Grammar (L3) or HGL Compiler (L2).
- Reporting complex, multi-layer integration issues.
- Requesting access for collaborative development on specific layers.
- Use repository Issues for reporting clear bugs within a single layer.
- For configuration help, deployment issues, or strategic guidance, emailing the core team is the most efficient path.
- Verify Submodules: Ensure all layers are checked out:
git submodule status - Check Service Logs:
docker-compose -f docker-compose.prod.yml logs [service_name] - Verify Container Status:
docker-compose -f docker-compose.prod.yml ps - Ensure Ports Are Free: Key ports (
3100,8080,6333) must not conflict.
- L0/L1 Issues: Check identity binding and REM rule compilation logs.
- L2/L3 Issues: Validate HGL policy files and grammar syntax.
- L4 Issues: Confirm ledger connectivity and proof generation.
- Vault Issues: Verify volume mounts and artifact permissions in
./agents/.
If you encounter issues:
- Document Context: Note your environment (OS, Docker version) and the affected layer.
- Capture Logs: Include full error messages and relevant layer logs.
- Contact Core Team: Send structured details to helix.project.ai@helixprojectai.com.
- Email (Primary): helix.project.ai@helixprojectai.com
- Source Code:
https://github.com/helixprojectai-code/HELIX-CORE.git
Next Phase Planning: Interested in expanding constitutional grammars, new metabolic ledger features, or agent vault protocols? Strategic planning is coordinated via our primary email.
- Deterministic Execution - Reproducible results for precedent-setting operations
- Automatic Auditing - Every function call is logged with constitutional proof
- Message Governance - Inter-script communication with authority verification
- Self-Healing Integration - Anomaly detection and recovery coordination
from sovereign_runtime import constitutional_agent
@constitutional_agent
def your_function(*args, **kwargs):
# Your code now has constitutional oversight
return result
Integration with HELIX
This package is part of the HELIX-CORE unified repository and integrates with:
L0: Identity Layer (DBC & Suitcase)
L4: Metabolic Anchor (Helix Ledger V9)
The Vault (Agent storage and glyphs)
Installation
Development install:
bash
pip install -e .
Production via Docker:
bash
docker-compose -f docker-compose.prod.yml up -d sovereign-runtime
License
Part of the HELIX Sovereign AI Framework.
>>>>>>> Stashed changes