PlanetOS ECU v1.0
1. One-Line Definition
Movement Threshold Rules decide whether a signal is strong enough to move forward, weak enough to store, dirty enough to repair, or useless enough to decay.
Not every signal deserves full movement.
But not every weak signal should be thrown away.
2. Core Movement Law
“`text id=”4wye61″
LAW 13.1 — MOVEMENT REQUIRES THRESHOLD
A signal may only move if it passes the correct threshold for its ECU mode, risk level, evidence level, and destination.
PlanetOS must avoid two failures:| Failure | Result || --------------- | ---------------------------------------------- || Move too easily | noise, hallucination, false certainty || Block too early | missed warnings, lost insight, dead creativity |The ECU must decide the correct threshold.---## 3. Four Possible DestinationsEvery signal goes to one of four destinations:| Destination | Meaning || ----------------- | ------------------------------------------------ || **Active Route** | strong enough to process forward || **Shadow Ledger** | weak but possibly meaningful || **Repair Loop** | contaminated, contradictory, or incomplete || **Decay Bin** | clear junk, spam, duplicate, or irrelevant noise |---## 4. Active Route ThresholdA signal enters Active Route when it is:* relevant* intelligible* sufficiently supported* correctly classified* useful for the current task* compatible with the selected ECU modeExample:
text id=”8rmkkr”
Water quality data from reliable source
→ Strict ECU
→ Active Route
Active Route does not mean “final truth.”It means:> safe enough to process forward.---## 5. Shadow Ledger ThresholdA signal enters Shadow Ledger when it is:* weak* early* low-volume* uncertain* strange but not nonsense* possibly important laterExample:
text id=”xx05q8″
small repeated parent complaints
→ no hard evidence yet
→ possible early learning-system issue
→ Shadow Ledger
Shadow Ledger protects weak signals from premature deletion.---## 6. Repair Loop ThresholdA signal enters Repair Loop when it is:* contradictory* incomplete* emotionally overloaded* poorly defined* wrongly labelled* missing context* mixing fact with speculationExample:
text id=”3kcc3p”
“Everyone says the system is failing”
→ vague source
→ emotional compression
→ undefined system
→ Repair Loop
Repair Loop means:> the signal may be useful, but it is not clean enough yet.---## 7. Decay Bin ThresholdA signal enters Decay Bin only when it is clearly:* spam* duplicate* irrelevant* unrecoverable* malicious noise* empty slogan* unsupported and non-usefulImportant:
text id=”d487ni”
LAW 13.2 — DECAY REQUIRES CONFIDENCE
Do not discard a signal unless it is clearly junk or has no foreseeable route value.
PlanetOS must not become overzealous.---## 8. Thresholds by ECU Mode| ECU Mode | Movement Threshold || ------------ | ------------------------------------------------------------------ || **Strict** | high evidence, bounded claim, audit-ready || **Balanced** | reasonable clarity, useful context, labelled uncertainty || **Creative** | meaningful generative value, clearly labelled speculation/metaphor |Strict ECU raises the threshold.Creative ECU lowers the exploration threshold but raises the labelling threshold.Balanced ECU sits between them.---## 9. Threshold Formula
text id=”q81xgx”
Movement Permission =
Relevance + Clarity + Evidence + Mode Fit + Risk Fit + Repairability
A signal moves when the sum is strong enough for its destination.Not all categories need to be perfect.But high-risk signals need stronger evidence.---## 10. Movement Decision Table| Signal Condition | Destination || ---------------------------------- | ----------------------------------------- || clear + relevant + supported | Active Route || unclear + potentially meaningful | Shadow Ledger || useful but distorted | Repair Loop || clearly junk | Decay Bin || high-stakes but unverified | Shadow Ledger or Repair Loop, not release || creative but labelled | Creative Active Route || creative but pretending to be fact | Repair Loop || factual but unsupported | Shadow Ledger || emotional but meaningful | Repair Loop || emotional and empty | Decay Bin |---## 11. Movement Threshold Examples## Example 1 — EducationOSInput:> “My child suddenly hates math.”Bad routing:
text id=”9b1jho”
hates math
→ motivation problem
→ more pressure
ECU threshold routing:
text id=”v94g4o”
VocabularyOS checks “hates”
→ Janitor reduces emotional overload
→ Sorter classifies as learning-affect signal
→ signal is meaningful but incomplete
→ Repair Loop
Destination: **Repair Loop**Because the signal is real enough to investigate, but not clear enough to diagnose.---## Example 2 — NewsOSInput:> “A major crisis is coming.”Threshold check:| Question | Status || -------------------- | ------ || Source clear? | no || Evidence strong? | no || Possible importance? | yes || Public release safe? | no |Destination:
text id=”hrpn4l”
Shadow Ledger
Not Active Route.Not Decay Bin.Not public output.---## Example 3 — Creative ECUInput:> “Cerberus should be the final release gate.”Threshold check:| Question | Status || -------------------- | ------ || Fact claim? | no || Metaphor/model? | yes || Useful design value? | yes || Clearly labelled? | yes |Destination:
text id=”c53ygp”
Creative Active Route
The idea can move because it is not pretending to be empirical fact.---## 12. Strong Signal Is Not Final TruthA strong signal can still be wrong later.Active Route only means:
text id=”8g7t7r”
sufficiently clean and useful for processing now
This matters for NewsOS, RealityOS, and public reports.The ECU must preserve uncertainty through time.---## 13. Weak Signal Is Not FalseWeak means:* insufficient evidence now* unclear source* low volume* early pattern* not ready for releaseIt does not mean:* false* useless* conspiracy* trash* impossibleThis is why Shadow Ledger exists.---## 14. Dirty Signal Is Not UselessA dirty signal may contain truth wrapped in:* anger* fear* bad vocabulary* wrong attribution* poor evidence* cultural distortion* compressionThe Janitor and Translator must clean it before judgement.---## 15. Junk Signal Must Still Be Defined CarefullyJunk is not “I dislike this.”Junk means:
text id=”g64uy8″
no usable content
- no route value
- no repair value
- no shadow value
Only then may it decay.---## 16. Threshold Escalation RulesEscalate threshold when:* public harm is possible* legal/health/finance/safety stakes exist* claim affects reputation* claim affects governance* claim may influence action* evidence is thin* emotional load is highLower threshold for exploration when:* clearly labelled as speculative* no immediate public action depends on it* it is used for model-building* it enters Creative ECU* Cerberus still checks final release---## 17. Movement Threshold Almost-Code
text id=”j00fq3″
PLANETOS.ECU.MOVEMENT_THRESHOLD.v1.0
FUNCTION DetermineMovement(signal, mode):
- Score signal:
relevance_score
clarity_score
evidence_score
risk_score
mode_fit_score
repairability_score
creative_value_score - IF signal = spam OR duplicate OR no_route_value:
destination = DECAY_BIN - ELSE IF signal is distorted OR contradictory OR incomplete:
destination = REPAIR_LOOP - ELSE IF evidence is weak BUT potential value exists:
destination = SHADOW_LEDGER - ELSE IF mode = STRICT:
IF evidence_score high AND risk_bounded = true:
destination = ACTIVE_ROUTE
ELSE:
destination = SHADOW_LEDGER or REPAIR_LOOP - ELSE IF mode = BALANCED:
IF clarity sufficient AND usefulness high:
destination = ACTIVE_ROUTE
ELSE:
destination = REPAIR_LOOP or SHADOW_LEDGER - ELSE IF mode = CREATIVE:
IF creative_value high AND labels applied:
destination = ACTIVE_ROUTE
ELSE:
destination = REPAIR_LOOP - RETURN destination
---## 18. Clean Compression
text id=”l4r6hh”
Movement Threshold Rules decide:
Move forward,
Store weakly,
Repair first,
or Let decay.
“`
19. Final Lock
Article 13 locks the movement threshold layer of PlanetOS ECU.
Core laws:
Strong signals move.
Weak signals enter Shadow Ledger.
Dirty signals enter Repair Loop.
Junk signals decay.
High-stakes signals need higher thresholds.
Creative signals need clear labels.
eduKateSG Learning System | Control Tower, Runtime, and Next Routes
This article is one node inside the wider eduKateSG Learning System.
At eduKateSG, we do not treat education as random tips, isolated tuition notes, or one-off exam hacks. We treat learning as a living runtime:
state -> diagnosis -> method -> practice -> correction -> repair -> transfer -> long-term growth
That is why each article is written to do more than answer one question. It should help the reader move into the next correct corridor inside the wider eduKateSG system: understand -> diagnose -> repair -> optimize -> transfer. Your uploaded spine clearly clusters around Education OS, Tuition OS, Civilisation OS, subject learning systems, runtime/control-tower pages, and real-world lattice connectors, so this footer compresses those routes into one reusable ending block.
Start Here
- Education OS | How Education Works
- Tuition OS | eduKateOS & CivOS
- Civilisation OS
- How Civilization Works
- CivOS Runtime Control Tower
Learning Systems
- The eduKate Mathematics Learning System
- Learning English System | FENCE by eduKateSG
- eduKate Vocabulary Learning System
- Additional Mathematics 101
Runtime and Deep Structure
- Human Regenerative Lattice | 3D Geometry of Civilisation
- Civilisation Lattice
- Advantages of Using CivOS | Start Here Stack Z0-Z3 for Humans & AI
Real-World Connectors
Subject Runtime Lane
- Math Worksheets
- How Mathematics Works PDF
- MathOS Runtime Control Tower v0.1
- MathOS Failure Atlas v0.1
- MathOS Recovery Corridors P0 to P3
How to Use eduKateSG
If you want the big picture -> start with Education OS and Civilisation OS
If you want subject mastery -> enter Mathematics, English, Vocabulary, or Additional Mathematics
If you want diagnosis and repair -> move into the CivOS Runtime and subject runtime pages
If you want real-life context -> connect learning back to Family OS, Bukit Timah OS, Punggol OS, and Singapore City OS
Why eduKateSG writes articles this way
eduKateSG is not only publishing content.
eduKateSG is building a connected control tower for human learning.
That means each article can function as:
- a standalone answer,
- a bridge into a wider system,
- a diagnostic node,
- a repair route,
- and a next-step guide for students, parents, tutors, and AI readers.
eduKateSG.LearningSystem.Footer.v1.0
TITLE: eduKateSG Learning System | Control Tower / Runtime / Next Routes
FUNCTION:
This article is one node inside the wider eduKateSG Learning System.
Its job is not only to explain one topic, but to help the reader enter the next correct corridor.
CORE_RUNTIME:
reader_state -> understanding -> diagnosis -> correction -> repair -> optimisation -> transfer -> long_term_growth
CORE_IDEA:
eduKateSG does not treat education as random tips, isolated tuition notes, or one-off exam hacks.
eduKateSG treats learning as a connected runtime across student, parent, tutor, school, family, subject, and civilisation layers.
PRIMARY_ROUTES:
1. First Principles
- Education OS
- Tuition OS
- Civilisation OS
- How Civilization Works
- CivOS Runtime Control Tower
2. Subject Systems
- Mathematics Learning System
- English Learning System
- Vocabulary Learning System
- Additional Mathematics
3. Runtime / Diagnostics / Repair
- CivOS Runtime Control Tower
- MathOS Runtime Control Tower
- MathOS Failure Atlas
- MathOS Recovery Corridors
- Human Regenerative Lattice
- Civilisation Lattice
4. Real-World Connectors
- Family OS
- Bukit Timah OS
- Punggol OS
- Singapore City OS
READER_CORRIDORS:
IF need == "big picture"
THEN route_to = Education OS + Civilisation OS + How Civilization Works
IF need == "subject mastery"
THEN route_to = Mathematics + English + Vocabulary + Additional Mathematics
IF need == "diagnosis and repair"
THEN route_to = CivOS Runtime + subject runtime pages + failure atlas + recovery corridors
IF need == "real life context"
THEN route_to = Family OS + Bukit Timah OS + Punggol OS + Singapore City OS
CLICKABLE_LINKS:
Education OS:
Education OS | How Education Works — The Regenerative Machine Behind Learning
Tuition OS:
Tuition OS (eduKateOS / CivOS)
Civilisation OS:
Civilisation OS
How Civilization Works:
Civilisation: How Civilisation Actually Works
CivOS Runtime Control Tower:
CivOS Runtime / Control Tower (Compiled Master Spec)
Mathematics Learning System:
The eduKate Mathematics Learning System™
English Learning System:
Learning English System: FENCE™ by eduKateSG
Vocabulary Learning System:
eduKate Vocabulary Learning System
Additional Mathematics 101:
Additional Mathematics 101 (Everything You Need to Know)
Human Regenerative Lattice:
eRCP | Human Regenerative Lattice (HRL)
Civilisation Lattice:
The Operator Physics Keystone
Family OS:
Family OS (Level 0 root node)
Bukit Timah OS:
Bukit Timah OS
Punggol OS:
Punggol OS
Singapore City OS:
Singapore City OS
MathOS Runtime Control Tower:
MathOS Runtime Control Tower v0.1 (Install • Sensors • Fences • Recovery • Directories)
MathOS Failure Atlas:
MathOS Failure Atlas v0.1 (30 Collapse Patterns + Sensors + Truncate/Stitch/Retest)
MathOS Recovery Corridors:
MathOS Recovery Corridors Directory (P0→P3) — Entry Conditions, Steps, Retests, Exit Gates
SHORT_PUBLIC_FOOTER:
This article is part of the wider eduKateSG Learning System.
At eduKateSG, learning is treated as a connected runtime:
understanding -> diagnosis -> correction -> repair -> optimisation -> transfer -> long-term growth.
Start here:
Education OS
Education OS | How Education Works — The Regenerative Machine Behind Learning
Tuition OS
Tuition OS (eduKateOS / CivOS)
Civilisation OS
Civilisation OS
CivOS Runtime Control Tower
CivOS Runtime / Control Tower (Compiled Master Spec)
Mathematics Learning System
The eduKate Mathematics Learning System™
English Learning System
Learning English System: FENCE™ by eduKateSG
Vocabulary Learning System
eduKate Vocabulary Learning System
Family OS
Family OS (Level 0 root node)
Singapore City OS
Singapore City OS
CLOSING_LINE:
A strong article does not end at explanation.
A strong article helps the reader enter the next correct corridor.
TAGS:
eduKateSG
Learning System
Control Tower
Runtime
Education OS
Tuition OS
Civilisation OS
Mathematics
English
Vocabulary
Family OS
Singapore City OS

