Create MINDSEYE_AUTOMATION.md
Browse files- docs/MINDSEYE_AUTOMATION.md +26 -0
docs/MINDSEYE_AUTOMATION.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# MindsEye Automation in the Sandbox FlowStudio
|
| 2 |
+
|
| 3 |
+
This Space is a **miniature MindsEye automation cell**:
|
| 4 |
+
|
| 5 |
+
- The **Chat tab** acts as the *narrator / planner*.
|
| 6 |
+
- The **Flow Studio tab** acts as the *graph + execution skeleton*.
|
| 7 |
+
- The **Flow Command line** is the *internal “LAW-SQL” bridge* that turns text into structural changes.
|
| 8 |
+
|
| 9 |
+
No external APIs. Everything happens inside:
|
| 10 |
+
|
| 11 |
+
- Tables (nodes + edges)
|
| 12 |
+
- A flow graph engine
|
| 13 |
+
- A tiny SQL-like DSL for editing that graph.
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
## Components
|
| 18 |
+
|
| 19 |
+
### 1. Chat (Narrative Layer)
|
| 20 |
+
|
| 21 |
+
- Explains MindsEye concepts (ledger, LAW-N, roadmap, Flow Studio).
|
| 22 |
+
- Can be extended to *propose* Flow Commands in plain text, e.g.:
|
| 23 |
+
|
| 24 |
+
```text
|
| 25 |
+
ADD NODE id=handler label="Handle Event" type=function
|
| 26 |
+
ADD EDGE source=event_in target=handler label="route"
|