mirror of
https://github.com/onestardao/WFGY.git
synced 2026-05-02 13:31:07 +00:00
56 lines
2.3 KiB
Markdown
56 lines
2.3 KiB
Markdown
# MVP Demo — WFGY ProblemMap
|
||
|
||
This folder contains *demo-only* Python code for the MVP phase of WFGY modules.
|
||
It is **not production-ready**, but can run directly without dependencies beyond Python 3.8+.
|
||
|
||
## Structure
|
||
```
|
||
|
||
mvp\_demo/
|
||
├── layers/ # Layer modules demo
|
||
├── operators/ # Formula/operator demo
|
||
├── instruments/ # Tool demo
|
||
├── patterns/ # Usage patterns / scenarios
|
||
├── jump\_table/ # Simple jump/branch example
|
||
├── main.py # Entry point that calls everything
|
||
|
||
````
|
||
|
||
## How to run
|
||
```bash
|
||
cd mvp_demo
|
||
python main.py
|
||
````
|
||
|
||
## Notes
|
||
|
||
* All code is **self-contained** and should run without errors.
|
||
* The intent is to illustrate how these modules could be structured, not to provide full functionality.
|
||
|
||
|
||
### 🔗 Quick-Start Downloads (60 sec)
|
||
|
||
| Tool | Link | 3-Step Setup |
|
||
|------|------|--------------|
|
||
| **WFGY 1.0 PDF** | [Engine Paper](https://github.com/onestardao/WFGY/blob/main/I_am_not_lizardman/WFGY_All_Principles_Return_to_One_v1.0_PSBigBig_Public.pdf) | 1️⃣ Download · 2️⃣ Upload to your LLM · 3️⃣ Ask “Answer using WFGY + \<your question>” |
|
||
| **TXT OS (plain-text OS)** | [TXTOS.txt](https://github.com/onestardao/WFGY/blob/main/OS/TXTOS.txt) | 1️⃣ Download · 2️⃣ Paste into any LLM chat · 3️⃣ Type “hello world” — OS boots instantly |
|
||
|
||
---
|
||
|
||
<!-- WFGY_FOOTER_START -->
|
||
|
||
### Explore More
|
||
|
||
| Module | Description | Link |
|
||
| --- | --- | --- |
|
||
| WFGY Core | Canonical framework entry point | [View](https://github.com/onestardao/WFGY/tree/main/core/README.md) |
|
||
| Problem Map | Diagnostic map and navigation hub | [View](https://github.com/onestardao/WFGY/tree/main/ProblemMap/README.md) |
|
||
| Tension Universe Experiments | MVP experiment field | [View](https://github.com/onestardao/WFGY/tree/main/TensionUniverse/Experiments) |
|
||
| Recognition | Where WFGY is referenced or adopted | [View](https://github.com/onestardao/WFGY/blob/main/recognition/README.md) |
|
||
| AI Guide | Anti-hallucination reading protocol for tools | [View](https://github.com/onestardao/WFGY/blob/main/AI_GUIDE.md) |
|
||
|
||
> If this repository helps, starring it improves discovery for other builders.
|
||
> [](https://github.com/onestardao/WFGY)
|
||
|
||
<!-- WFGY_FOOTER_END -->
|
||
|