soma-moa

soma-moa : Human-Centered Physical AI & Spatial Governance Protocol

original design: deundeuni (soma-moa) | repository: github.com/soma-moa
domain: somamoa.ai.kr | v2.2.1 Revision: 2026-09-17 | License: CC BY 4.0 & DPL
Document Status: The Korean text (README.ko.md / PHILOSOPHY.ko.md) is the authoritative original; translations are for reference only.

0. Definition

soma-moa is a protocol for visitor guidance and spatial assistant robots designed to start from everyday environments and gracefully expand into various operational fields—such as hospitals, factories, building lobbies, department store service centers, logistics centers, device repair centers (laptops/smartphones/cameras), and food court/restaurant unmanned assistants.

1. Axiom 0

“Robot/AI is Sub, system governance is Main, but even that governance is Auxiliary to the human’s main task.”

2. Core Architecture

\(\text{[Brain]} \longrightarrow \text{[Governance: soma-moa eFPGA]} \longrightarrow \text{[Actuator/APK]}\)

3. 4-Layer Survival System

4. Edge Verification

// Struct sizes are target example values including Rust compiler #[repr(C)] memory layout padding.
// L0 Critical Log Structure (~24 Bytes Target)
#[repr(C)]
pub struct L0CriticalLog {
    pub ts_offset: u32,    // 4B
    pub sev: u8,           // 1B
    // implicit padding: 1B (Alignment for i16)
    pub delta_q: [i16; 6], // 12B
    pub gov: bool,         // 1B
    // implicit padding: 1B (Alignment for u16)
    pub crc: u16,          // 2B
    // implicit padding: 2B (Struct alignment to 4-byte boundary)
} // Total memory layout: 24B

// L1 Warning Log Structure (~32 Bytes Target)
#[repr(C)]
pub struct L1WarningLog {
    pub ts_offset: u32,    // 4B
    pub sev: u8,           // 1B
    // implicit padding: 3B (Alignment for u64)
    pub op_token: u64,     // 8B
    pub delta_q: [i16; 6], // 12B
    pub gov: bool,         // 1B
    // implicit padding: 1B (Alignment for u16)
    pub crc: u16,          // 2B
} // Total memory layout: 32B

5. Location Mapping

6. Security & Self-Healing

7. Safety Framework

8. Prior Art & Disclaimer


origin: by deundeuni | domain: somamoa.ai.kr | repo: github.com/soma-moa | v2.2.1 Revision: 2026-09-17 | PHILOSOPHY.ko.md is authoritative | CC BY 4.0 & DPL