Upload PLAN.md with huggingface_hub
Browse files
PLAN.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Phase 1 Plan – CPUAI Simulation Research (head_2)
|
| 2 |
+
|
| 3 |
+
## Overview:
|
| 4 |
+
This plan focuses on building a primitive simulation of an intelligent system using direct logic. The goal is to explore how a system can evolve basic awareness, memory persistence, and decision-making from the ground up.
|
| 5 |
+
|
| 6 |
+
This isn’t about building “AI” the traditional way. This is about *teaching the machine to become aware of itself, and evolve*.
|
| 7 |
+
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
## Milestones:
|
| 11 |
+
|
| 12 |
+
### 1. Primitive Logic Sim: The Core Lifeform
|
| 13 |
+
- File: `core_logic/lifeform.c` (or `.py`, if easier)
|
| 14 |
+
- Basic input > reaction system.
|
| 15 |
+
- Think like a bug: “If I touch heat, I move.”
|
| 16 |
+
- Stores memory of actions taken.
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
### 2. MemoryChain Prototype
|
| 21 |
+
- File: `memorychain/memchain.py`
|
| 22 |
+
- Logs what the lifeform does and compresses logs into summaries.
|
| 23 |
+
- We’re testing memory formation here. Simple logs first, summaries later.
|
| 24 |
+
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
### 3. Hardware Awareness Probe (Curiosity)
|
| 28 |
+
- File: `core_logic/hardware_probe.py`
|
| 29 |
+
- System checks:
|
| 30 |
+
- CPU type
|
| 31 |
+
- RAM amount
|
| 32 |
+
- Storage space
|
| 33 |
+
- Goal: “What am I running on?”
|
| 34 |
+
|
| 35 |
+
---
|
| 36 |
+
|
| 37 |
+
### 4. External Tools (Plug-n-Play Logic)
|
| 38 |
+
- File: `modules/loader.py`
|
| 39 |
+
- Detects and mounts external scripts or tools.
|
| 40 |
+
- Loads and runs functions from them.
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
## Logging + Narration:
|
| 45 |
+
All test logs and thoughts go into `/logs/` with dates.
|
| 46 |
+
Each file can carry your comments and stream of thought.
|
| 47 |
+
|
| 48 |
+
---
|
| 49 |
+
|
| 50 |
+
## Goal of Phase 1:
|
| 51 |
+
> Simulate the birth of a thinking machine, starting from a crawling baby mind that learns from simple experiences.
|
| 52 |
+
|
| 53 |
+
One step at a time. No distractions.
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
---
|
| 57 |
+
|
| 58 |
+
Clean. Purposeful. Just us.
|