Skip to content

Commit 0b1f378

Browse files
committed
fix: sync all versions to 0.9.0, update project structure docs and repo URLs
1 parent 42b8227 commit 0b1f378

7 files changed

Lines changed: 45 additions & 7 deletions

File tree

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,44 @@
4040

4141
---
4242

43+
## 📁 Project Structure
44+
45+
> **Important:** All research code, engines, and data live inside `docs/` — this folder serves dual purpose as both the **GitHub Pages source** and the **main research codebase**.
46+
47+
```
48+
uet_harness/
49+
├── docs/ ← 🔬 Research Portal (GitHub Pages + Python Package)
50+
│ ├── __init__.py ← Python package entry: `import docs as uet`
51+
│ ├── _config.yml ← Jekyll config for GitHub Pages
52+
│ ├── core/ ← UET Master Equation & core solvers
53+
│ ├── topics/ ← 📚 All 38 research topics (engines, proofs, data)
54+
│ │ ├── 0.0_Grand_Unification/ ← Omni Engine (imports all sub-engines)
55+
│ │ ├── 0.1_Galaxy_Rotation/ ← Each topic follows the same structure:
56+
│ │ │ ├── Code/01_Engine/ │ Engine (solver)
57+
│ │ │ ├── Code/02_Proof/ │ Mathematical proofs
58+
│ │ │ ├── Code/03_Research/ │ Experiments & validation
59+
│ │ │ ├── Data/ │ Reference datasets
60+
│ │ │ ├── Result/ │ Output figures & logs
61+
│ │ │ ├── Doc/ │ Documentation & papers
62+
│ │ │ └── README.md │ Topic overview
63+
│ │ └── ... ← Topics 0.2 through 0.37
64+
│ ├── knowledge_base/ ← Vector store & tensorizer
65+
│ ├── scripts/ ← Runners, audits, data tools
66+
│ └── Docs/ ← Framework standards & guides
67+
├── uet_core/ ← 🦀 Rust: UET Master Equation solver
68+
├── uet_miner/ ← 🦀 Rust: Proof-of-Useful-Work miner
69+
├── uet_security/ ← 🦀 Rust: Quantum-resistant crypto
70+
├── uet_agents/ ← 🤖 AI agent framework
71+
├── uet_api/ ← 🌐 REST API server
72+
├── uet_web/ ← 💻 Next.js web frontend
73+
├── uet_platform/ ← 🏗️ Platform orchestration
74+
└── requirements.txt ← Python dependencies
75+
```
76+
77+
> **Note:** The `docs/` folder was previously named `research_uet/`. All internal paths have been updated. If you find outdated references, please open an issue.
78+
79+
---
80+
4381
## 🌍 The "Big Picture" Dashboard: 38 Solutions
4482

4583
UET is not just a physics theory. It is a **"Civilization-Level Operating System"** that solves fundamental problems across 6 domains.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Navigation guide for the `docs/` ecosystem:
108108

109109
### 2. The Evidence (`/topics`)
110110
* **Path**: [`docs/topics/`](./topics/)
111-
* **Purpose**: The **31 Research Domains** (Galaxy Rotation, AI, Economics, etc.).
111+
* **Purpose**: The **38 Research Domains** (Galaxy Rotation, AI, Economics, etc.).
112112
* **Architecture**: Follows the [Platinum Standard](./topics/Work/how%20to%20README.md).
113113

114114
### 3. The Documentation (`/docs`)

docs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from pathlib import Path
1717

1818
# Version
19-
__version__ = "0.8.7"
19+
__version__ = "0.9.0"
2020

2121
# Exposes the package root for all sub-modules
2222
def _find_uet_root():

docs/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@
5353
"PARAMETER_POLICY",
5454
]
5555

56-
__version__ = "0.8.7"
56+
__version__ = "0.9.0"

docs/knowledge_base/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from docs.knowledge_base import VectorStore, UetTensorizer, OmegaSearch
1616
"""
1717

18-
__version__ = "0.8.7"
18+
__version__ = "0.9.0"
1919

2020
# Lazy imports to avoid loading everything on package import
2121
__all__ = [

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ dev = [
4545
]
4646

4747
[project.urls]
48-
Homepage = "https://github.com/unityequilibrium/Equation-UET-v0.9.0"
49-
Repository = "https://github.com/unityequilibrium/Equation-UET-v0.9.0.git"
48+
Homepage = "https://github.com/unityequilibrium/UnityEquilibriumTheory"
49+
Repository = "https://github.com/unityequilibrium/UnityEquilibriumTheory.git"
5050

5151
[tool.setuptools.packages.find]
5252
where = ["."]

uet_agents/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
def main():
2121
print("=" * 60)
22-
print(" UET MULTI-AGENT SYSTEM (v0.8.7)")
22+
print(" UET MULTI-AGENT SYSTEM (v0.9.0)")
2323
print(" Initializing components...")
2424
print("=" * 60)
2525

0 commit comments

Comments
 (0)