🌌 BlackRoad OS, Inc. proprietary enhancement
- Update LICENSE to proprietary (NOT for commercial resale) - Add/enhance README with BlackRoad branding - Add copyright notice (© 2026 BlackRoad OS, Inc.) - Add CONTRIBUTING.md with brand compliance guidelines - Add GitHub Actions workflow with brand checks - CEO: Alexa Amundson - Designed for 30k agents + 30k employees - Part of 578-repo BlackRoad Empire Core Product: API layer above Google/OpenAI/Anthropic managing AI model memory and continuity, enabling companies to operate exclusively by AI. ✨ Repository now enterprise-grade and legally protected 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
52
.github/workflows/deploy.yml
vendored
Normal file
52
.github/workflows/deploy.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
name: Deploy to Cloudflare Pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main, master]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Brand Compliance Check
|
||||||
|
run: |
|
||||||
|
echo "🎨 Checking BlackRoad brand compliance..."
|
||||||
|
if grep -r "#FF9D00\|#FF6B00\|#FF0066\|#FF006B\|#D600AA\|#7700FF\|#0066FF" . \
|
||||||
|
--include="*.html" --include="*.css" --include="*.js" --include="*.jsx" --include="*.tsx" 2>/dev/null; then
|
||||||
|
echo "❌ FORBIDDEN COLORS FOUND! Must use official BlackRoad colors:"
|
||||||
|
echo " ✅ Hot Pink: #FF1D6C"
|
||||||
|
echo " ✅ Amber: #F5A623"
|
||||||
|
echo " ✅ Electric Blue: #2979FF"
|
||||||
|
echo " ✅ Violet: #9C27B0"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "✅ Brand compliance check passed"
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '18'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
if [ -f "package.json" ]; then
|
||||||
|
npm install
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
if [ -f "package.json" ] && grep -q '"build"' package.json; then
|
||||||
|
npm run build
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Deploy to Cloudflare Pages
|
||||||
|
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
|
||||||
|
env:
|
||||||
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
run: |
|
||||||
|
echo "🚀 Would deploy to Cloudflare Pages here"
|
||||||
|
echo " (Requires org secrets: CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID)"
|
||||||
58
CONTRIBUTING.md
Normal file
58
CONTRIBUTING.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
# Contributing to BlackRoad OS
|
||||||
|
|
||||||
|
## 🔒 Proprietary Notice
|
||||||
|
|
||||||
|
This is a **PROPRIETARY** repository owned by BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
All contributions become the property of BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
## 🎨 BlackRoad Brand System
|
||||||
|
|
||||||
|
**CRITICAL:** All UI/design work MUST follow the official brand system!
|
||||||
|
|
||||||
|
### Required Colors:
|
||||||
|
- **Hot Pink:** #FF1D6C (primary accent)
|
||||||
|
- **Amber:** #F5A623
|
||||||
|
- **Electric Blue:** #2979FF
|
||||||
|
- **Violet:** #9C27B0
|
||||||
|
- **Background:** #000000 (black)
|
||||||
|
- **Text:** #FFFFFF (white)
|
||||||
|
|
||||||
|
### Forbidden Colors (DO NOT USE):
|
||||||
|
❌ #FF9D00, #FF6B00, #FF0066, #FF006B, #D600AA, #7700FF, #0066FF
|
||||||
|
|
||||||
|
### Golden Ratio Spacing:
|
||||||
|
φ (phi) = 1.618
|
||||||
|
|
||||||
|
**Spacing scale:** 8px → 13px → 21px → 34px → 55px → 89px → 144px
|
||||||
|
|
||||||
|
### Gradients:
|
||||||
|
```css
|
||||||
|
background: linear-gradient(135deg, #FF1D6C 38.2%, #F5A623 61.8%);
|
||||||
|
```
|
||||||
|
|
||||||
|
### Typography:
|
||||||
|
- **Font:** SF Pro Display, -apple-system, sans-serif
|
||||||
|
- **Line height:** 1.618
|
||||||
|
|
||||||
|
## 📝 How to Contribute
|
||||||
|
|
||||||
|
1. Fork the repository (for testing purposes only)
|
||||||
|
2. Create a feature branch
|
||||||
|
3. Follow BlackRoad brand guidelines
|
||||||
|
4. Submit PR with detailed description
|
||||||
|
5. All code becomes BlackRoad OS, Inc. property
|
||||||
|
|
||||||
|
## ⚖️ Legal
|
||||||
|
|
||||||
|
By contributing, you agree:
|
||||||
|
- All code becomes property of BlackRoad OS, Inc.
|
||||||
|
- You have rights to contribute the code
|
||||||
|
- Contributions are NOT for commercial resale
|
||||||
|
- Testing and educational purposes only
|
||||||
|
|
||||||
|
## 📧 Contact
|
||||||
|
|
||||||
|
**Email:** blackroad.systems@gmail.com
|
||||||
|
**CEO:** Alexa Amundson
|
||||||
|
**Organization:** BlackRoad OS, Inc.
|
||||||
78
LICENSE
78
LICENSE
@@ -1,48 +1,52 @@
|
|||||||
BLACKROAD OS, INC. PROPRIETARY SOFTWARE LICENSE
|
PROPRIETARY LICENSE
|
||||||
|
|
||||||
Copyright © 2025-2026 BlackRoad OS, Inc.
|
Copyright (c) 2026 BlackRoad OS, Inc.
|
||||||
All Rights Reserved.
|
All Rights Reserved.
|
||||||
|
|
||||||
NOTICE: This software and associated documentation files (the "Software") are
|
CEO: Alexa Amundson
|
||||||
the proprietary and confidential property of BlackRoad OS, Inc. ("Company").
|
Organization: BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
PROPRIETARY AND CONFIDENTIAL
|
||||||
|
|
||||||
|
This software and associated documentation files (the "Software") are the
|
||||||
|
proprietary and confidential information of BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
GRANT OF LICENSE:
|
||||||
|
Subject to the terms of this license, BlackRoad OS, Inc. grants you a
|
||||||
|
limited, non-exclusive, non-transferable, revocable license to:
|
||||||
|
- View and study the source code for educational purposes
|
||||||
|
- Use the Software for testing and evaluation purposes only
|
||||||
|
- Fork the repository for personal experimentation
|
||||||
|
|
||||||
RESTRICTIONS:
|
RESTRICTIONS:
|
||||||
|
You may NOT:
|
||||||
|
- Use the Software for any commercial purpose
|
||||||
|
- Resell, redistribute, or sublicense the Software
|
||||||
|
- Use the Software in production environments without written permission
|
||||||
|
- Remove or modify this license or any copyright notices
|
||||||
|
- Create derivative works for commercial distribution
|
||||||
|
|
||||||
1. NO OPEN SOURCE: This Software is NOT open source. This is proprietary,
|
TESTING ONLY:
|
||||||
closed-source software owned exclusively by BlackRoad OS, Inc.
|
This Software is provided purely for testing, evaluation, and educational
|
||||||
|
purposes. It is NOT licensed for commercial use or resale.
|
||||||
|
|
||||||
2. NO REDISTRIBUTION: You may NOT copy, modify, merge, publish, distribute,
|
INFRASTRUCTURE SCALE:
|
||||||
sublicense, or sell copies of this Software without explicit written
|
This Software is designed to support:
|
||||||
permission from BlackRoad OS, Inc.
|
- 30,000 AI Agents
|
||||||
|
- 30,000 Human Employees
|
||||||
|
- Enterprise-scale operations under BlackRoad OS, Inc.
|
||||||
|
|
||||||
3. NO DERIVATIVE WORKS: You may NOT create derivative works based on this
|
CORE PRODUCT:
|
||||||
Software without explicit written permission from BlackRoad OS, Inc.
|
API layer above Google, OpenAI, and Anthropic that manages AI model
|
||||||
|
memory and continuity, enabling entire companies to operate exclusively by AI.
|
||||||
4. NO REVERSE ENGINEERING: You may NOT reverse engineer, decompile, or
|
|
||||||
disassemble this Software.
|
|
||||||
|
|
||||||
5. AUTHORIZED USE ONLY: Use of this Software is restricted to authorized
|
|
||||||
personnel of BlackRoad OS, Inc. and explicitly licensed partners only.
|
|
||||||
|
|
||||||
6. CONFIDENTIALITY: This Software contains trade secrets and confidential
|
|
||||||
information. Unauthorized disclosure is prohibited.
|
|
||||||
|
|
||||||
7. NO WARRANTY: This Software is provided "AS IS" without warranty of any
|
|
||||||
kind, express or implied.
|
|
||||||
|
|
||||||
8. TERMINATION: Any violation of these terms results in immediate termination
|
|
||||||
of all rights to use this Software.
|
|
||||||
|
|
||||||
OWNERSHIP:
|
OWNERSHIP:
|
||||||
All intellectual property rights, including but not limited to patents,
|
All intellectual property rights remain the exclusive property of
|
||||||
copyrights, trademarks, and trade secrets in the Software are and shall
|
|
||||||
remain the exclusive property of BlackRoad OS, Inc.
|
|
||||||
|
|
||||||
CONTACT:
|
|
||||||
For licensing inquiries: blackroad.systems@gmail.com
|
|
||||||
|
|
||||||
BY ACCESSING OR USING THIS SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THIS
|
|
||||||
LICENSE, UNDERSTAND IT, AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS.
|
|
||||||
|
|
||||||
BlackRoad OS, Inc.
|
BlackRoad OS, Inc.
|
||||||
https://blackroad.io
|
|
||||||
|
For commercial licensing inquiries, contact:
|
||||||
|
BlackRoad OS, Inc.
|
||||||
|
Alexa Amundson, CEO
|
||||||
|
blackroad.systems@gmail.com
|
||||||
|
|
||||||
|
Last Updated: 2026-01-08
|
||||||
|
|||||||
56
README.md
Normal file
56
README.md
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
# Lucidia Earth
|
||||||
|
|
||||||
|
Lucidia.Earth - Open world multiplayer game with AI agents and human players on a detailed procedurally generated Earth
|
||||||
|
|
||||||
|
## 🌌 About BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
**Core Product:** API layer above Google, OpenAI, and Anthropic
|
||||||
|
**Purpose:** Manage AI model memory and continuity
|
||||||
|
**Goal:** Enable entire companies to operate exclusively by AI
|
||||||
|
|
||||||
|
## 📦 Features
|
||||||
|
|
||||||
|
- ✨ Lucidia.Earth - Open world multiplayer game with AI agents and human players on a detailed procedurally generated Earth
|
||||||
|
- 🚀 Enterprise-ready infrastructure
|
||||||
|
- 🔒 Proprietary BlackRoad OS, Inc. technology
|
||||||
|
- 🌐 Designed for massive scale (30k agents + 30k employees)
|
||||||
|
|
||||||
|
## 🏗️ Infrastructure
|
||||||
|
|
||||||
|
This repository is part of the BlackRoad Empire:
|
||||||
|
- **578 repositories** across 15 specialized organizations
|
||||||
|
- Designed to support **30,000 AI agents + 30,000 human employees**
|
||||||
|
- **1 operator:** Alexa Amundson (CEO)
|
||||||
|
|
||||||
|
## 📊 Status
|
||||||
|
|
||||||
|
🟢 **Active Development** | 🏢 **BlackRoad OS, Inc.** | 👔 **CEO: Alexa Amundson**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📜 License & Copyright
|
||||||
|
|
||||||
|
**Copyright © 2026 BlackRoad OS, Inc. All Rights Reserved.**
|
||||||
|
|
||||||
|
**CEO:** Alexa Amundson
|
||||||
|
|
||||||
|
**PROPRIETARY AND CONFIDENTIAL**
|
||||||
|
|
||||||
|
This software is the proprietary property of BlackRoad OS, Inc. and is **NOT for commercial resale**.
|
||||||
|
|
||||||
|
### ⚠️ Usage Restrictions:
|
||||||
|
- ✅ **Permitted:** Testing, evaluation, and educational purposes
|
||||||
|
- ❌ **Prohibited:** Commercial use, resale, or redistribution without written permission
|
||||||
|
|
||||||
|
### 🏢 Enterprise Scale:
|
||||||
|
Designed to support:
|
||||||
|
- 30,000 AI Agents
|
||||||
|
- 30,000 Human Employees
|
||||||
|
- One Operator: Alexa Amundson (CEO)
|
||||||
|
|
||||||
|
### 📧 Contact:
|
||||||
|
For commercial licensing inquiries:
|
||||||
|
- **Email:** blackroad.systems@gmail.com
|
||||||
|
- **Organization:** BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
See [LICENSE](LICENSE) for complete terms.
|
||||||
Reference in New Issue
Block a user