mirror of
https://github.com/blackboxprogramming/new_world.git
synced 2026-03-17 07:57:24 -05:00
🌌 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.
|
||||||
52
LICENSE
Normal file
52
LICENSE
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
PROPRIETARY LICENSE
|
||||||
|
|
||||||
|
Copyright (c) 2026 BlackRoad OS, Inc.
|
||||||
|
All Rights Reserved.
|
||||||
|
|
||||||
|
CEO: Alexa Amundson
|
||||||
|
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:
|
||||||
|
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
|
||||||
|
|
||||||
|
TESTING ONLY:
|
||||||
|
This Software is provided purely for testing, evaluation, and educational
|
||||||
|
purposes. It is NOT licensed for commercial use or resale.
|
||||||
|
|
||||||
|
INFRASTRUCTURE SCALE:
|
||||||
|
This Software is designed to support:
|
||||||
|
- 30,000 AI Agents
|
||||||
|
- 30,000 Human Employees
|
||||||
|
- Enterprise-scale operations under BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
CORE PRODUCT:
|
||||||
|
API layer above Google, OpenAI, and Anthropic that manages AI model
|
||||||
|
memory and continuity, enabling entire companies to operate exclusively by AI.
|
||||||
|
|
||||||
|
OWNERSHIP:
|
||||||
|
All intellectual property rights remain the exclusive property of
|
||||||
|
BlackRoad OS, Inc.
|
||||||
|
|
||||||
|
For commercial licensing inquiries, contact:
|
||||||
|
BlackRoad OS, Inc.
|
||||||
|
Alexa Amundson, CEO
|
||||||
|
blackroad.systems@gmail.com
|
||||||
|
|
||||||
|
Last Updated: 2026-01-08
|
||||||
19
README.md
19
README.md
@@ -238,3 +238,22 @@ integration_scenarios = [
|
|||||||
- Entry 2: Develop concentration→discrete mapping protocols with uncertainty preservation
|
- Entry 2: Develop concentration→discrete mapping protocols with uncertainty preservation
|
||||||
|
|
||||||
The Lucidia architecture provides a complete technical foundation for the world’s first adaptive universal computing system, capable of choosing optimal physics for each computational task while maintaining symbolic reasoning capabilities through trinary logic.
|
The Lucidia architecture provides a complete technical foundation for the world’s first adaptive universal computing system, capable of choosing optimal physics for each computational task while maintaining symbolic reasoning capabilities through trinary logic.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📜 License & Copyright
|
||||||
|
|
||||||
|
**Copyright © 2026 BlackRoad OS, Inc. All Rights Reserved.**
|
||||||
|
|
||||||
|
**CEO:** Alexa Amundson | **PROPRIETARY AND CONFIDENTIAL**
|
||||||
|
|
||||||
|
This software is NOT for commercial resale. Testing purposes only.
|
||||||
|
|
||||||
|
### 🏢 Enterprise Scale:
|
||||||
|
- 30,000 AI Agents
|
||||||
|
- 30,000 Human Employees
|
||||||
|
- CEO: Alexa Amundson
|
||||||
|
|
||||||
|
**Contact:** blackroad.systems@gmail.com
|
||||||
|
|
||||||
|
See [LICENSE](LICENSE) for complete terms.
|
||||||
|
|||||||
Reference in New Issue
Block a user