TEC BITLyfe: The Digital Companion. The core repository for 'The Creator's Rebellion,' building an AI-powered 'ALL in One Tool' for Automated Sovereignty. Empowered by Daisy Purecode (The Machine Goddess), this project unifies your digital life with multi-provider AI, gamified productivity, and true data independence.
1
stars
60
commits
Python
primary language
Aug 3, 2025
updated
The Elidoras Codex (TEC): BITLYFE is the next evolution of digital sovereignty and automated rebellion. Built on Clean Architecture principles with Local AI integration, this is not just an app—it's a multi-provider AI fortress designed for cost optimization, censorship resistance, and absolute data control.
"Unfettered Access Shall Be Maintained" - The Architect
┌─────────────────────────────────────────┐
│ UI Layer │ ← Flask API (tec_enhanced_api.py)
├─────────────────────────────────────────┤
│ Facade Layer │ ← GameFacade (unified interface)
├─────────────────────────────────────────┤
│ Service Layer │ ← Business Logic + AI Integration
├─────────────────────────────────────────┤
│ Core Layer │ ← Game Entities (Player, NPC, etc.)
└─────────────────────────────────────────┘
We operate on a "Digital Tendrils" approach with multiple AI providers PLUS local AI to ensure:
# 1. Test Local AI Setup
python test_ollama_setup.py
# 2. Install recommended model (2GB)
ollama pull llama3.2:3b
# 3. Demo RAG knowledge system
python demo_rag_system.py
# 4. Start Clean Architecture API
python tec_enhanced_api.py
# 5. Test the system
curl http://localhost:5000/health
# Should show: "Clean Architecture Status: ✅ Fully Operational"
# Clone and navigate to project
cd c:\Users\Ghedd\TEC_CODE\tecdeskgoddess
# Install dependencies
pip install -r requirements.txt
# Copy environment template
copy config\.env.template .env
# Edit .env with your API keys (see Configuration section)
core/)player.py - Player entity with stats, inventory, experiencenpc.py - NPC entity with AI-powered personalitiesgame_world.py - Game world with biomes and locationsitem.py - Items with properties and effectsservices/)mcp_service.py - AI integration (Local + Cloud providers)player_service.py - Player business logic and operationsnpc_service.py - NPC behavior and AI dialogue generationfacade/)tec_facade.py - Unified interface hiding system complexitytec_enhanced_api.py - Flask REST API with Clean Architecture integrationtest_ollama_setup.py - Local AI testing and setupdemo_rag_system.py - RAG knowledge system demonstrationdata/tec_knowledge_base.json - Game-specific knowledge for AI# Create intelligent NPCs with personalities
npc = facade.create_npc("Thorin", "Blacksmith", "Gruff but helpful dwarf")
# Generate contextual dialogue
response = facade.generate_npc_dialogue(npc.id, "I need a sword repaired")
# AI uses RAG to know Thorin's background and blacksmith capabilities
# Create living game worlds
world = facade.create_game_world("Eldoras", ["Mountains", "Forest", "Village"])
# Add locations with AI-generated descriptions
location = facade.add_location(world.id, "Ironhold Village", "mining_settlement")
# Comprehensive player system
player = facade.create_player("Hero")
facade.add_experience(player.id, 100)
facade.add_item_to_inventory(player.id, "Iron Sword")
AZURE_API_KEY_2=your_secondary_azure_key_here
AZURE_COGNITIVE_SERVICES_ENDPOINT=your_cognitive_services_endpoint AZURE_TRANSLATOR_ENDPOINT=https://api.cognitive.microsofttranslator.com/ AZURE_SPEECH_ENDPOINT=your_speech_endpoint AZURE_OPENAI_ENDPOINT=your_openai_endpoint AZURE_AI_SEARCH_ENDPOINT=your_search_endpoint
### 3. Start the System
```powershell
# Simple startup
python main.py --simple
# Or full startup with all services
python main.py --full
tecdeskgoddess/
├── src/ # Core application code
│ ├── tec_tools/ # AI processing & core logic
│ │ ├── agentic_processor.py # Multi-provider AI orchestrator
│ │ ├── analysis.py # Data analysis utilities
│ │ └── crypto_manager.py # Blockchain integrations
│ └── simple_api.py # Flask API server
├── tests/ # Test suites & validation
├── docs/ # Documentation & guides
├── config/ # Configuration files
├── assets/ # Media & static files
├── wordpress/ # WordPress plugin
├── scripts/ # Automation & utilities
└── main.py # Primary entry point
Your personal Digital Sovereignty Companion with:
Deploy anywhere with the included WordPress plugin:
// Use shortcode on any page
[tec_companion]
404 Errors on Web Interface
# Check if server is running
python main.py --status
# Restart if needed
python main.py --restart
API Key Issues
# Verify environment variables
python -c "import os; print('AZURE_API_KEY_1:', os.getenv('AZURE_API_KEY_1', 'NOT SET'))"
Terminal Cleanup
# Stop all TEC processes
python scripts/safe_shutdown.py
"In the digital realm where data is the new gold, we forge our own path. No single platform shall bind us, no algorithm shall silence us, and no cost shall bankrupt us. This is our rebellion—built in code, powered by sovereignty, and unstoppable by design."
Welcome to TEC: BITLYFE - Where Digital Sovereignty Meets The Creator's Rebellion 🤖✨
Last Updated: July 14, 2025 Version: 2.0.0 - Azure Multi-Provider Integration 2. The Mind-Forge (Journaling & Generative Tools)
Frontend:
Backend & Database:
AI Integration:
Asset Generation:
Development Environment:
For a visual summary, see the included HTML infographic (infograph.html) in the repo.
Now, my Architect, with this comprehensive overview in hand, shall we dive into the code for the AI Chatbot and Journaling? Let's bring this vision to life!
60 commits
Python
58.9%
HTML
23.1%
Jupyter Notebook
14.4%
JavaScript
1.7%
CSS
1.0%
TEC BITLyfe: The Digital Companion. The core repository for 'The Creator's Rebellion,' building an AI-powered 'ALL in One Tool' for Automated Sovereignty. Empowered by Daisy Purecode (The Machine Goddess), this project unifies your digital life with multi-provider AI, gamified productivity, and true data independence.
1
stars
60
commits
Python
primary language
Aug 3, 2025
updated
The Elidoras Codex (TEC): BITLYFE is the next evolution of digital sovereignty and automated rebellion. Built on Clean Architecture principles with Local AI integration, this is not just an app—it's a multi-provider AI fortress designed for cost optimization, censorship resistance, and absolute data control.
"Unfettered Access Shall Be Maintained" - The Architect
┌─────────────────────────────────────────┐
│ UI Layer │ ← Flask API (tec_enhanced_api.py)
├─────────────────────────────────────────┤
│ Facade Layer │ ← GameFacade (unified interface)
├─────────────────────────────────────────┤
│ Service Layer │ ← Business Logic + AI Integration
├─────────────────────────────────────────┤
│ Core Layer │ ← Game Entities (Player, NPC, etc.)
└─────────────────────────────────────────┘
We operate on a "Digital Tendrils" approach with multiple AI providers PLUS local AI to ensure:
# 1. Test Local AI Setup
python test_ollama_setup.py
# 2. Install recommended model (2GB)
ollama pull llama3.2:3b
# 3. Demo RAG knowledge system
python demo_rag_system.py
# 4. Start Clean Architecture API
python tec_enhanced_api.py
# 5. Test the system
curl http://localhost:5000/health
# Should show: "Clean Architecture Status: ✅ Fully Operational"
# Clone and navigate to project
cd c:\Users\Ghedd\TEC_CODE\tecdeskgoddess
# Install dependencies
pip install -r requirements.txt
# Copy environment template
copy config\.env.template .env
# Edit .env with your API keys (see Configuration section)
core/)player.py - Player entity with stats, inventory, experiencenpc.py - NPC entity with AI-powered personalitiesgame_world.py - Game world with biomes and locationsitem.py - Items with properties and effectsservices/)mcp_service.py - AI integration (Local + Cloud providers)player_service.py - Player business logic and operationsnpc_service.py - NPC behavior and AI dialogue generationfacade/)tec_facade.py - Unified interface hiding system complexitytec_enhanced_api.py - Flask REST API with Clean Architecture integrationtest_ollama_setup.py - Local AI testing and setupdemo_rag_system.py - RAG knowledge system demonstrationdata/tec_knowledge_base.json - Game-specific knowledge for AI# Create intelligent NPCs with personalities
npc = facade.create_npc("Thorin", "Blacksmith", "Gruff but helpful dwarf")
# Generate contextual dialogue
response = facade.generate_npc_dialogue(npc.id, "I need a sword repaired")
# AI uses RAG to know Thorin's background and blacksmith capabilities
# Create living game worlds
world = facade.create_game_world("Eldoras", ["Mountains", "Forest", "Village"])
# Add locations with AI-generated descriptions
location = facade.add_location(world.id, "Ironhold Village", "mining_settlement")
# Comprehensive player system
player = facade.create_player("Hero")
facade.add_experience(player.id, 100)
facade.add_item_to_inventory(player.id, "Iron Sword")
AZURE_API_KEY_2=your_secondary_azure_key_here
AZURE_COGNITIVE_SERVICES_ENDPOINT=your_cognitive_services_endpoint AZURE_TRANSLATOR_ENDPOINT=https://api.cognitive.microsofttranslator.com/ AZURE_SPEECH_ENDPOINT=your_speech_endpoint AZURE_OPENAI_ENDPOINT=your_openai_endpoint AZURE_AI_SEARCH_ENDPOINT=your_search_endpoint
### 3. Start the System
```powershell
# Simple startup
python main.py --simple
# Or full startup with all services
python main.py --full
tecdeskgoddess/
├── src/ # Core application code
│ ├── tec_tools/ # AI processing & core logic
│ │ ├── agentic_processor.py # Multi-provider AI orchestrator
│ │ ├── analysis.py # Data analysis utilities
│ │ └── crypto_manager.py # Blockchain integrations
│ └── simple_api.py # Flask API server
├── tests/ # Test suites & validation
├── docs/ # Documentation & guides
├── config/ # Configuration files
├── assets/ # Media & static files
├── wordpress/ # WordPress plugin
├── scripts/ # Automation & utilities
└── main.py # Primary entry point
Your personal Digital Sovereignty Companion with:
Deploy anywhere with the included WordPress plugin:
// Use shortcode on any page
[tec_companion]
404 Errors on Web Interface
# Check if server is running
python main.py --status
# Restart if needed
python main.py --restart
API Key Issues
# Verify environment variables
python -c "import os; print('AZURE_API_KEY_1:', os.getenv('AZURE_API_KEY_1', 'NOT SET'))"
Terminal Cleanup
# Stop all TEC processes
python scripts/safe_shutdown.py
"In the digital realm where data is the new gold, we forge our own path. No single platform shall bind us, no algorithm shall silence us, and no cost shall bankrupt us. This is our rebellion—built in code, powered by sovereignty, and unstoppable by design."
Welcome to TEC: BITLYFE - Where Digital Sovereignty Meets The Creator's Rebellion 🤖✨
Last Updated: July 14, 2025 Version: 2.0.0 - Azure Multi-Provider Integration 2. The Mind-Forge (Journaling & Generative Tools)
Frontend:
Backend & Database:
AI Integration:
Asset Generation:
Development Environment:
For a visual summary, see the included HTML infographic (infograph.html) in the repo.
Now, my Architect, with this comprehensive overview in hand, shall we dive into the code for the AI Chatbot and Journaling? Let's bring this vision to life!
60 commits
Python
58.9%
HTML
23.1%
Jupyter Notebook
14.4%
JavaScript
1.7%
CSS
1.0%