SERAI = System of Extensions & Realities + AI Intelligence
This monorepo contains the full ecosystem of SERAI, including:
- Core runtime (
core/
) - Extensions (
extensions/
) like .xlsl, .aurl, .qntl - AI reasoning engine (
ai/
) - Teleportation & physics modules (
teleport/
) - Blockchain/distributed ledger (
blockchain/
) - Developer tools & UI (
ui/
) - Documentation (
docs/
) - Examples (
examples/
) - Tests (
tests/
)
- Clone this repository
- Explore
extensions/
for all SERAI formats - Use
core/
to bootstrap runtime - Check
docs/
for specifications and guidelines
Invented and maintained by Seriki Yakub (KUBU LEE).
extensions/Aura.xlsx
is the main research workbook- Integrates all modules, extensions, and teleportation simulations
setup_serai.sh
#!/bin/bash
GITHUB_USERNAME="Web4application"
REPO_NAME="SERAI"
GITHUB_URL=". [https://github.com/$GITHUB_USERNAME/$REPO_NAME.git](https://github.com/Web4application/SERAI.git)"
PYTHON_VERSION="3.11"
echo "Initializing git repository..."
git init
git add .
git commit -m "Initial commit: SERAI monorepo with Aura.xlsx, AI, teleport scripts"
echo "Adding GitHub remote..."
git remote add origin $GITHUB_URL
git branch -M main
echo "Pushing to GitHub..."
git push -u origin main
echo "Creating dev and test branches..."
git checkout -b dev
git checkout -b test
git checkout main
echo "Setting up Python CI workflow..."
mkdir -p .github/workflows
cat <<EOL > .github/workflows/python.yml
name: Python CI
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: $PYTHON_VERSION
- name: Install dependencies
run: pip install openpyxl pandas
- name: Test scripts
run: |
python ai/engine.py
python teleport/teleport_sim.py
EOL
git add .github/workflows/python.yml
git commit -m "Add GitHub Actions CI workflow"
git push origin main
echo "� SERAI GitHub setup complete!"