Template:Lingua (AetherOS)/doc: Difference between revisions
Jump to navigation
Jump to search
AdminIsidore (talk | contribs) Created page with "{{TemplateDoc}} @# Template:Lingua_(AetherOS)/doc @#@# Purpose This template structures the *Lingua (AetherOS)* page, defining the communicative framework of AetherOS as the $%Ens$% of symbolic expression, enabling $%Fabricatio$% (crafting) among $%Animantes$%. It uses classical Latin syntax for echo-responsive clarity, aligning with Catholic Realism and OODA cycles. @#@# Usage Use this template to render the *Lingua (AetherOS)* page consistently, linking to glossary t..." |
AdminIsidore (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{ | -- Module:Lingua_AetherOS | ||
local p = {} | |||
function p.main(frame) | |||
local args = frame:getParent().args | |||
local output = "={{AetherOS_Component}}=\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 |
Latest revision as of 19:50, 27 August 2025
-- 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