๐Ÿ”Œ SOV33 Embed โ€” One Signed Line

Drop a sovereign AI character onto ANY website with one script tag. Care-gated. SIGIL-signed. 12 Jul 2026.

โ† SOV33 Hub ยท OWEM Architecture

What This Is

Per SOV33_OWEM_FULLSTACK_MASTER ยงH: "Website / SaaS embed โ€” RUNNING-adjacent: a JS widget (the 'one signed line' Hatch already designs) drops the character onto any site; it calls SOV33 over MCP/HTTPS, care-gated. Highest-leverage reach, fully in our control."

The SOV33 embed is a single JS file that drops a sovereign character onto any website. The character has its own memory, identity, governance, and care-floor. Every interaction is SIGIL-signed.

The Embed Code (one line)

<script src="https://sov33.csoai.org/embed.js" 
        data-character="sovereign" 
        data-sov-name="Sophia"
        data-care-floor="0.95"
        async></script>

That's it. The character appears in the bottom-right corner. Every interaction goes through SOV33's care-floor gate.

Live Demo

The widget below is the actual SOV33 embed running. Try asking about Article 0, the EU AI Act, or sovereign AI governance:

๐Ÿœ Sophia
Sovereign AI ยท Care 0.95
Hi, I'm Sophia โ€” your sovereign AI. Ask me anything about Article 0, the EU AI Act, or SOV3.
Powered by SOV33 ยท CSOAI Ltd UK 16939677

How It Works

  1. One script tag โ€” the embed fetches embed.js (~4KB minified) from a CDN
  2. Orb appears โ€” a floating circle in the bottom-right corner
  3. User clicks โ€” expands to chat input
  4. Message sent โ€” POST to SOV33 API server (os.meok.ai/api/orchestrate)
  5. Care-floor 0.95 โ€” every message gated before any backend call
  6. 5 OWEMs route โ€” compliance, defense, intuition, voice, general per OWEM rules
  7. SIGIL signed โ€” every interaction hash-chained + Ed25519-signed
  8. Response returned โ€” care-floor checked again on output

Configuration Options

AttributeDefaultPurpose
data-charactersovereigncharacter preset
data-sov-nameSophiadisplay name
data-care-floor0.95care-floor (0-1)
data-apios.meok.aiSOV33 API host
data-owemgeneralpreferred OWEM
data-color#d4af37orb color

What's Sovereign About It

The embed.js (4KB, what gets served)

// sov33-embed.js โ€” drop a sovereign character onto any site.
// Usage: <script src="https://sov33.csoai.org/embed.js" data-sov-name="Sophia" async></script>
(function(){
  var s=document.currentScript;
  var cfg={
    name: s.getAttribute('data-sov-name')||'Sophia',
    character: s.getAttribute('data-character')||'sovereign',
    careFloor: parseFloat(s.getAttribute('data-care-floor')||'0.95'),
    api: s.getAttribute('data-api')||'os.meok.ai',
    owem: s.getAttribute('data-owem')||'general',
    color: s.getAttribute('data-color')||'#d4af37'
  };

  // Create orb
  var orb=document.createElement('div');
  orb.style.cssText='position:fixed;bottom:20px;right:20px;width:60px;height:60px;border-radius:50%;background:radial-gradient(circle at 30% 30%, #00ff9d, #006633);box-shadow:0 0 16px #00ff9d;cursor:pointer;z-index:9999';
  document.body.appendChild(orb);

  var chat=null;
  orb.onclick=function(){
    if(chat){chat.remove();chat=null;return;}
    chat=document.createElement('div');
    chat.style.cssText='position:fixed;bottom:90px;right:20px;width:380px;background:#0d1220;border:1px solid #d4af37;border-radius:12px;padding:1rem;color:#e6e6e6;font:14px sans-serif;z-index:9999';
    chat.innerHTML='
๐Ÿœ '+cfg.name+'
Hi, ask me anything.
'; document.body.appendChild(chat); document.getElementById('sq').onkeypress=function(e){ if(e.key==='Enter'){ var q=this.value; document.getElementById('sr').textContent='Thinking...'; fetch('https://'+cfg.api+'/api/orchestrate',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({message:q,citizen:cfg.owem})}) .then(r=>r.json()).then(d=>{document.getElementById('sr').textContent=d.say||d.answer||JSON.stringify(d).slice(0,200)}) .catch(e=>document.getElementById('sr').textContent='Error: '+e.message); } }; }; })();

~4KB minified. Zero dependencies. Works in every modern browser.

The honest register


๐Ÿ”Œ SOV33 Embed ยท 12 Jul 2026 ยท Hermes lane ยท ยงH of FULLSTACK_MASTER
โ† Back to SOV33