MD-OS (Artificial Prefrontal Cortex) v5.0 is an early reference implementation of a Markdown-native Operating Filesystem.
To keep the project operationally serious, this document separates the architectural paradigm from the current technical boundaries of this release.
MD-OS is an Operating Filesystem for persistent agents: a text-native, auditable, and reconstructible control plane that can be operated through host runtimes such as Codex and through MCP tool surfaces. It is not Linux, it is not ROS, and it is not a high-frequency OLTP database.
Limit: Relying on filesystem reads and writes, atomic rename flows, and large JSON or NDJSON files for every state change can become a bottleneck at scale.
Reality: The filesystem is excellent as an auditable, human-readable source of truth. It should not be treated as a high-frequency transaction engine.
Mitigation:
Limit: Readable policy files are useful for audit, but they are not hard security barriers if an agent or connector has enough local write authority to modify its own constraints.
Reality: MD-OS policy files describe and audit authority. Hard enforcement must live outside the agent’s mutable layer.
Mitigation:
Limit: MD-OS depends on a host reasoning runtime. The host runtime is the execution layer for this session, not the repository identity. If the runtime loses the identity frame, skips readback, or ignores the operating model, behavior degrades.
Reality: MD-OS reduces dependence on chat history by externalizing memory, but it does not remove dependence on the model runtime.
Mitigation:
md-os/ops/.Limit: MD-OS has strict directories, lifecycle classes, schemas, state machines, builders, and connector contracts. Exposing all of that directly can create friction for humans and new host runtimes.
Reality: The rigor is useful for replay, audit, and safety, but the user surface must stay simple.
Mitigation:
cortex role onboard <role_id> that can create role
folders, run intake, run sensemaking, rebuild indexes, and surface expert
questions without exposing raw orchestration.Limit: Append-only change proposals and file locks are suitable for local supervised workflows. They are not enough for a fleet of agents writing to the same operational state at high frequency.
Reality: Real multi-agent production requires transactional coordination outside simple file writes.
Mitigation:
md-os/ as the local supervised control-plane layer unless stronger
coordination is explicitly added.MD-OS (Artificial Prefrontal Cortex) v5.0 is strongest today in supervised, auditable, role-bounded workflows:
It should not be marketed as autonomous unsupervised production infrastructure until hard security, scaling indexes, and multi-agent coordination are enforced outside the mutable agent layer.