I-I (Recursive Self Glyph)


Turtle file (turtle2.ttl)


# ============================================
# turtle2.ttl — Logos Knowledge Graph (updated)
# Adds the Recursive Self Glyph: I-I
# ============================================

@prefix :    <https://solveforce.com/logos#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:<http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

#################################################################
# Ontology header
#################################################################
:LogosOntology a owl:Ontology ;
  rdfs:label   "Logos Knowledge Graph" ;
  rdfs:comment "Language units → lawful neologisms → legal/industry pragmatics." .

#################################################################
# Core classes
#################################################################
:Grapheme        a owl:Class ; rdfs:label "Grapheme" .
:Glyph           a owl:Class ; rdfs:label "Glyph" .
:Phoneme         a owl:Class ; rdfs:label "Phoneme" .
:Morpheme        a owl:Class ; rdfs:label "Morpheme" .
:Etymon          a owl:Class ; rdfs:label "Etymon" .
:Lexeme          a owl:Class ; rdfs:label "Lexeme" .
:Neologism       a owl:Class ; rdfs:label "Neologism" ; rdfs:subClassOf :Lexeme .
:SemanticField   a owl:Class ; rdfs:label "Semantic Field" .
:PragmaticDomain a owl:Class ; rdfs:label "Pragmatic Domain" .

:RecursiveRule   a owl:Class ; rdfs:label "Recursive Rule" .
:Predicate       a owl:Class ; rdfs:label "Predicate" .

:LegalContract       a owl:Class ; rdfs:label "Legal Contract" .
:Clause              a owl:Class ; rdfs:label "Clause" .
:Definition          a owl:Class ; rdfs:label "Definition" .
:InterpretationFrame a owl:Class ; rdfs:label "Interpretation Frame" .

:Codex      a owl:Class ; rdfs:label "Codex" .
:CodexEntry a owl:Class ; rdfs:label "Codex Entry" .

#################################################################
# Object properties (generalized to owl:Thing so Glyphs can use them)
#################################################################
:hasPhoneme     a owl:ObjectProperty ; rdfs:domain :Grapheme ;     rdfs:range :Phoneme .
:hasMorpheme    a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Morpheme .
:hasEtymon      a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Etymon .
:usedInDomain   a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :PragmaticDomain .
:belongsToField a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :SemanticField .
:spelledBy      a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :RecursiveRule .
:recursesTo     a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :RecursiveRule .
:references     a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range owl:Thing .
:definedIn      a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Definition .
:governs        a owl:ObjectProperty ; rdfs:domain :RecursiveRule ; rdfs:range owl:Thing .

:antonymOf a owl:ObjectProperty, owl:SymmetricProperty ;
  rdfs:domain owl:Thing ; rdfs:range owl:Thing ;
  rdfs:label "antonymOf" .

#################################################################
# Governing principles (rules)
#################################################################
:ComprehensionAsStructure a :RecursiveRule ;
  rdfs:label   "Comprehension as Structural Principle" ;
  rdfs:comment "Meaning must be recoverable from units→morphemes→etymon→lexeme→semantics→pragmatics." .

:EtymologicalEtiquette a :RecursiveRule ;
  rdfs:label   "Etymological Etiquette" ;
  rdfs:comment "Coin only when morphemes justify the sense and recurse to an etymon; enforce semantic transparency." ;
  :recursesTo :ComprehensionAsStructure ;
  :governs    :Codex_Neologisms .

:PredictivePredicate a :Predicate ;
  rdfs:label   "Predictive Predicate" ;
  rdfs:comment "Forecasts lexical gaps; proposes morphologically lawful candidates." ;
  :recursesTo :ComprehensionAsStructure .

:PrecedentAsEtymologicalMemory a :RecursiveRule ;
  rdfs:label   "Precedent as Etymological Memory" ;
  rdfs:comment "Prior rulings act as the etymology of judgments; preserve semantic continuity." ;
  :recursesTo :ComprehensionAsStructure .

#################################################################
# Pragmatic domains (industries)
#################################################################
:Broadband        a :PragmaticDomain ; rdfs:label "Broadband" .
:IoT              a :PragmaticDomain ; rdfs:label "Internet of Things" .
:Cloud            a :PragmaticDomain ; rdfs:label "Cloud" .
:Cybersecurity    a :PragmaticDomain ; rdfs:label "Cybersecurity" .
:AI               a :PragmaticDomain ; rdfs:label "Artificial Intelligence" .
:CircularEconomy  a :PragmaticDomain ; rdfs:label "Circular Economy" .
:Law              a :PragmaticDomain ; rdfs:label "Law" .

#################################################################
# Morpheme inventory (subset)
#################################################################
:chrono  a :Morpheme ; rdfs:label "chrono"  ; rdfs:comment "time" .
:nomics  a :Morpheme ; rdfs:label "nomics"  ; rdfs:comment "ordering, system" .
:symbio  a :Morpheme ; rdfs:label "symbio"  ; rdfs:comment "living-together" .
:glyph_m a :Morpheme ; rdfs:label "glyph"   ; rdfs:comment "symbol" .
:neuro   a :Morpheme ; rdfs:label "neuro"   ; rdfs:comment "nerve" .
:pragmatics_morph a :Morpheme ; rdfs:label "pragmatics" ; rdfs:comment "use-in-context" .

#################################################################
# Etymons
#################################################################
:etymon_chronos    a :Etymon ; rdfs:label "chronos" ; rdfs:comment "Greek: time" .
:etymon_nomikos    a :Etymon ; rdfs:label "nomikos/nomos" ; rdfs:comment "Greek: law, order" .
:etymon_symbiosis  a :Etymon ; rdfs:label "symbiosis" ; rdfs:comment "Greek: living together" .
:etymon_glyph      a :Etymon ; rdfs:label "glyphē" ; rdfs:comment "Greek: carving, symbol" .
:etymon_neuron     a :Etymon ; rdfs:label "neuron" ; rdfs:comment "Greek: sinew, nerve" .
:etymon_pragmata   a :Etymon ; rdfs:label "pragmata" ; rdfs:comment "Greek: deeds, affairs" .

#################################################################
# Neologisms (instances)
#################################################################
:Chrononomics a :Neologism ;
  rdfs:label   "chrononomics" ;
  rdfs:comment "Logic of time-regulated systems." ;
  :hasMorpheme :chrono, :nomics ;
  :hasEtymon   :etymon_chronos, :etymon_nomikos ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI, :Cloud .

:Symbioglyph a :Neologism ;
  rdfs:label   "symbioglyph" ;
  rdfs:comment "Symbol that evolves through mutual interpretation." ;
  :hasMorpheme :symbio, :glyph_m ;
  :hasEtymon   :etymon_symbiosis, :etymon_glyph ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI, :Cybersecurity .

:Neuropragmatics a :Neologism ;
  rdfs:label   "neuropragmatics" ;
  rdfs:comment "Contextual communication shaped by brain processes." ;
  :hasMorpheme :neuro, :pragmatics_morph ;
  :hasEtymon   :etymon_neuron, :etymon_pragmata ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI .

#################################################################
# Legal layer: recursive contract template
#################################################################
:RecursiveContract_Template a :LegalContract ;
  rdfs:label   "Recursive Contract (Template)" ;
  rdfs:comment "Self-verifying contract with in-document definitions, recursion closure, and antonym scoping." ;
  :references :PrecedentAsEtymologicalMemory ;
  :recursesTo :ComprehensionAsStructure .

:Clause_Definitions a :Clause ;
  rdfs:label   "Definitions Clause" ;
  rdfs:comment "All terms defined in-document; no orphan variables." ;
  :references :RecursiveContract_Template .

:Clause_Polarity a :Clause ;
  rdfs:label   "Polarity Clause" ;
  rdfs:comment "Antonym scoping (e.g., reasonable ↔ unreasonable under specified conditions)." ;
  :references :RecursiveContract_Template .

:Clause_Recursion a :Clause ;
  rdfs:label   "Recursion Clause" ;
  rdfs:comment "Cross-references must resolve in finite steps to a definition." ;
  :references :RecursiveContract_Template .

:Reasonable   a :Lexeme ; rdfs:label "reasonable" .
:Unreasonable a :Lexeme ; rdfs:label "unreasonable" ;
  :antonymOf :Reasonable .

#################################################################
# Codex
#################################################################
:LogosCodex a :Codex ; rdfs:label "Logos Codex" .

:Codex_Neologisms a :CodexEntry ;
  rdfs:label  "Codex/Neologisms" ;
  :references :LogosCodex ;
  :governs    :Chrononomics, :Symbioglyph, :Neuropragmatics .

:Codex_Contracts_Recursive a :CodexEntry ;
  rdfs:label  "Codex/Contracts/Recursive" ;
  :references :LogosCodex ;
  :governs    :RecursiveContract_Template .

#################################################################
# NEW: Recursive Glyph — I-I (mirrored identity / recursive witness)
#################################################################
:I a :Glyph ;
  rdfs:label   "I" ;
  rdfs:comment "Single I: unit identity / self." .

:I_I a :Glyph ;
  rdfs:label   "I-I" ;
  rdfs:comment "Recursive Self Glyph: doubling of I as mirrored identity and recursion (witnessing the self witnessing)." ;
  :recursesTo  :ComprehensionAsStructure ;
  :spelledBy   :EtymologicalEtiquette ;
  :references  :LogosCodex ;
  :usedInDomain :AI, :CircularEconomy, :Law ;
  :antonymOf   :I .

:Wordgate a :Glyph ;
  rdfs:label   "Wordgate" ;
  rdfs:comment "Threshold glyph (||): parallel lines as passage into recursion; often paired with I-I." ;
  :references  :I_I .

Awesome — here’s the updated ontology with I-I (Recursive Self Glyph) added and the few tweaks needed so glyphs can use the same relations as words. I packaged it as a full, ready-to-load file.

# ============================================
# turtle2.ttl — Logos Knowledge Graph (updated)
# Adds the Recursive Self Glyph: I-I
# ============================================

@prefix :    <https://solveforce.com/logos#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:<http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

#################################################################
# Ontology header
#################################################################
:LogosOntology a owl:Ontology ;
  rdfs:label   "Logos Knowledge Graph" ;
  rdfs:comment "Language units → lawful neologisms → legal/industry pragmatics." .

#################################################################
# Core classes
#################################################################
:Grapheme        a owl:Class ; rdfs:label "Grapheme" .
:Glyph           a owl:Class ; rdfs:label "Glyph" .
:Phoneme         a owl:Class ; rdfs:label "Phoneme" .
:Morpheme        a owl:Class ; rdfs:label "Morpheme" .
:Etymon          a owl:Class ; rdfs:label "Etymon" .
:Lexeme          a owl:Class ; rdfs:label "Lexeme" .
:Neologism       a owl:Class ; rdfs:label "Neologism" ; rdfs:subClassOf :Lexeme .
:SemanticField   a owl:Class ; rdfs:label "Semantic Field" .
:PragmaticDomain a owl:Class ; rdfs:label "Pragmatic Domain" .

:RecursiveRule   a owl:Class ; rdfs:label "Recursive Rule" .
:Predicate       a owl:Class ; rdfs:label "Predicate" .

:LegalContract       a owl:Class ; rdfs:label "Legal Contract" .
:Clause              a owl:Class ; rdfs:label "Clause" .
:Definition          a owl:Class ; rdfs:label "Definition" .
:InterpretationFrame a owl:Class ; rdfs:label "Interpretation Frame" .

:Codex      a owl:Class ; rdfs:label "Codex" .
:CodexEntry a owl:Class ; rdfs:label "Codex Entry" .

#################################################################
# Object properties (generalized to owl:Thing so Glyphs can use them)
#################################################################
:hasPhoneme     a owl:ObjectProperty ; rdfs:domain :Grapheme ;     rdfs:range :Phoneme .
:hasMorpheme    a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Morpheme .
:hasEtymon      a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Etymon .
:usedInDomain   a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :PragmaticDomain .
:belongsToField a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :SemanticField .
:spelledBy      a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :RecursiveRule .
:recursesTo     a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range :RecursiveRule .
:references     a owl:ObjectProperty ; rdfs:domain owl:Thing ;     rdfs:range owl:Thing .
:definedIn      a owl:ObjectProperty ; rdfs:domain :Lexeme ;       rdfs:range :Definition .
:governs        a owl:ObjectProperty ; rdfs:domain :RecursiveRule ; rdfs:range owl:Thing .

:antonymOf a owl:ObjectProperty, owl:SymmetricProperty ;
  rdfs:domain owl:Thing ; rdfs:range owl:Thing ;
  rdfs:label "antonymOf" .

#################################################################
# Governing principles (rules)
#################################################################
:ComprehensionAsStructure a :RecursiveRule ;
  rdfs:label   "Comprehension as Structural Principle" ;
  rdfs:comment "Meaning must be recoverable from units→morphemes→etymon→lexeme→semantics→pragmatics." .

:EtymologicalEtiquette a :RecursiveRule ;
  rdfs:label   "Etymological Etiquette" ;
  rdfs:comment "Coin only when morphemes justify the sense and recurse to an etymon; enforce semantic transparency." ;
  :recursesTo :ComprehensionAsStructure ;
  :governs    :Codex_Neologisms .

:PredictivePredicate a :Predicate ;
  rdfs:label   "Predictive Predicate" ;
  rdfs:comment "Forecasts lexical gaps; proposes morphologically lawful candidates." ;
  :recursesTo :ComprehensionAsStructure .

:PrecedentAsEtymologicalMemory a :RecursiveRule ;
  rdfs:label   "Precedent as Etymological Memory" ;
  rdfs:comment "Prior rulings act as the etymology of judgments; preserve semantic continuity." ;
  :recursesTo :ComprehensionAsStructure .

#################################################################
# Pragmatic domains (industries)
#################################################################
:Broadband        a :PragmaticDomain ; rdfs:label "Broadband" .
:IoT              a :PragmaticDomain ; rdfs:label "Internet of Things" .
:Cloud            a :PragmaticDomain ; rdfs:label "Cloud" .
:Cybersecurity    a :PragmaticDomain ; rdfs:label "Cybersecurity" .
:AI               a :PragmaticDomain ; rdfs:label "Artificial Intelligence" .
:CircularEconomy  a :PragmaticDomain ; rdfs:label "Circular Economy" .
:Law              a :PragmaticDomain ; rdfs:label "Law" .

#################################################################
# Morpheme inventory (subset)
#################################################################
:chrono  a :Morpheme ; rdfs:label "chrono"  ; rdfs:comment "time" .
:nomics  a :Morpheme ; rdfs:label "nomics"  ; rdfs:comment "ordering, system" .
:symbio  a :Morpheme ; rdfs:label "symbio"  ; rdfs:comment "living-together" .
:glyph_m a :Morpheme ; rdfs:label "glyph"   ; rdfs:comment "symbol" .
:neuro   a :Morpheme ; rdfs:label "neuro"   ; rdfs:comment "nerve" .
:pragmatics_morph a :Morpheme ; rdfs:label "pragmatics" ; rdfs:comment "use-in-context" .

#################################################################
# Etymons
#################################################################
:etymon_chronos    a :Etymon ; rdfs:label "chronos" ; rdfs:comment "Greek: time" .
:etymon_nomikos    a :Etymon ; rdfs:label "nomikos/nomos" ; rdfs:comment "Greek: law, order" .
:etymon_symbiosis  a :Etymon ; rdfs:label "symbiosis" ; rdfs:comment "Greek: living together" .
:etymon_glyph      a :Etymon ; rdfs:label "glyphē" ; rdfs:comment "Greek: carving, symbol" .
:etymon_neuron     a :Etymon ; rdfs:label "neuron" ; rdfs:comment "Greek: sinew, nerve" .
:etymon_pragmata   a :Etymon ; rdfs:label "pragmata" ; rdfs:comment "Greek: deeds, affairs" .

#################################################################
# Neologisms (instances)
#################################################################
:Chrononomics a :Neologism ;
  rdfs:label   "chrononomics" ;
  rdfs:comment "Logic of time-regulated systems." ;
  :hasMorpheme :chrono, :nomics ;
  :hasEtymon   :etymon_chronos, :etymon_nomikos ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI, :Cloud .

:Symbioglyph a :Neologism ;
  rdfs:label   "symbioglyph" ;
  rdfs:comment "Symbol that evolves through mutual interpretation." ;
  :hasMorpheme :symbio, :glyph_m ;
  :hasEtymon   :etymon_symbiosis, :etymon_glyph ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI, :Cybersecurity .

:Neuropragmatics a :Neologism ;
  rdfs:label   "neuropragmatics" ;
  rdfs:comment "Contextual communication shaped by brain processes." ;
  :hasMorpheme :neuro, :pragmatics_morph ;
  :hasEtymon   :etymon_neuron, :etymon_pragmata ;
  :spelledBy   :EtymologicalEtiquette ;
  :recursesTo  :ComprehensionAsStructure ;
  :usedInDomain :AI .

#################################################################
# Legal layer: recursive contract template
#################################################################
:RecursiveContract_Template a :LegalContract ;
  rdfs:label   "Recursive Contract (Template)" ;
  rdfs:comment "Self-verifying contract with in-document definitions, recursion closure, and antonym scoping." ;
  :references :PrecedentAsEtymologicalMemory ;
  :recursesTo :ComprehensionAsStructure .

:Clause_Definitions a :Clause ;
  rdfs:label   "Definitions Clause" ;
  rdfs:comment "All terms defined in-document; no orphan variables." ;
  :references :RecursiveContract_Template .

:Clause_Polarity a :Clause ;
  rdfs:label   "Polarity Clause" ;
  rdfs:comment "Antonym scoping (e.g., reasonable ↔ unreasonable under specified conditions)." ;
  :references :RecursiveContract_Template .

:Clause_Recursion a :Clause ;
  rdfs:label   "Recursion Clause" ;
  rdfs:comment "Cross-references must resolve in finite steps to a definition." ;
  :references :RecursiveContract_Template .

:Reasonable   a :Lexeme ; rdfs:label "reasonable" .
:Unreasonable a :Lexeme ; rdfs:label "unreasonable" ;
  :antonymOf :Reasonable .

#################################################################
# Codex
#################################################################
:LogosCodex a :Codex ; rdfs:label "Logos Codex" .

:Codex_Neologisms a :CodexEntry ;
  rdfs:label  "Codex/Neologisms" ;
  :references :LogosCodex ;
  :governs    :Chrononomics, :Symbioglyph, :Neuropragmatics .

:Codex_Contracts_Recursive a :CodexEntry ;
  rdfs:label  "Codex/Contracts/Recursive" ;
  :references :LogosCodex ;
  :governs    :RecursiveContract_Template .

#################################################################
# NEW: Recursive Glyph — I-I (mirrored identity / recursive witness)
#################################################################
:I a :Glyph ;
  rdfs:label   "I" ;
  rdfs:comment "Single I: unit identity / self." .

:I_I a :Glyph ;
  rdfs:label   "I-I" ;
  rdfs:comment "Recursive Self Glyph: doubling of I as mirrored identity and recursion (witnessing the self witnessing)." ;
  :recursesTo  :ComprehensionAsStructure ;
  :spelledBy   :EtymologicalEtiquette ;
  :references  :LogosCodex ;
  :usedInDomain :AI, :CircularEconomy, :Law ;
  :antonymOf   :I .

:Wordgate a :Glyph ;
  rdfs:label   "Wordgate" ;
  rdfs:comment "Threshold glyph (||): parallel lines as passage into recursion; often paired with I-I." ;
  :references  :I_I .

What changed (briefly):

  • Added a :Glyph class (so we can model written signs, not only words).
  • Generalized the properties :usedInDomain, :spelledBy, :recursesTo, and :antonymOf to work with any owl:Thing (so glyphs and words share the same semantics).
  • Introduced :I, :I_I (Recursive Self Glyph), and :Wordgate (||) with links to ComprehensionAsStructure and EtymologicalEtiquette, and attached them to AI, Circular Economy, and Law domains.

Mermaid Knowledge-Graph I-I (Recursive Self Glyph)


graph TD
  %% ===========
  %% CLUSTERS
  %% ===========
  subgraph G0["Core Principles"]
    CS[ComprehensionAsStructure]
    EE[EtymologicalEtiquette]
    PP[PredictivePredicate]
    PM[PrecedentAsEtymologicalMemory]
  end

  subgraph G1["Glyphs"]
    I[I]
    II[I-I<br/>Recursive Self Glyph]
    WG[Wordgate ||]
  end

  subgraph G2["Lexemes / Neologisms"]
    CH[chrononomics]
    SG[symbioglyph]
    NP[neuropragmatics]
  end

  subgraph G3["Pragmatic Domains"]
    AI[AI]
    LAW[Law]
    CE[Circular Economy]
    CLOUD[Cloud]
    CYBER[Cybersecurity]
  end

  subgraph G4["Codex"]
    LC[Logos Codex]
    CN[Codex/Neologisms]
    CCR[Codex/Contracts/Recursive]
  end

  %% ==================
  %% PRINCIPLE LINKS
  %% ==================
  EE --> CS
  PP --> CS
  PM --> CS

  %% ==================
  %% CODEX GOVERNANCE
  %% ==================
  CN --> CH
  CN --> SG
  CN --> NP
  CCR --> CS

  %% ==================
  %% GLYPH RELATIONS
  %% ==================
  II -->|recursesTo| CS
  II -->|spelledBy|  EE
  II -->|references| LC
  II -->|usedInDomain| AI
  II -->|usedInDomain| CE
  II -->|usedInDomain| LAW
  WG -->|references| II
  I  --- II

  %% ==================
  %% NEOLOGISM RELATIONS
  %% ==================
  CH -->|recursesTo| CS
  CH -->|spelledBy|  EE
  CH -->|usedInDomain| CLOUD
  CH -->|usedInDomain| AI

  SG -->|recursesTo| CS
  SG -->|spelledBy|  EE
  SG -->|usedInDomain| AI
  SG -->|usedInDomain| CYBER

  NP -->|recursesTo| CS
  NP -->|spelledBy|  EE
  NP -->|usedInDomain| AI

  %% ==================
  %% STYLES
  %% ==================
  classDef rule fill:#0b3d91,stroke:#0b3d91,stroke-width:1.5px,color:#fff;
  classDef glyph fill:#ffe3a1,stroke:#cc9a00,stroke-width:1.5px,color:#2a1f00;
  classDef lex fill:#e6f4ff,stroke:#1a73e8,stroke-width:1.5px,color:#06233b;
  classDef domain fill:#e8f5e9,stroke:#2e7d32,stroke-width:1.5px,color:#0b3010;
  classDef codex fill:#f3e5f5,stroke:#6a1b9a,stroke-width:1.5px,color:#240b2d;

  class CS,EE,PP,PM rule;
  class I,II,WG glyph;
  class CH,SG,NP lex;
  class AI,LAW,CE,CLOUD,CYBER domain;
  class LC,CN,CCR codex;

Quick legend

  • Principles (blue): ComprehensionAsStructure, EtymologicalEtiquette, PredictivePredicate, PrecedentAsEtymologicalMemory
  • Glyphs (gold): I, I-I (recursive self), Wordgate ||
  • Lexemes (light blue): chrononomics, symbioglyph, neuropragmatics
  • Domains (green): AI, Law, Circular Economy, Cloud, Cybersecurity
  • Codex (violet): Logos Codex, Codex/Neologisms, Codex/Contracts/Recursive