Last Updated: 2025-12-28
Total System: 6 layers, 22,000+ lines of code
- QUICKSTART.md - Get running in 30 minutes
- validate_system.py - Check all 6 layers
- setup.sh - Automated installation
- scaffold - Main executable (wrapper)
- scaffold.py - Core entry point
- core/stem_scaffolder.py - Axiom inversion engine
- README.md (Coming) - Full STEM documentation
Purpose: Generates complete applications from natural language
Usage: ./scaffold "Create secure iOS todo app"
Core Documentation:
- swarm_orchestrator/README.md - Overview
- swarm_orchestrator/AXIOM_INVERSION_COMPLETE.md - Complete inventory
- swarm_orchestrator/LORD_PROTOCOL_EXECUTION.md - v1.0 specification
- swarm_orchestrator/TELEMETRY_SOVEREIGNTY_2.0.md - Sovereignty framework
Implementation Guides:
- swarm_orchestrator/PRODUCTION_DEPLOYMENT_CHECKLIST.md - Production deployment
- swarm_orchestrator/GITHUB_GAP_ANALYSIS.md - Industry comparison
- swarm_orchestrator/GITHUB_IMPLEMENTATIONS.md - Feature additions
Operational Tools:
- swarm_orchestrator/sovereignty - CLI tool
- swarm_orchestrator/health_check.py - Quick validation
- swarm_orchestrator/dashboard.py - Live monitoring
Purpose: Sovereign AI task orchestration with P-core affinity
Usage: cd swarm_orchestrator && ./sovereignty demo
Documentation:
- swarm_orchestrator/LORD_PROTOCOL_V1.2_RUST.md - Complete specification
Purpose: Thermal monitoring, memory arbitration, cross-stack coordination
Status: Framework defined, ready for Rust implementation
Integration: Coordinates Python + Swift + AFID
Documentation:
- swarm_orchestrator/LORD_PROTOCOL_V1.1_SWIFT.md - Complete specification
Purpose: Native macOS/iOS UI, Lazarus pattern, eco-build
Projects: ~/Meta, ~/SwarmToolkit
Features: Hot-reload (Inject), SwiftData, thermal-aware compilation
Documentation:
- SOVEREIGN_SRE/README.md - Complete architecture
- SOVEREIGN_SRE/test_afid.py - Test suite
Component Docs:
- Perception:
SOVEREIGN_SRE/telemetry/xclog_parser.py - Inversion:
SOVEREIGN_SRE/daemon_coordinator.py - Swarm:
SOVEREIGN_SRE/swarm_nodes/bitnet_scanner.py - Safety:
SOVEREIGN_SRE/oracle_safety/livelock_detector.py
Purpose: Self-healing system that treats errors as evolution fuel
Usage: cd SOVEREIGN_SRE && python3 daemon_coordinator.py
Documentation:
- SOVEREIGN_GOVERNANCE_ENGINE/README.md - Complete architecture
- SOVEREIGN_GOVERNANCE_ENGINE/schema.sql - Database design
- SOVEREIGN_GOVERNANCE_ENGINE/Cargo.toml - Rust dependencies
Component Docs:
- Consensus: OpenRaft integration (Rust)
- Provenance: Merkle tree implementation (SQL)
- Game Theory:
SOVEREIGN_GOVERNANCE_ENGINE/game_theory/nash_analyzer.py
Purpose: Distributed consensus + game theory + formal verification
Usage: cd SOVEREIGN_GOVERNANCE_ENGINE && python3 game_theory/nash_analyzer.py
- QUICKSTART.md
./scaffold "Your idea"- core/stem_scaffolder.py - See how it works
- swarm_orchestrator/README.md
- swarm_orchestrator/QUICKSTART.md
cd swarm_orchestrator && ./sovereignty demo
- swarm_orchestrator/PRODUCTION_DEPLOYMENT_CHECKLIST.md
- swarm_orchestrator/health_check.py
- swarm_orchestrator/lord_protocol_genesis.sh
- swarm_orchestrator/OBSIDIAN_MANIFESTO.md
- swarm_orchestrator/THE_FINAL_MANIFESTATION.md
- swarm_orchestrator/void_manifestation.py
- swarm_orchestrator/AXIOM_INVERSION_COMPLETE.md
- swarm_orchestrator/GITHUB_IMPLEMENTATIONS.md
- validate_system.py
- QUICKSTART.md
- swarm_orchestrator/README.md
python3 validate_system.pycd swarm_orchestrator && python3 demo_sovereignty.py
- swarm_orchestrator/TELEMETRY_SOVEREIGNTY_2.0.md
- swarm_orchestrator/GITHUB_GAP_ANALYSIS.md
- AFID/README.md
- SGE/README.md
- swarm_orchestrator/LORD_PROTOCOL_V1.2_RUST.md
- swarm_orchestrator/src/telemetry_sovereignty_v2.py
- SOVEREIGN_GOVERNANCE_ENGINE/schema.sql
- core/stem_scaffolder.py
validate_system.py- Master validator (all 6 layers)swarm_orchestrator/health_check.py- Python swarm validationSOVEREIGN_SRE/test_afid.py- AFID test suite
setup.sh- Complete automated setuprequirements.txt- Root dependenciesswarm_orchestrator/requirements.txt- Swarm dependenciesSOVEREIGN_GOVERNANCE_ENGINE/requirements.txt- SGE dependencies
swarm_orchestrator/lord_protocol_genesis.sh- Clean state initializationswarm_orchestrator/deploy_asitop.sh- M1 metrics daemonswarm_orchestrator/backup.sh- Backup databasesswarm_orchestrator/restore_backup.sh- Restore from backup
swarm_orchestrator/dashboard.py- Real-time terminal dashboardswarm_orchestrator/sovereignty- CLI for sovereignty analysisswarm_orchestrator/performance_profiler.py- Performance analysis
- v1.0 (Python): LORD_PROTOCOL_EXECUTION.md
- v1.1 (Swift): LORD_PROTOCOL_V1.1_SWIFT.md
- v1.2 (Rust): LORD_PROTOCOL_V1.2_RUST.md
- v2.0 (AFID): SOVEREIGN_SRE/README.md
- v3.0 (SGE): SOVEREIGN_GOVERNANCE_ENGINE/README.md
- Telemetry Sovereignty: TELEMETRY_SOVEREIGNTY_2.0.md
- Axiom Inversion: AXIOM_INVERSION_COMPLETE.md
- Failure Inversion: SOVEREIGN_SRE/README.md
- Governance: SOVEREIGN_GOVERNANCE_ENGINE/README.md
Day 1: Understanding
- Read QUICKSTART.md
- Read swarm_orchestrator/README.md
- Run
python3 validate_system.py
Day 2: Basic Usage
- Run
./scaffold "Create a simple app" - Run
cd swarm_orchestrator && python3 demo_sovereignty.py - Read OBSIDIAN_MANIFESTO.md
Day 3: Deep Dive
- Read TELEMETRY_SOVEREIGNTY_2.0.md
- Read LORD_PROTOCOL_V1.2_RUST.md
- Explore AXIOM_INVERSION_COMPLETE.md
Week 2: Advanced
- Study AFID architecture
- Study SGE architecture
- Run production deployment
- OBSIDIAN_MANIFESTO.md - Core philosophy (∞ - 1 = ∞)
- THE_FINAL_MANIFESTATION.md - Vision & purpose
- void_manifestation.py - Executable meditation
Search by keyword:
grep -r "keyword" swarm_orchestrator/ SOVEREIGN_SRE/ SOVEREIGN_GOVERNANCE_ENGINE/Find all documentation:
find . -name "*.md" | grep -v node_modules | grep -v .venvFind all Python files:
find . -name "*.py" | grep -v __pycache__ | grep -v .venv| Need | Command | Doc |
|---|---|---|
| Validate system | python3 validate_system.py |
This file |
| Build app | ./scaffold "idea" |
QUICKSTART.md |
| Run swarm | cd swarm_orchestrator && ./sovereignty demo |
swarm_orchestrator/README.md |
| Check health | cd swarm_orchestrator && python3 health_check.py |
QUICKSTART.md |
| Monitor AFID | cd SOVEREIGN_SRE && python3 daemon_coordinator.py |
SOVEREIGN_SRE/README.md |
| Start Nash | cd SOVEREIGN_GOVERNANCE_ENGINE && python3 game_theory/nash_analyzer.py |
SOVEREIGN_GOVERNANCE_ENGINE/README.md |
∞ - 1 = ∞
Everything is documented. Nothing is hidden. 📚💜🏔️