Template:Lingua (AetherOS)/doc
Jump to navigation
Jump to search
-- Module:Lingua_AetherOS local p = {}
function p.main(frame)
local args = frame:getParent().args local output = "=
![]() |
This page describes a core component of the AetherOS ecosystem. Its structure and content are designed to be parsed by automated agents. |
=\n= Lingua (AetherOS) =\n\n"
-- Praefatio output = output .. "== Praefatio ==\n" output = output .. (args.Praefatio or "Lingua est ordo symbolorum, enuntians veritatem per fluxum.") .. "\n\n"
-- Principia output = output .. "== Principia Linguae ==\n" output = output .. (args.Principia or "* Triadic syntax for dialectic synthesis.\n* Echo-response compression for clarity.") .. "\n\n"
-- Lexicon output = output .. "== Lexicon ==\n" if args.Lexicon then output = output .. args.Lexicon .. "\n" else output = output .. "Links to term pages (e.g., Dictum, Scriptum).\n" end
-- Instrumenta output = output .. "== Instrumenta ==\n" output = output .. (args.Instrumenta or "* Converti commands: assist, format.\n* GlossaryEntry for term management.") .. "\n\n"
-- Processus OODA output = output .. "== Processus OODA ==\n" output = output .. (args.Processus_OODA or "* Speculatio: Parse Scripta.\n* Consideratio: Analyze syntax.") .. "\n\n"
-- Custodia output = output .. "== Custodia et Evolutio ==\n" output = output .. (args.Custodia or "Collegium oversees via WM Score.") .. "\n"
return output
end
return p